| java.lang.Object org.xml.sax.helpers.DefaultHandler de.danet.an.util.sax.StackedHandler
All known Subclasses: de.danet.an.util.soap.SOAPBuilder, de.danet.an.util.sax.DelegatingHandler,
StackedHandler | public class StackedHandler extends DefaultHandler (Code) | | StackedHandler represents an item on the
HandlerStack HandlerStack . While any
org.xml.sax.ContentHandler ContentHandler may be
pushed on the stack, the StackedHandler provides some
convenience methods that may help implementing a stacked handler.
|
StackedHandler | public StackedHandler()(Code) | | Default constructor. The reference to the stack is initialized
when the handler is pushed on the stack.
|
currentPath | public String currentPath()(Code) | | Return the current path. This is a shortcut for
getStack().currentPath() .
the current path. |
getStack | public HandlerStack getStack()(Code) | | Return the stack this handler is pushed on.
the associated stack. |
setStack | void setStack(HandlerStack theStack)(Code) | | Set the stack. Called by the HandlerStack during
push .
Parameters: theStack - the stack. |
text | public String text()(Code) | | Return the collected character data of the current element.
collected characters. |
Methods inherited from org.xml.sax.helpers.DefaultHandler | public void characters(char ch, int start, int length) throws SAXException(Code)(Java Doc) public void endDocument() throws SAXException(Code)(Java Doc) public void endElement(String uri, String localName, String qName) throws SAXException(Code)(Java Doc) public void endPrefixMapping(String prefix) throws SAXException(Code)(Java Doc) public void error(SAXParseException e) throws SAXException(Code)(Java Doc) public void fatalError(SAXParseException e) throws SAXException(Code)(Java Doc) public void ignorableWhitespace(char ch, int start, int length) throws SAXException(Code)(Java Doc) public void notationDecl(String name, String publicId, String systemId) throws SAXException(Code)(Java Doc) public void processingInstruction(String target, String data) throws SAXException(Code)(Java Doc) public InputSource resolveEntity(String publicId, String systemId) throws IOException, SAXException(Code)(Java Doc) public void setDocumentLocator(Locator locator)(Code)(Java Doc) public void skippedEntity(String name) throws SAXException(Code)(Java Doc) public void startDocument() throws SAXException(Code)(Java Doc) public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException(Code)(Java Doc) public void startPrefixMapping(String prefix, String uri) throws SAXException(Code)(Java Doc) public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName) throws SAXException(Code)(Java Doc) public void warning(SAXParseException e) throws SAXException(Code)(Java Doc)
|
|
|