1 17 18 19 20 package org.apache.fop.util; 21 22 import java.util.EventListener ; 23 24 import org.xml.sax.ContentHandler ; 25 import org.xml.sax.SAXException ; 26 27 31 public interface ContentHandlerFactory { 32 33 36 String [] getSupportedNamespaces(); 37 38 42 ContentHandler createContentHandler() throws SAXException ; 43 44 48 public interface ObjectSource { 49 50 53 Object getObject(); 54 55 59 void setObjectBuiltListener(ObjectBuiltListener listener); 60 } 61 62 66 public interface ObjectBuiltListener extends EventListener { 67 68 72 void notifyObjectBuilt(Object obj); 73 74 } 75 76 } 77 | Popular Tags |