1 package com.thaiopensource.xml.sax; 2 3 import org.xml.sax.ext.LexicalHandler ; 4 import org.xml.sax.SAXException ; 5 6 public class AbstractLexicalHandler implements LexicalHandler { 7 public void startDTD(String s, String s1, String s2) throws SAXException { 8 } 9 10 public void endDTD() throws SAXException { 11 } 12 13 public void startEntity(String s) throws SAXException { 14 } 15 16 public void endEntity(String s) throws SAXException { 17 } 18 19 public void startCDATA() throws SAXException { 20 } 21 22 public void endCDATA() throws SAXException { 23 } 24 25 public void comment(char[] chars, int start, int length) throws SAXException { 26 } 27 } 28 | Popular Tags |