All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----com.jclark.xml.parse.base.ApplicationImpl | +----com.jclark.xml.sax.Driver
Locator
will provide information only for
startElement
and processingInstruction
events;
Locator
will correspond to the first character of the document event
not the character following the document event as specified by SAX;
Locator
nor a SAXParseException
will provide information about an entity's public identifier;
Locator
object will be an instance of
com.jclark.xml.sax.Locator
which extends
org.xml.sax.Locator
;
public Driver()
public void setEntityResolver(EntityResolver resolver)
public void setDocumentHandler(DocumentHandler handler)
public void setDTDHandler(DTDHandler handler)
public void setErrorHandler(ErrorHandler handler)
public void setLocale(Locale locale)
public void parse(String systemId) throws SAXException, IOException
public void parse(InputSource in) throws SAXException, IOException
public void startDocument() throws SAXException
public void startElement(StartElementEvent event) throws SAXException
public void characterData(CharacterDataEvent event)
public void endElement(EndElementEvent event) throws SAXException
public void processingInstruction(ProcessingInstructionEvent event) throws SAXException
public void endProlog(EndPrologEvent event) throws SAXException
public void endDocument() throws SAXException
public OpenEntity open(String systemId, URL baseURL, String publicId) throws IOException
public int getLength()
public String getName(int i)
public String getValue(int i)
public String getValue(String name)
public String getType(int i)
public String getType(String name)
public String getSystemId()
public URL getURL()
public String getPublicId()
public int getLineNumber()
public int getColumnNumber()
public long getByteIndex()
All Packages Class Hierarchy This Package Previous Next Index