001 package com.thaiopensource.xml.sax;
002
003 import org.xml.sax.ext.LexicalHandler;
004 import org.xml.sax.SAXException;
005
006 public class AbstractLexicalHandler implements LexicalHandler {
007 public void startDTD(String s, String s1, String s2) throws SAXException {
008 }
009
010 public void endDTD() throws SAXException {
011 }
012
013 public void startEntity(String s) throws SAXException {
014 }
015
016 public void endEntity(String s) throws SAXException {
017 }
018
019 public void startCDATA() throws SAXException {
020 }
021
022 public void endCDATA() throws SAXException {
023 }
024
025 public void comment(char[] chars, int start, int length) throws SAXException {
026 }
027 }