1 16 package org.apache.cocoon.xml; 17 18 import org.xml.sax.SAXException ; 19 import org.xml.sax.ext.LexicalHandler ; 20 21 27 public class DefaultLexicalHandler implements LexicalHandler { 28 29 32 public static final LexicalHandler NULL_HANDLER = new DefaultLexicalHandler(); 33 34 public void startDTD(String name, String publicId, String systemId) throws SAXException { 35 } 37 38 public void endDTD() throws SAXException { 39 } 41 42 public void startEntity(String name) throws SAXException { 43 } 45 46 public void endEntity(String name) throws SAXException { 47 } 49 50 public void startCDATA() throws SAXException { 51 } 53 54 public void endCDATA() throws SAXException { 55 } 57 58 public void comment(char[] ch, int start, int length) throws SAXException { 59 } 61 } | Popular Tags |