1 17 18 19 20 package org.apache.fop.fo.extensions; 21 22 import org.apache.fop.apps.FOPException; 23 import org.apache.fop.fo.FOEventHandler; 24 import org.apache.fop.fo.FONode; 25 import org.apache.fop.fo.FObj; 26 import org.apache.fop.fo.PropertyList; 27 import org.xml.sax.Attributes ; 28 import org.xml.sax.Locator ; 29 30 31 34 public abstract class ExtensionObj extends FObj { 35 36 41 public ExtensionObj(FONode parent) { 42 super(parent); 43 } 44 45 48 public void processNode(String elementName, Locator locator, 49 Attributes attlist, PropertyList pList) 50 throws FOPException 51 { 52 } 54 55 58 protected PropertyList createPropertyList(PropertyList parent, 59 FOEventHandler foEventHandler) throws FOPException { 60 return null; 61 } 62 } 63 64 | Popular Tags |