KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > org > xml > sax > ext > LexicalHandler

org.xml.sax.ext
Interface LexicalHandler

All Known Subinterfaces:
TransformerHandler
All Known Implementing Classes:
DefaultHandler2
See Also:
Top Examples, Source Code, SAXNotRecognizedException, setProperty

void comment(char[] ch,
             int start,
             int length)
             throws SAXException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void endCDATA()
              throws SAXException
See Also:
startCDATA()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void endDTD()
            throws SAXException
See Also:
startDTD(java.lang.String, java.lang.String, java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void endEntity(String name)
               throws SAXException
See Also:
startEntity(java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void startCDATA()
                throws SAXException
See Also:
endCDATA(), characters
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void startDTD(String name,
              String publicId,
              String systemId)
              throws SAXException
See Also:
startEntity(java.lang.String), endDTD(), startElement, endEntity, DeclHandler, DTDHandler
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void startEntity(String name)
                 throws SAXException
See Also:
DeclHandler.externalEntityDecl(java.lang.String, java.lang.String, java.lang.String), DeclHandler.internalEntityDecl(java.lang.String, java.lang.String), endEntity(java.lang.String), skippedEntity, DTDHandler
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags