1 package org.mr.core.util.xml.sax; 2 3 import org.xml.sax.SAXException ; 4 import org.xml.sax.ext.DeclHandler ; 5 import org.xml.sax.ext.LexicalHandler ; 6 import org.xml.sax.helpers.DefaultHandler ; 7 8 import java.io.Serializable ; 9 10 55 56 64 public class SinkContentHandler extends DefaultHandler implements LexicalHandler , DeclHandler , Serializable { 65 66 public void startDTD(String s, String s1, String s2) throws SAXException { 70 } 71 72 public void endDTD() throws SAXException { 73 } 74 75 public void startEntity(String s) throws SAXException { 76 } 77 78 public void endEntity(String s) throws SAXException { 79 } 80 81 public void startCDATA() throws SAXException { 82 } 83 84 public void endCDATA() throws SAXException { 85 } 86 87 public void comment(char[] i_chars, int i, int i1) throws SAXException { 88 } 89 90 public void elementDecl(String s, String s1) throws SAXException { 94 } 95 96 public void attributeDecl(String s, String s1, String s2, String s3, String s4) throws SAXException { 97 } 98 99 public void internalEntityDecl(String s, String s1) throws SAXException { 100 } 101 102 public void externalEntityDecl(String s, String s1, String s2) throws SAXException { 103 } 104 } 105 | Popular Tags |