]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Class actually iterates over element lists not break possibilities.
authorJeremias Maerki <jeremias@apache.org>
Mon, 18 Apr 2005 11:46:43 +0000 (11:46 +0000)
committerJeremias Maerki <jeremias@apache.org>
Mon, 18 Apr 2005 11:46:43 +0000 (11:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_KnuthStylePageBreaking@198584 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/KnuthPossPosIter.java

index d8039e3c71a9ff0618c68d56fb558f22533096cf..0b157c0504af7bcc80428b1eefd534f6165b4285 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2004 The Apache Software Foundation.
+ * Copyright 2004-2005 The Apache Software Foundation.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -26,21 +26,25 @@ public class KnuthPossPosIter extends PositionIterator {
 
     /**
      * Main constructor
-     * @param bpList List of break possibilities
+     * @param elementList List of Knuth elements
      * @param startPos starting position
      * @param endPos ending position
      */
-    public KnuthPossPosIter(List bpList, int startPos, int endPos) {
-        super(bpList.listIterator(startPos));
+    public KnuthPossPosIter(List elementList, int startPos, int endPos) {
+        super(elementList.listIterator(startPos));
         iterCount = endPos - startPos;
     }
-
-    // Check position < endPos
     
-    public KnuthPossPosIter(List bpList) {
-        this(bpList, 0, bpList.size());
+    /**
+     * Auxiliary constructor
+     * @param elementList List of Knuth elements
+     */
+    public KnuthPossPosIter(List elementList) {
+        this(elementList, 0, elementList.size());
     }
 
+    // Check position < endPos
+    
     /**
      * @see org.apache.fop.layoutmgr.PositionIterator#checkNext()
      */