1 51 package org.apache.fop.fo.flow; 52 53 import org.apache.fop.fo.*; 55 import org.apache.fop.apps.FOPException; 56 57 65 public class Wrapper extends FObjMixed { 66 67 public static class Maker extends FObj.Maker { 68 public FObj make(FObj parent, PropertyList propertyList, 69 String systemId, int line, int column) 70 throws FOPException { 71 return new Wrapper(parent, propertyList, systemId, line, column); 72 } 73 } 74 75 public static FObj.Maker maker() { 76 return new Wrapper.Maker(); 77 } 78 79 public String getName() { 80 return "fo:wrapper"; 81 } 82 83 public Wrapper(FObj parent, PropertyList propertyList, 84 String systemId, int line, int column) 85 throws FOPException { 86 super(parent, propertyList, systemId, line, column); 87 } 89 90 } 91 | Popular Tags |