Package org.geotools.xml.schema.impl
Class AnyGT
- Object
-
- AnyGT
-
- All Implemented Interfaces:
Any
,ElementGrouping
public class AnyGT extends Object implements Any
- Author:
- dzwiers
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Element
findChildElement(String name)
Convinience method which will search for the specified element within it's children.Element
findChildElement(String localName, URI namespaceURI)
int
getGrouping()
Returns the mask informing the caller as to the type of object they are dealing with.String
getId()
Returns the element declaration's id for this schema element.int
getMaxOccurs()
returns the max number of allowable occurences within the xml schema for this construct.int
getMinOccurs()
returns the min number of allowable occurences within the xml schema for this construct.URI
getNamespace()
Returns the namespace attribute of the 'any' contruct that an instance of this interface is representing within an XML Schema.
-
-
-
Method Detail
-
getId
public String getId()
Description copied from interface:Any
Returns the element declaration's id for this schema element.- Specified by:
getId
in interfaceAny
- See Also:
Any.getId()
-
getMaxOccurs
public int getMaxOccurs()
Description copied from interface:ElementGrouping
returns the max number of allowable occurences within the xml schema for this construct.- Specified by:
getMaxOccurs
in interfaceAny
- Specified by:
getMaxOccurs
in interfaceElementGrouping
- See Also:
ElementGrouping.getMaxOccurs()
-
getMinOccurs
public int getMinOccurs()
Description copied from interface:ElementGrouping
returns the min number of allowable occurences within the xml schema for this construct.- Specified by:
getMinOccurs
in interfaceAny
- Specified by:
getMinOccurs
in interfaceElementGrouping
- See Also:
ElementGrouping.getMinOccurs()
-
getNamespace
public URI getNamespace()
Description copied from interface:Any
Returns the namespace attribute of the 'any' contruct that an instance of this interface is representing within an XML Schema.- Specified by:
getNamespace
in interfaceAny
- See Also:
Any.getNamespace()
-
getGrouping
public int getGrouping()
Description copied from interface:ElementGrouping
Returns the mask informing the caller as to the type of object they are dealing with.- Specified by:
getGrouping
in interfaceElementGrouping
- See Also:
ElementGrouping.getGrouping()
-
findChildElement
public Element findChildElement(String name)
Description copied from interface:ElementGrouping
Convinience method which will search for the specified element within it's children. This is typically implemented recursively, and as such may be expensive to execute (so don't call me too much if you want to be fast).- Specified by:
findChildElement
in interfaceElementGrouping
- Parameters:
name
- The Element LocalName (namespace and prefix should not be included)- Returns:
- Element or null if not found.
- See Also:
ElementGrouping.findChildElement(java.lang.String)
-
findChildElement
public Element findChildElement(String localName, URI namespaceURI)
- Specified by:
findChildElement
in interfaceElementGrouping
-
-