diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-09-15 09:47:29 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-09-15 09:47:29 +0000 |
commit | 7fb5d7bcea9dff5f6044faa2f7ed7676cf0c232a (patch) | |
tree | 6935cc836f5fb85159129f4042eb673739c8570b | |
parent | 5d5ef11369d11e898477c5985473ffb04ede1b50 (diff) | |
download | xmlgraphics-fop-7fb5d7bcea9dff5f6044faa2f7ed7676cf0c232a.tar.gz xmlgraphics-fop-7fb5d7bcea9dff5f6044faa2f7ed7676cf0c232a.zip |
Documentation request for the getChangedKnuthElements() method. Very few of us will have a good idea what this method is for. I only know it has to do with (1) justification of boxes in b-p-d and (2) with hyphenation in i-p-d.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@289187 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/LayoutManager.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/LayoutManager.java b/src/java/org/apache/fop/layoutmgr/LayoutManager.java index 33250110f..85ffa3101 100644 --- a/src/java/org/apache/fop/layoutmgr/LayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/LayoutManager.java @@ -48,7 +48,7 @@ public interface LayoutManager extends PercentBaseContext { * initialize the layout manager. Allows each layout manager * to calculate often used values. */ - public void initialize(); + void initialize(); /** * Get the active PageSequenceLayoutManager instance for this @@ -150,6 +150,8 @@ public interface LayoutManager extends PercentBaseContext { * Get a sequence of KnuthElements representing the content * of the node assigned to the LM, after changes have been applied * + * @todo Add a detailed explanation what exactly "changes" mean here and what the + * method's purpose is. * @param oldList the elements to replace * @param alignment the desired text alignment * @return the updated list of KnuthElements |