You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlbeans.apache.org by ce...@apache.org on 2004/03/24 01:04:24 UTC

cvs commit: xml-xmlbeans/v2/src/xmlpublic/org/apache/xmlbeans FilterXmlObject.java

cezar       2004/03/23 16:04:24

  Modified:    v2/src/xmlpublic/org/apache/xmlbeans FilterXmlObject.java
  Log:
  Update FilterXmlObject with select Elements/Attributes methods.
  
  CR: Eric
  DRT: passes
  
  Revision  Changes    Path
  1.6       +30 -0     xml-xmlbeans/v2/src/xmlpublic/org/apache/xmlbeans/FilterXmlObject.java
  
  Index: FilterXmlObject.java
  ===================================================================
  RCS file: /home/cvs/xml-xmlbeans/v2/src/xmlpublic/org/apache/xmlbeans/FilterXmlObject.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- FilterXmlObject.java	17 Mar 2004 05:43:15 -0000	1.5
  +++ FilterXmlObject.java	24 Mar 2004 00:04:23 -0000	1.6
  @@ -661,4 +661,34 @@
       {
           ((SimpleValue)underlyingXmlObject()).objectSet(obj);
       }
  +
  +    public XmlObject[] selectChildren(QName elementName)
  +    {
  +        return underlyingXmlObject().selectChildren(elementName);
  +    }
  +
  +    public XmlObject[] selectChildren(String elementUri, String elementLocalName)
  +    {
  +        return underlyingXmlObject().selectChildren(elementUri, elementLocalName);
  +    }
  +
  +    public XmlObject[] selectChildren(QNameSet elementNameSet)
  +    {
  +        return underlyingXmlObject().selectChildren(elementNameSet);
  +    }
  +
  +    public XmlObject selectAttribute(QName attributeName)
  +    {
  +        return underlyingXmlObject().selectAttribute(attributeName);
  +    }
  +
  +    public XmlObject selectAttribute(String attributeUri, String attributeLocalName)
  +    {
  +        return underlyingXmlObject().selectAttribute(attributeUri, attributeLocalName);
  +    }
  +
  +    public XmlObject[] selectAttributes(QNameSet attributeNameSet)
  +    {
  +        return underlyingXmlObject().selectAttributes(attributeNameSet);
  +    }
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xmlbeans-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xmlbeans-cvs-help@xml.apache.org