1 17 package org.apache.excalibur.xml.sax; 18 19 import org.xml.sax.SAXException ; 20 import org.xml.sax.ext.LexicalHandler ; 21 22 29 public class NOPLexicalHandler 30 implements LexicalHandler  31 { 32 41 public void startDTD( final String name, 42 final String publicId, 43 final String systemId ) 44 throws SAXException  45 { 46 } 47 48 51 public void endDTD() 52 throws SAXException  53 { 54 } 55 56 62 public void startEntity( final String name ) 63 throws SAXException  64 { 65 } 66 67 72 public void endEntity( final String name ) 73 throws SAXException  74 { 75 } 76 77 80 public void startCDATA() 81 throws SAXException  82 { 83 } 84 85 88 public void endCDATA() 89 throws SAXException  90 { 91 } 92 93 100 public void comment( final char[] ch, 101 final int start, 102 final int len ) 103 throws SAXException  104 { 105 } 106 } 107 | Popular Tags |