Package org.geotools.wfs.v2_0.bindings
Class CopyingHandler
- Object
-
- DefaultHandler
-
- CopyingHandler
-
- All Implemented Interfaces:
ContentHandler
,DTDHandler
,EntityResolver
,ErrorHandler
- Direct Known Subclasses:
ParameterParserDelegate
,QueryExpressionTextDelegate
public class CopyingHandler extends DefaultHandler
-
-
Field Summary
Fields Modifier and Type Field Description protected StringBuffer
buffer
protected NamespaceSupport
namespaceContext
protected int
root
-
Constructor Summary
Constructors Constructor Description CopyingHandler()
CopyingHandler(NamespaceSupport namespaceContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
characters(char[] ch, int start, int length)
void
endDocument()
void
endElement(String uri, String localName, String qName)
void
startElement(String uri, String localName, String qName, Attributes attributes)
-
Methods inherited from class DefaultHandler
endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning
-
-
-
-
Field Detail
-
buffer
protected StringBuffer buffer
-
namespaceContext
protected NamespaceSupport namespaceContext
-
root
protected int root
-
-
Constructor Detail
-
CopyingHandler
public CopyingHandler()
-
CopyingHandler
public CopyingHandler(NamespaceSupport namespaceContext)
-
-
Method Detail
-
startElement
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException
- Specified by:
startElement
in interfaceContentHandler
- Overrides:
startElement
in classDefaultHandler
- Throws:
SAXException
-
characters
public void characters(char[] ch, int start, int length) throws SAXException
- Specified by:
characters
in interfaceContentHandler
- Overrides:
characters
in classDefaultHandler
- Throws:
SAXException
-
endElement
public void endElement(String uri, String localName, String qName) throws SAXException
- Specified by:
endElement
in interfaceContentHandler
- Overrides:
endElement
in classDefaultHandler
- Throws:
SAXException
-
endDocument
public void endDocument() throws SAXException
- Specified by:
endDocument
in interfaceContentHandler
- Overrides:
endDocument
in classDefaultHandler
- Throws:
SAXException
-
-