1 13 14 package org.dom4j.io.aelfred; 15 16 import org.xml.sax.SAXException ; 17 import org.xml.sax.ext.DeclHandler ; 18 import org.xml.sax.ext.LexicalHandler ; 19 20 21 23 32 public class DefaultHandler extends org.xml.sax.helpers.DefaultHandler 33 implements LexicalHandler , DeclHandler 34 { 35 36 public DefaultHandler () { } 37 38 50 52 53 public void startCDATA () 54 throws SAXException 55 {} 56 57 58 public void endCDATA () 59 throws SAXException 60 {} 61 62 63 public void startDTD (String root, String pubid, String sysid) 64 throws SAXException 65 {} 66 67 68 public void endDTD () 69 throws SAXException 70 {} 71 72 75 public void startEntity (String name) 76 throws SAXException 77 {} 78 79 82 public void endEntity (String name) 83 throws SAXException 84 {} 85 86 87 public void comment (char buf [], int off, int len) 88 throws SAXException 89 { } 90 91 93 94 public void attributeDecl (String element, String name, 95 String type, String defaultType, String defaltValue) 96 throws SAXException 97 {} 98 99 100 public void elementDecl (String name, String model) 101 throws SAXException 102 {} 103 104 105 public void externalEntityDecl (String name, String pubid, String sysid) 106 throws SAXException 107 {} 108 109 110 public void internalEntityDecl (String name, String value) 111 throws SAXException 112 {} 113 } 114 115 | Popular Tags |