diff options
Diffstat (limited to 'src/org/apache/fop/fo/flow/InlineContainer.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/InlineContainer.java | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/src/org/apache/fop/fo/flow/InlineContainer.java b/src/org/apache/fop/fo/flow/InlineContainer.java index 31bfd008c..5332a2dc6 100644 --- a/src/org/apache/fop/fo/flow/InlineContainer.java +++ b/src/org/apache/fop/fo/flow/InlineContainer.java @@ -12,7 +12,7 @@ import org.apache.fop.fo.*; import org.apache.fop.messaging.MessageHandler; import org.apache.fop.fo.flow.*; import org.apache.fop.fo.properties.*; -import org.apache.fop.layout.AreaTree; +import org.apache.fop.layout.*; import org.apache.fop.apps.FOPException; /** @@ -35,6 +35,36 @@ public class InlineContainer extends ToBeImplementedElement { PropertyList propertyList) throws FOPException { super(parent, propertyList); this.name = "fo:inline-container"; + + // Common Border, Padding, and Background Properties + BorderAndPadding bap = propMgr.getBorderAndPadding(); + BackgroundProps bProps = propMgr.getBackgroundProps(); + + // Common Margin Properties-Inline + MarginInlineProps mProps = propMgr.getMarginInlineProps(); + + // Common Relative Position Properties + RelativePositionProps mRelProps = propMgr.getRelativePositionProps(); + + // this.properties.get("alignment-adjust"); + // this.properties.get("alignment-baseline"); + // this.properties.get("baseline-shift"); + // this.properties.get("block-progression-dimension"); + // this.properties.get("clip"); + // this.properties.get("display-align"); + // this.properties.get("dominant-baseline"); + // this.properties.get("height"); + // this.properties.get("id"); + // this.properties.get("inline-progression-dimension"); + // this.properties.get("keep-together"); + // this.properties.get("keep-with-next"); + // this.properties.get("keep-with-previous"); + // this.properties.get("line-height"); + // this.properties.get("line-height-shift-adjustment"); + // this.properties.get("overflow"); + // this.properties.get("reference-orientation"); + // this.properties.get("width"); + // this.properties.get("writing-mode"); } } |