1 31 package com.hp.hpl.jena.rdf.arp; 32 33 import org.xml.sax.SAXException ; 34 import org.xml.sax.ext.LexicalHandler ; 35 import org.xml.sax.helpers.DefaultHandler ; 36 37 42 class LexicalHandlerImpl extends DefaultHandler implements LexicalHandler { 43 44 47 public void endCDATA() throws SAXException { 48 } 49 50 53 public void endDTD() throws SAXException { 54 } 55 56 59 public void startCDATA() throws SAXException { 60 } 61 62 65 public void comment(char[] ch, int start, int length) throws SAXException { 66 } 67 68 71 public void endEntity(String name) throws SAXException { 72 } 73 74 77 public void startEntity(String name) throws SAXException { 78 } 79 80 83 public void startDTD(String name, String publicId, String systemId) 84 throws SAXException { 85 } 86 87 } 88 | Popular Tags |