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 SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ElementfindChildElement(String name)Convinience method which will search for the specified element within it's children.ElementfindChildElement(String localName, URI namespaceURI)intgetGrouping()Returns the mask informing the caller as to the type of object they are dealing with.StringgetId()Returns the element declaration's id for this schema element.intgetMaxOccurs()returns the max number of allowable occurences within the xml schema for this construct.intgetMinOccurs()returns the min number of allowable occurences within the xml schema for this construct.URIgetNamespace()Returns the namespace attribute of the 'any' contruct that an instance of this interface is representing within an XML Schema.
 
- 
- 
- 
Method Detail- 
getIdpublic String getId() Description copied from interface:AnyReturns the element declaration's id for this schema element.- Specified by:
- getIdin interface- Any
- See Also:
- Any.getId()
 
 - 
getMaxOccurspublic int getMaxOccurs() Description copied from interface:ElementGroupingreturns the max number of allowable occurences within the xml schema for this construct.- Specified by:
- getMaxOccursin interface- Any
- Specified by:
- getMaxOccursin interface- ElementGrouping
- See Also:
- ElementGrouping.getMaxOccurs()
 
 - 
getMinOccurspublic int getMinOccurs() Description copied from interface:ElementGroupingreturns the min number of allowable occurences within the xml schema for this construct.- Specified by:
- getMinOccursin interface- Any
- Specified by:
- getMinOccursin interface- ElementGrouping
- See Also:
- ElementGrouping.getMinOccurs()
 
 - 
getNamespacepublic URI getNamespace() Description copied from interface:AnyReturns the namespace attribute of the 'any' contruct that an instance of this interface is representing within an XML Schema.- Specified by:
- getNamespacein interface- Any
- See Also:
- Any.getNamespace()
 
 - 
getGroupingpublic int getGrouping() Description copied from interface:ElementGroupingReturns the mask informing the caller as to the type of object they are dealing with.- Specified by:
- getGroupingin interface- ElementGrouping
- See Also:
- ElementGrouping.getGrouping()
 
 - 
findChildElementpublic Element findChildElement(String name) Description copied from interface:ElementGroupingConvinience 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:
- findChildElementin interface- ElementGrouping
- 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)
 
 - 
findChildElementpublic Element findChildElement(String localName, URI namespaceURI) - Specified by:
- findChildElementin interface- ElementGrouping
 
 
- 
 
-