diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-03-18 08:08:25 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-03-18 08:08:25 +0000 |
commit | 2332ae0d9bffcd9c5882bda7d8ee1a1bb74bbf58 (patch) | |
tree | ab1c407eb9e9778a34046a1a8e3069003429306d /src/java/org/apache/fop/fo/flow/BlockContainer.java | |
parent | 5c82c15413bff62f039b340f8e53c2e30bb57237 (diff) | |
download | xmlgraphics-fop-2332ae0d9bffcd9c5882bda7d8ee1a1bb74bbf58.tar.gz xmlgraphics-fop-2332ae0d9bffcd9c5882bda7d8ee1a1bb74bbf58.zip |
More accessors on block-containers.
Javadocs touch-up
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198504 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/BlockContainer.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/BlockContainer.java | 45 |
1 files changed, 35 insertions, 10 deletions
diff --git a/src/java/org/apache/fop/fo/flow/BlockContainer.java b/src/java/org/apache/fop/fo/flow/BlockContainer.java index d18c7fbfd..c7d1acd5d 100644 --- a/src/java/org/apache/fop/fo/flow/BlockContainer.java +++ b/src/java/org/apache/fop/fo/flow/BlockContainer.java @@ -38,7 +38,7 @@ import org.apache.fop.fo.properties.LengthRangeProperty; */ public class BlockContainer extends FObj { // The value of properties relevant for fo:block-container. - private CommonAbsolutePosition commonAbsolutePosition ; + private CommonAbsolutePosition commonAbsolutePosition; private CommonBorderPaddingBackground commonBorderPaddingBackground; private CommonMarginBlock commonMarginBlock; private LengthRangeProperty blockProgressionDimension; @@ -146,28 +146,28 @@ public class BlockContainer extends FObj { } /** - * Return the Common Absolute Position Properties. + * @return the Common Absolute Position Properties. */ public CommonAbsolutePosition getCommonAbsolutePosition() { return commonAbsolutePosition; } /** - * Return the Common Margin Properties-Block. + * @return the Common Margin Properties-Block. */ public CommonMarginBlock getCommonMarginBlock() { return commonMarginBlock; } /** - * Return the Common Border, Padding, and Background Properties. + * @return the Common Border, Padding, and Background Properties. */ public CommonBorderPaddingBackground getCommonBorderPaddingBackground() { return commonBorderPaddingBackground; } /** - * Return the "block-progression-dimension" property. + * @return the "block-progression-dimension" property. */ public LengthRangeProperty getBlockProgressionDimension() { return blockProgressionDimension; @@ -178,36 +178,61 @@ public class BlockContainer extends FObj { return displayAlign; } + /** @return the "break-after" property. */ + public int getBreakAfter() { + return breakAfter; + } + + /** @return the "break-before" property. */ + public int getBreakBefore() { + return breakBefore; + } + + /** @return the "keep-with-next" property. */ + public KeepProperty getKeepWithNext() { + return keepWithNext; + } + + /** @return the "keep-with-previous" property. */ + public KeepProperty getKeepWithPrevious() { + return keepWithPrevious; + } + + /** @return the "keep-together" property. */ + public KeepProperty getKeepTogether() { + return keepTogether; + } + /** - * Return the "id" property. + * @return the "id" property. */ public String getId() { return id; } /** - * Return the "inline-progression-dimension" property. + * @return the "inline-progression-dimension" property. */ public LengthRangeProperty getInlineProgressionDimension() { return inlineProgressionDimension; } /** - * Return the "overflow" property. + * @return the "overflow" property. */ public int getOverflow() { return overflow; } /** - * Return the "reference-orientation" property. + * @return the "reference-orientation" property. */ public int getReferenceOrientation() { return referenceOrientation.getValue(); } /** - * Return the "span" property. + * @return the "span" property. */ public int getSpan() { return this.span; |