|
Spring Web Services Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.xml.stream.AbstractStaxContentHandler
@Deprecated public abstract class AbstractStaxContentHandler
Abstract base class for SAX ContentHandler
implementations that use StAX as a basis. All methods
delegate to internal template methods, capable of throwing a XMLStreamException
. Additionally, an
namespace context is used to keep track of declared namespaces.
Constructor Summary | |
---|---|
AbstractStaxContentHandler()
Deprecated. |
Method Summary | |
---|---|
void |
characters(char[] ch,
int start,
int length)
Deprecated. |
protected abstract void |
charactersInternal(char[] ch,
int start,
int length)
Deprecated. |
void |
endDocument()
Deprecated. |
protected abstract void |
endDocumentInternal()
Deprecated. |
void |
endElement(String uri,
String localName,
String qName)
Deprecated. |
protected abstract void |
endElementInternal(QName name,
SimpleNamespaceContext namespaceContext)
Deprecated. |
void |
endPrefixMapping(String prefix)
Deprecated. Removes the binding for the given prefix. |
void |
ignorableWhitespace(char[] ch,
int start,
int length)
Deprecated. |
protected abstract void |
ignorableWhitespaceInternal(char[] ch,
int start,
int length)
Deprecated. |
void |
processingInstruction(String target,
String data)
Deprecated. |
protected abstract void |
processingInstructionInternal(String target,
String data)
Deprecated. |
void |
skippedEntity(String name)
Deprecated. |
protected abstract void |
skippedEntityInternal(String name)
Deprecated. |
void |
startDocument()
Deprecated. |
protected abstract void |
startDocumentInternal()
Deprecated. |
void |
startElement(String uri,
String localName,
String qName,
Attributes atts)
Deprecated. |
protected abstract void |
startElementInternal(QName name,
Attributes atts,
SimpleNamespaceContext namespaceContext)
Deprecated. |
void |
startPrefixMapping(String prefix,
String uri)
Deprecated. Binds the given prefix to the given namespaces. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.xml.sax.ContentHandler |
---|
setDocumentLocator |
Constructor Detail |
---|
public AbstractStaxContentHandler()
Method Detail |
---|
public final void startDocument() throws SAXException
startDocument
in interface ContentHandler
SAXException
protected abstract void startDocumentInternal() throws XMLStreamException
XMLStreamException
public final void endDocument() throws SAXException
endDocument
in interface ContentHandler
SAXException
protected abstract void endDocumentInternal() throws XMLStreamException
XMLStreamException
public final void startPrefixMapping(String prefix, String uri)
startPrefixMapping
in interface ContentHandler
SimpleNamespaceContext.bindNamespaceUri(String,String)
public final void endPrefixMapping(String prefix)
endPrefixMapping
in interface ContentHandler
SimpleNamespaceContext.removeBinding(String)
public final void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException
startElement
in interface ContentHandler
SAXException
protected abstract void startElementInternal(QName name, Attributes atts, SimpleNamespaceContext namespaceContext) throws XMLStreamException
XMLStreamException
public final void endElement(String uri, String localName, String qName) throws SAXException
endElement
in interface ContentHandler
SAXException
protected abstract void endElementInternal(QName name, SimpleNamespaceContext namespaceContext) throws XMLStreamException
XMLStreamException
public final void characters(char[] ch, int start, int length) throws SAXException
characters
in interface ContentHandler
SAXException
protected abstract void charactersInternal(char[] ch, int start, int length) throws XMLStreamException
XMLStreamException
public final void ignorableWhitespace(char[] ch, int start, int length) throws SAXException
ignorableWhitespace
in interface ContentHandler
SAXException
protected abstract void ignorableWhitespaceInternal(char[] ch, int start, int length) throws XMLStreamException
XMLStreamException
public final void processingInstruction(String target, String data) throws SAXException
processingInstruction
in interface ContentHandler
SAXException
protected abstract void processingInstructionInternal(String target, String data) throws XMLStreamException
XMLStreamException
public final void skippedEntity(String name) throws SAXException
skippedEntity
in interface ContentHandler
SAXException
protected abstract void skippedEntityInternal(String name) throws XMLStreamException
XMLStreamException
|
Spring Web Services Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |