diff options
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java | 2 | ||||
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/BreakingAlgorithm.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java b/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java index 1fad79154..16a94d4bc 100644 --- a/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java @@ -849,7 +849,7 @@ public class BlockContainerLayoutManager extends BlockStackingLayoutManager { /** * Force current area to be added to parent area. - * @see org.apache.fop.layoutmgr.AbstractLayoutManager#flush() + * @see org.apache.fop.layoutmgr.BlockStackingLayoutManager#flush() */ protected void flush() { viewportBlockArea.addBlock(referenceArea, autoHeight); diff --git a/src/java/org/apache/fop/layoutmgr/BreakingAlgorithm.java b/src/java/org/apache/fop/layoutmgr/BreakingAlgorithm.java index f71a9fd7d..74a5ef1e2 100644 --- a/src/java/org/apache/fop/layoutmgr/BreakingAlgorithm.java +++ b/src/java/org/apache/fop/layoutmgr/BreakingAlgorithm.java @@ -730,17 +730,17 @@ public abstract class BreakingAlgorithm { /** * Return the element at index idx in the paragraph. * @param idx index of the element. - * @return + * @return the element at index idx in the paragraph. */ protected KnuthElement getElement(int idx) { return (KnuthElement) par.get(idx); } /** - * Compare two KnuthNodes and return the node with the least demerit. + * Compare two KnuthNodes and return the node with the least demerit. * @param node1 The first knuth node. * @param node2 The other knuth node. - * @return + * @return the node with the least demerit. */ protected KnuthNode compareNodes(KnuthNode node1, KnuthNode node2) { if (node1 == null || node2.position > node1.position) { |