Package org.geotools.xml.handlers.xsi
Class IgnoreHandler
- Object
-
- XSIElementHandler
-
- IgnoreHandler
-
- All Implemented Interfaces:
Serializable
public class IgnoreHandler extends XSIElementHandler
Used to represent elements which are not important to our parse, basically place holders.- Author:
- dzwiers, Refractions Research, Inc. http://www.refractions.net, $Author:$ (last modification)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
LOCALNAME
""-
Fields inherited from class XSIElementHandler
DEFAULT, EXTENSION, FACET, LIST, logger, RESTRICTION, SEQUENCE, SIMPLETYPE, UNION
-
-
Constructor Summary
Constructors Constructor Description IgnoreHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
characters(String text)
In most cases this class should not be called within this framework as we do not intend to parse + store all the information required to recreate the exact Schema document being parsed.void
endElement(String namespaceURI, String localName)
handles SAX end Element events. this is an opportunity to complete some post-processingXSIElementHandler
getHandler(String namespaceURI, String localName)
This method will be used to create the XSI document.int
getHandlerType()
Returns one of the Specified types ... intended for use by the child packages onlyString
getLocalName()
Returns the LocalName for this element (ie this declaration in the Schema ... so ComplexType or Sequence ...)int
hashCode()
void
startElement(String namespaceURI, String localName, Attributes attr)
handles SAX start Element events.-
Methods inherited from class XSIElementHandler
equals, setLogLevel
-
-
-
-
Field Detail
-
LOCALNAME
public static final String LOCALNAME
""- See Also:
- Constant Field Values
-
-
Method Detail
-
characters
public void characters(String text)
Description copied from class:XSIElementHandler
In most cases this class should not be called within this framework as we do not intend to parse + store all the information required to recreate the exact Schema document being parsed. As a result, information such as annotations are ignored. When used, they method may be called multiple times for one element. This means the implementor should keep this in mind when overriding this method.- Overrides:
characters
in classXSIElementHandler
- See Also:
XSIElementHandler.characters(java.lang.String)
-
hashCode
public int hashCode()
- Specified by:
hashCode
in classXSIElementHandler
- See Also:
Object.hashCode()
-
getHandler
public XSIElementHandler getHandler(String namespaceURI, String localName)
Description copied from class:XSIElementHandler
This method will be used to create the XSI document. Validation and in-fix processing is expected to exist within this method, along with data logging for post-processing. This method will directly affect the stack being used to complete the parse.- Specified by:
getHandler
in classXSIElementHandler
- Returns:
- XSIElementHandler, or null
- See Also:
XSIElementHandler.getHandler(java.lang.String, java.lang.String)
-
getLocalName
public String getLocalName()
Description copied from class:XSIElementHandler
Returns the LocalName for this element (ie this declaration in the Schema ... so ComplexType or Sequence ...)- Specified by:
getLocalName
in classXSIElementHandler
- Returns:
- String (not-null)
- See Also:
XSIElementHandler.getLocalName()
-
getHandlerType
public int getHandlerType()
Description copied from class:XSIElementHandler
Returns one of the Specified types ... intended for use by the child packages only- Specified by:
getHandlerType
in classXSIElementHandler
- Returns:
- int (DEFAULT?)
- See Also:
XSIElementHandler.getHandlerType()
-
endElement
public void endElement(String namespaceURI, String localName)
Description copied from class:XSIElementHandler
handles SAX end Element events. this is an opportunity to complete some post-processing- Specified by:
endElement
in classXSIElementHandler
- See Also:
XSIElementHandler.endElement(java.lang.String, java.lang.String)
-
startElement
public void startElement(String namespaceURI, String localName, Attributes attr)
Description copied from class:XSIElementHandler
handles SAX start Element events. This is an opportunity to complete some pre-processing.- Specified by:
startElement
in classXSIElementHandler
- See Also:
XSIElementHandler.startElement(java.lang.String, java.lang.String, org.xml.sax.Attributes)
-
-