1 51 package org.apache.fop.fo; 52 53 import org.apache.fop.apps.FOPException; 55 56 public class Declarations extends FObj { 57 58 public static class Maker extends FObj.Maker { 59 public FObj make(FObj parent, PropertyList propertyList, 60 String systemId, int line, int column) 61 throws FOPException { 62 return new Declarations(parent, propertyList, systemId, line, column); 63 } 64 } 65 66 public static FObj.Maker maker() { 67 return new Declarations.Maker(); 68 } 69 70 protected Declarations(FObj parent, PropertyList propertyList, 71 String systemId, int line, int column) throws FOPException { 72 super(parent, propertyList, systemId, line, column); 73 log.warn("declarations not implemented"); 74 } 75 76 public String getName() { 77 return "fo:declarations"; 78 } 79 } 80 | Popular Tags |