org.retro.xml
Interface DocumentHandler

All Known Implementing Classes:
SAXHandlerBase

public interface DocumentHandler


Method Summary
 void characters(char[] ch, int start, int length)
           
 void endDocument()
           
 void endElement(java.lang.String name)
           
 void ignorableWhitespace(char[] ch, int start, int length)
           
 void processingInstruction(java.lang.String target, java.lang.String data)
           
 void setDocumentLocator(Locator locator)
           
 void startDocument()
           
 void startElement(java.lang.String name, AttributeList atts)
           
 

Method Detail

setDocumentLocator

public void setDocumentLocator(Locator locator)

startDocument

public void startDocument()
                   throws SAXException
Throws:
SAXException

endDocument

public void endDocument()
                 throws SAXException
Throws:
SAXException

startElement

public void startElement(java.lang.String name,
                         AttributeList atts)
                  throws SAXException
Throws:
SAXException

endElement

public void endElement(java.lang.String name)
                throws SAXException
Throws:
SAXException

characters

public void characters(char[] ch,
                       int start,
                       int length)
                throws SAXException
Throws:
SAXException

ignorableWhitespace

public void ignorableWhitespace(char[] ch,
                                int start,
                                int length)
                         throws SAXException
Throws:
SAXException

processingInstruction

public void processingInstruction(java.lang.String target,
                                  java.lang.String data)
                           throws SAXException
Throws:
SAXException