1 6 package org.xml.sax.ext; 7 8 import org.xml.sax.SAXException ; 9 10 44 public interface LexicalHandler 45 { 46 47 85 public abstract void startDTD (String name, String publicId, 86 String systemId) 87 throws SAXException ; 88 89 90 100 public abstract void endDTD () 101 throws SAXException ; 102 103 104 153 public abstract void startEntity (String name) 154 throws SAXException ; 155 156 157 164 public abstract void endEntity (String name) 165 throws SAXException ; 166 167 168 179 public abstract void startCDATA () 180 throws SAXException ; 181 182 183 189 public abstract void endCDATA () 190 throws SAXException ; 191 192 193 207 public abstract void comment (char ch[], int start, int length) 208 throws SAXException ; 209 210 } 211 212 | Popular Tags |