1 51 package org.apache.fop.fo.flow; 52 53 import org.apache.fop.fo.*; 55 import org.apache.fop.layout.*; 56 import org.apache.fop.apps.FOPException; 57 58 60 public class InlineContainer extends ToBeImplementedElement { 61 62 public static class Maker extends FObj.Maker { 63 public FObj make(FObj parent, PropertyList propertyList, 64 String systemId, int line, int column) 65 throws FOPException { 66 return new InlineContainer(parent, propertyList, 67 systemId, line, column); 68 } 69 } 70 71 public static FObj.Maker maker() { 72 return new InlineContainer.Maker(); 73 } 74 75 protected InlineContainer(FObj parent, PropertyList propertyList, 76 String systemId, int line, int column) 77 throws FOPException { 78 super(parent, propertyList, systemId, line, column); 79 80 BorderAndPadding bap = propMgr.getBorderAndPadding(); 82 BackgroundProps bProps = propMgr.getBackgroundProps(); 83 84 MarginInlineProps mProps = propMgr.getMarginInlineProps(); 86 87 RelativePositionProps mRelProps = propMgr.getRelativePositionProps(); 89 90 } 110 111 public String getName() { 112 return "fo:inline-container"; 113 } 114 115 } 116 | Popular Tags |