01: package org.kohsuke.rngom.xml.sax;
02:
03: import org.xml.sax.ext.LexicalHandler;
04: import org.xml.sax.SAXException;
05:
06: public class AbstractLexicalHandler implements LexicalHandler {
07: public void startDTD(String s, String s1, String s2)
08: throws SAXException {
09: }
10:
11: public void endDTD() throws SAXException {
12: }
13:
14: public void startEntity(String s) throws SAXException {
15: }
16:
17: public void endEntity(String s) throws SAXException {
18: }
19:
20: public void startCDATA() throws SAXException {
21: }
22:
23: public void endCDATA() throws SAXException {
24: }
25:
26: public void comment(char[] chars, int start, int length)
27: throws SAXException {
28: }
29: }
|