1 17 package org.apache.excalibur.xml.sax; 18 19 import org.xml.sax.SAXException ; 20 21 29 public class NOPXMLConsumer 30 extends NOPContentHandler 31 implements XMLConsumer 32 { 33 34 43 public void startDTD( final String name, 44 final String publicId, 45 final String systemId ) 46 throws SAXException 47 { 48 } 49 50 53 public void endDTD() 54 throws SAXException 55 { 56 } 57 58 64 public void startEntity( final String name ) 65 throws SAXException 66 { 67 } 68 69 74 public void endEntity( final String name ) 75 throws SAXException 76 { 77 } 78 79 82 public void startCDATA() 83 throws SAXException 84 { 85 } 86 87 90 public void endCDATA() 91 throws SAXException 92 { 93 } 94 95 102 public void comment( final char[] ch, 103 final int start, 104 final int len ) 105 throws SAXException 106 { 107 } 108 } 109 | Popular Tags |