]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Extended comment to document the open argument.
authorJeremias Maerki <jeremias@apache.org>
Tue, 9 Aug 2005 08:15:28 +0000 (08:15 +0000)
committerJeremias Maerki <jeremias@apache.org>
Tue, 9 Aug 2005 08:15:28 +0000 (08:15 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/inlineblock@231013 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java

index 808f271ec8cca425b0d4dfef5c18f9e79937b436..48bc1464c8297f925af0a2c1658215167a05e1c3 100644 (file)
@@ -663,6 +663,11 @@ public class LineLayoutManager extends InlineStackingLayoutManager
                 // loop over the KnuthSequences (and single KnuthElements) in returnedList
                 // (LeafNodeLM descendants may also skip wrapping elements in KnuthSequences
                 // to cause fewer container structures)
+                // TODO the mixture here adds a little to the complexity. Decide whether:
+                // - to leave as is and save some container instances
+                // - to use KnuthSequences exclusively (adjustments on leaf-type LMs necessary)
+                // See also FootnoteLM.addAnchor() as well as right above this comment
+                // for similar code. Or see http://svn.apache.org/viewcvs?rev=230779&view=rev 
                 ListIterator iter = returnedList.listIterator();
                 while (iter.hasNext()) {
                     Object obj = iter.next();