1 51 package org.apache.fop.fo; 52 53 import org.apache.fop.layout.Area; 55 import org.apache.fop.apps.FOPException; 56 57 59 public abstract class ToBeImplementedElement extends FObj { 60 61 protected ToBeImplementedElement(FObj parent, PropertyList propertyList, 62 String systemId, int line, int column) 63 throws FOPException { 64 super(parent, propertyList, systemId, line, column); 65 } 66 67 public int layout(Area area) throws FOPException { 68 log.debug("The element '" + this.getName() 69 + "' is not yet implemented."); 70 return Status.OK; 71 } 72 73 } 74 | Popular Tags |