org.xml.sax
Interface XMLReader

All Known Subinterfaces:
XMLFilter
All Known Implementing Classes:
ParserAdapter, XMLFilterImpl

public interface XMLReader


Method Summary
 ContentHandler getContentHandler()
           
 DTDHandler getDTDHandler()
           
 EntityResolver getEntityResolver()
           
 ErrorHandler getErrorHandler()
           
 boolean getFeature(java.lang.String)
           
 java.lang.Object getProperty(java.lang.String)
           
 void parse(InputSource)
           
 void parse(java.lang.String)
           
 void setContentHandler(ContentHandler)
           
 void setDTDHandler(DTDHandler)
           
 void setEntityResolver(EntityResolver)
           
 void setErrorHandler(ErrorHandler)
           
 void setFeature(java.lang.String, boolean)
           
 void setProperty(java.lang.String, java.lang.Object)
           
 

Method Detail

getFeature

public boolean getFeature(java.lang.String)
                   throws SAXNotRecognizedException,
                          SAXNotSupportedException
SAXNotRecognizedException
SAXNotSupportedException

setFeature

public void setFeature(java.lang.String,
                       boolean)
                throws SAXNotRecognizedException,
                       SAXNotSupportedException
SAXNotRecognizedException
SAXNotSupportedException

getProperty

public java.lang.Object getProperty(java.lang.String)
                             throws SAXNotRecognizedException,
                                    SAXNotSupportedException
SAXNotRecognizedException
SAXNotSupportedException

setProperty

public void setProperty(java.lang.String,
                        java.lang.Object)
                 throws SAXNotRecognizedException,
                        SAXNotSupportedException
SAXNotRecognizedException
SAXNotSupportedException

setEntityResolver

public void setEntityResolver(EntityResolver)

getEntityResolver

public EntityResolver getEntityResolver()

setDTDHandler

public void setDTDHandler(DTDHandler)

getDTDHandler

public DTDHandler getDTDHandler()

setContentHandler

public void setContentHandler(ContentHandler)

getContentHandler

public ContentHandler getContentHandler()

setErrorHandler

public void setErrorHandler(ErrorHandler)

getErrorHandler

public ErrorHandler getErrorHandler()

parse

public void parse(InputSource)
           throws java.io.IOException,
                  SAXException
java.io.IOException
SAXException

parse

public void parse(java.lang.String)
           throws java.io.IOException,
                  SAXException
java.io.IOException
SAXException