1 22 23 package org.xquark.util; 24 25 26 import org.xml.sax.Locator ; 27 import org.xml.sax.SAXException ; 28 import org.xml.sax.XMLReader ; 29 30 34 public class FragmentReader extends DefaultXMLFilter 35 { 36 private static final String RCSRevision = "$Revision: 1.1 $"; 37 private static final String RCSName = "$Name: $"; 38 39 public FragmentReader(XMLReader reader) 40 { 41 super(reader); 42 } 43 44 public void setDocumentLocator(Locator locator) 45 { 46 } 48 49 public void startDocument() throws SAXException  50 { 51 } 53 54 public void endDocument() throws SAXException  55 { 56 } 58 } 59 | Popular Tags |