Package com.thaiopensource.xml.sax
Class AbstractLexicalHandler
- java.lang.Object
-
- com.thaiopensource.xml.sax.AbstractLexicalHandler
-
- All Implemented Interfaces:
org.xml.sax.ext.LexicalHandler
public class AbstractLexicalHandler extends java.lang.Object implements org.xml.sax.ext.LexicalHandler
-
-
Constructor Summary
Constructors Constructor Description AbstractLexicalHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
comment(char[] chars, int start, int length)
void
endCDATA()
void
endDTD()
void
endEntity(java.lang.String s)
void
startCDATA()
void
startDTD(java.lang.String s, java.lang.String s1, java.lang.String s2)
void
startEntity(java.lang.String s)
-
-
-
Method Detail
-
startDTD
public void startDTD(java.lang.String s, java.lang.String s1, java.lang.String s2) throws org.xml.sax.SAXException
- Specified by:
startDTD
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
endDTD
public void endDTD() throws org.xml.sax.SAXException
- Specified by:
endDTD
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
startEntity
public void startEntity(java.lang.String s) throws org.xml.sax.SAXException
- Specified by:
startEntity
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
endEntity
public void endEntity(java.lang.String s) throws org.xml.sax.SAXException
- Specified by:
endEntity
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
startCDATA
public void startCDATA() throws org.xml.sax.SAXException
- Specified by:
startCDATA
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
endCDATA
public void endCDATA() throws org.xml.sax.SAXException
- Specified by:
endCDATA
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
comment
public void comment(char[] chars, int start, int length) throws org.xml.sax.SAXException
- Specified by:
comment
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
-