1 22 23 package org.xquark.util; 24 25 26 import org.xml.sax.ContentHandler ; 27 import org.xml.sax.Locator ; 28 import org.xml.sax.SAXException ; 29 import org.xml.sax.ext.LexicalHandler ; 30 31 35 public class XMLDocumentFragmentor extends HandlerDecorator 36 { 37 private static final String RCSRevision = "$Revision: 1.1 $"; 38 private static final String RCSName = "$Name: $"; 39 40 public XMLDocumentFragmentor(ContentHandler contentHandler, LexicalHandler lexicalHandler) 41 { 42 super(contentHandler, lexicalHandler); 43 } 44 45 public void setDocumentLocator(Locator locator) 46 { 47 } 49 50 public void startDocument() throws SAXException 51 { 52 } 54 55 public void endDocument() throws SAXException 56 { 57 } 59 } 60 | Popular Tags |