aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java')
-rw-r--r--src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java b/src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java
index e8f635311..3e5c329fa 100644
--- a/src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java
+++ b/src/java/org/apache/fop/layoutmgr/FlowLayoutManager.java
@@ -61,7 +61,7 @@ public class FlowLayoutManager extends BlockStackingLayoutManager
setParent(pslm);
}
- /** @see org.apache.fop.layoutmgr.LayoutManager */
+ /** {@inheritDoc} */
public LinkedList getNextKnuthElements(LayoutContext context, int alignment) {
// set layout dimensions
@@ -165,7 +165,7 @@ public class FlowLayoutManager extends BlockStackingLayoutManager
}
/**
- * @see org.apache.fop.layoutmgr.BlockLevelLayoutManager
+ * {@inheritDoc}
*/
public int negotiateBPDAdjustment(int adj, KnuthElement lastElement) {
log.debug(" FLM.negotiateBPDAdjustment> " + adj);
@@ -185,7 +185,7 @@ public class FlowLayoutManager extends BlockStackingLayoutManager
}
/**
- * @see org.apache.fop.layoutmgr.BlockLevelLayoutManager
+ * {@inheritDoc}
*/
public void discardSpace(KnuthGlue spaceGlue) {
log.debug(" FLM.discardSpace> ");
@@ -199,23 +199,23 @@ public class FlowLayoutManager extends BlockStackingLayoutManager
}
}
- /** @see org.apache.fop.layoutmgr.BlockLevelLayoutManager#mustKeepTogether() */
+ /** {@inheritDoc} */
public boolean mustKeepTogether() {
return false;
}
- /** @see org.apache.fop.layoutmgr.BlockLevelLayoutManager#mustKeepWithPrevious() */
+ /** {@inheritDoc} */
public boolean mustKeepWithPrevious() {
return false;
}
- /** @see org.apache.fop.layoutmgr.BlockLevelLayoutManager#mustKeepWithNext() */
+ /** {@inheritDoc} */
public boolean mustKeepWithNext() {
return false;
}
/**
- * @see org.apache.fop.layoutmgr.LayoutManager#getChangedKnuthElements(java.util.List, int)
+ * {@inheritDoc}
*/
public LinkedList getChangedKnuthElements(List oldList, /*int flaggedPenalty,*/ int alignment) {
ListIterator oldListIterator = oldList.listIterator();
@@ -291,7 +291,7 @@ public class FlowLayoutManager extends BlockStackingLayoutManager
}
/**
- * @see org.apache.fop.layoutmgr.LayoutManager#addAreas(PositionIterator, LayoutContext)
+ * {@inheritDoc}
*/
public void addAreas(PositionIterator parentIter, LayoutContext layoutContext) {
AreaAdditionUtil.addAreas(this, parentIter, layoutContext);
@@ -302,7 +302,8 @@ public class FlowLayoutManager extends BlockStackingLayoutManager
* Add child area to a the correct container, depending on its
* area class. A Flow can fill at most one area container of any class
* at any one time. The actual work is done by BlockStackingLM.
- * @see org.apache.fop.layoutmgr.LayoutManager#addChildArea(Area)
+ *
+ * @param childArea the area to add
*/
public void addChildArea(Area childArea) {
getParentArea(childArea);
@@ -311,7 +312,7 @@ public class FlowLayoutManager extends BlockStackingLayoutManager
}
/**
- * @see org.apache.fop.layoutmgr.LayoutManager#getParentArea(Area)
+ * {@inheritDoc}
*/
public Area getParentArea(Area childArea) {
BlockParent parentArea = null;
@@ -334,7 +335,7 @@ public class FlowLayoutManager extends BlockStackingLayoutManager
}
/**
- * @see org.apache.fop.layoutmgr.LayoutManager#resetPosition(Position)
+ * {@inheritDoc}
*/
public void resetPosition(Position resetPos) {
if (resetPos == null) {