]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
style changes only
authorWilliam Victor Mote <vmote@apache.org>
Fri, 22 Aug 2003 06:27:34 +0000 (06:27 +0000)
committerWilliam Victor Mote <vmote@apache.org>
Fri, 22 Aug 2003 06:27:34 +0000 (06:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196825 13f79535-47bb-0310-9956-ffa450edef68

32 files changed:
src/java/org/apache/fop/fo/FObjMixed.java
src/java/org/apache/fop/fo/PropertyManager.java
src/java/org/apache/fop/fo/flow/BasicLink.java
src/java/org/apache/fop/fo/flow/BidiOverride.java
src/java/org/apache/fop/fo/flow/Block.java
src/java/org/apache/fop/fo/flow/BlockContainer.java
src/java/org/apache/fop/fo/flow/Character.java
src/java/org/apache/fop/fo/flow/ExternalGraphic.java
src/java/org/apache/fop/fo/flow/InlineContainer.java
src/java/org/apache/fop/fo/flow/InstreamForeignObject.java
src/java/org/apache/fop/fo/flow/Leader.java
src/java/org/apache/fop/fo/flow/ListBlock.java
src/java/org/apache/fop/fo/flow/ListItemBody.java
src/java/org/apache/fop/fo/flow/ListItemLabel.java
src/java/org/apache/fop/fo/flow/PageNumber.java
src/java/org/apache/fop/fo/flow/PageNumberCitation.java
src/java/org/apache/fop/fo/flow/RetrieveMarker.java
src/java/org/apache/fop/fo/flow/Table.java
src/java/org/apache/fop/fo/flow/TableBody.java
src/java/org/apache/fop/fo/flow/TableCell.java
src/java/org/apache/fop/fo/flow/TableColumn.java
src/java/org/apache/fop/fo/flow/TableRow.java
src/java/org/apache/fop/fo/pagination/Flow.java
src/java/org/apache/fop/fo/pagination/Region.java
src/java/org/apache/fop/fo/pagination/RegionAfter.java
src/java/org/apache/fop/fo/pagination/RegionBefore.java
src/java/org/apache/fop/fo/pagination/RegionBody.java
src/java/org/apache/fop/fo/pagination/RegionEnd.java
src/java/org/apache/fop/fo/pagination/RegionStart.java
src/java/org/apache/fop/fo/pagination/SimplePageMaster.java
src/java/org/apache/fop/fo/pagination/StaticContent.java
src/java/org/apache/fop/fo/pagination/Title.java

index f7a4921a3e372ff3f5975f2b750097e9d1c82900..179f2fe91f6591caa9c2f913a74f15471f1a8d90 100644 (file)
  */
 package org.apache.fop.fo;
 
-import org.apache.fop.fo.FOTreeControl;
-import org.apache.fop.layoutmgr.InlineStackingLayoutManager;
-import org.apache.fop.layoutmgr.LMiter;
-
-import java.util.List;
-
 /**
  * Base class for representation of mixed content formatting objects
  * and their processing
@@ -113,6 +107,12 @@ public class FObjMixed extends FObj {
         return new RecursiveCharIterator(this);
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index ac0099a58e9a69a01c29149fc42e597bdc2f0e2c..4f1d73e0306ce259b349e055a7d3d296b2267d0a 100644 (file)
@@ -58,7 +58,6 @@ import java.awt.geom.Rectangle2D;
 import org.apache.fop.area.CTM;
 import org.apache.fop.datatypes.FODimension;
 import org.apache.fop.fonts.Font;
-import org.apache.fop.fo.FOTreeControl;
 import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonMarginBlock;
 import org.apache.fop.fo.properties.CommonMarginInline;
@@ -120,7 +119,8 @@ public class PropertyManager {
     /**
      * Sets the Document object telling the property manager which fonts are
      * available.
-     * @param doc Document containing font information
+     * @param foTreeControl foTreeControl implementation containing font
+     * information
      */
     public void setFontInfo(FOTreeControl foTreeControl) {
         this.foTreeControl = foTreeControl;
@@ -130,7 +130,8 @@ public class PropertyManager {
     /**
      * Constructs a FontState object. If it was constructed before it is
      * reused.
-     * @param doc Document containing the font information
+     * @param foTreeControl FOTreeControl implementation containing the font
+     * information
      * @return a FontState object
      */
     public Font getFontState(FOTreeControl foTreeControl) {
@@ -476,7 +477,8 @@ public class PropertyManager {
     /**
      * Constructs a TextInfo objects. If it was constructed before it is
      * reused.
-     * @param doc Document containing list of available fonts
+     * @param foTreeControl FOTreeControl implementation containing list of
+     * available fonts
      * @return a TextInfo object
      */
     public TextInfo getTextLayoutProps(FOTreeControl foTreeControl) {
index 477674f12a31e668aea5fb242dbf5d77198b076d..319ef6f520ef7521ae19709b3b70b58ec9893177 100644 (file)
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-import java.io.Serializable;
-
 // FOP
 import org.apache.fop.fo.FONode;
 import org.apache.fop.fo.FOTreeVisitor;
@@ -63,14 +59,6 @@ import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonBackground;
 import org.apache.fop.fo.properties.CommonMarginInline;
 import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.area.inline.InlineParent;
-import org.apache.fop.area.Trait;
-import org.apache.fop.area.Resolveable;
-import org.apache.fop.area.PageViewport;
-import org.apache.fop.area.Area;
-import org.apache.fop.layoutmgr.InlineStackingLayoutManager;
-import org.apache.fop.layoutmgr.LMiter;
-import org.apache.fop.layoutmgr.LayoutProcessor;
 
 /**
  * The basic link.
@@ -145,14 +133,26 @@ public class BasicLink extends Inline {
         return true;
     }
 
+    /**
+     * @return the String value of the link
+     */
     public String getLink() {
         return link;
     }
 
+    /**
+     * @return true if the link is external, false otherwise
+     */
     public boolean getExternal() {
         return external;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index a037d5a58801b6b521434f07b549c09400f8b301..202e34bc69dad8478941ab4547106515bb9f7c54 100644 (file)
@@ -57,13 +57,6 @@ import org.apache.fop.fo.FOTreeVisitor;
 import org.apache.fop.fo.properties.CommonAural;
 import org.apache.fop.fo.properties.CommonRelativePosition;
 
-import org.apache.fop.layoutmgr.LeafNodeLayoutManager;
-import org.apache.fop.layoutmgr.LayoutProcessor;
-import org.apache.fop.area.inline.InlineArea;
-
-import java.util.List;
-import java.util.ArrayList;
-
 /**
  * fo:bidi-override element.
  */
@@ -108,6 +101,12 @@ public class BidiOverride extends FObjMixed {
         return true;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 7019889e6f1f605aec4331b8f1e66cd83dc767a5..994da7ccb75d15fcb8480bf134c7ee7534decce0 100644 (file)
@@ -50,9 +50,6 @@
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-
 // XML
 import org.xml.sax.Attributes;
 
@@ -64,7 +61,6 @@ import org.apache.fop.fo.FONode;
 import org.apache.fop.fo.FObj;
 import org.apache.fop.fo.FObjMixed;
 import org.apache.fop.fo.RecursiveCharIterator;
-import org.apache.fop.fo.TextInfo;
 import org.apache.fop.fo.FOTreeVisitor;
 import org.apache.fop.fo.properties.Constants;
 import org.apache.fop.fo.properties.CommonAccessibility;
@@ -74,7 +70,6 @@ import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonHyphenation;
 import org.apache.fop.fo.properties.CommonMarginBlock;
 import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.layoutmgr.BlockLayoutManager;
 import org.apache.fop.util.CharUtilities;
 
 /*
@@ -398,6 +393,12 @@ public class Block extends FObjMixed {
         }
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 4b2a83639ff1810a47fbbf4bb3efa1bacaec7d93..0bc31791040ed7aa04b30cb140bd11366caa31d7 100644 (file)
@@ -60,12 +60,9 @@ import org.apache.fop.fo.properties.CommonAbsolutePosition;
 import org.apache.fop.fo.properties.CommonBackground;
 import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonMarginBlock;
-import org.apache.fop.layoutmgr.BlockContainerLayoutManager;
 
 import org.xml.sax.Attributes;
 
-import java.util.List;
-
 /**
  * Class modelling the fo:block-container object. See Sec. 6.5.3 of the XSL-FO
  * Standard.
@@ -165,6 +162,12 @@ public class BlockContainer extends FObj {
         return this.span;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 02bf291e14437ae4ca6289400942eac2ef92220f..12a21e02279cad0cf6d27d5dfbe110e3a1fb9fed 100644 (file)
@@ -50,9 +50,6 @@
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-
 // FOP
 import org.apache.fop.fo.CharIterator;
 import org.apache.fop.fo.FONode;
@@ -67,7 +64,6 @@ import org.apache.fop.fo.properties.CommonMarginInline;
 import org.apache.fop.fo.properties.CommonRelativePosition;
 import org.apache.fop.apps.FOPException;
 import org.apache.fop.area.inline.InlineArea;
-import org.apache.fop.layoutmgr.LeafNodeLayoutManager;
 
 /**
  * This class represents the flow object 'fo:character'. Its use is defined by
@@ -164,6 +160,12 @@ public class Character extends FObj {
         // But what it the character is ignored due to white space handling?
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 668fc794e84349c4708669e6fe29d815f46f4482..a5fafe7a99503d21161f032609647ea2c0efa1fa 100644 (file)
@@ -63,14 +63,12 @@ import org.apache.fop.fo.properties.Scaling;
 import org.apache.fop.image.ImageFactory;
 import org.apache.fop.image.FopImage;
 import org.apache.fop.area.inline.InlineArea;
-import org.apache.fop.layoutmgr.LeafNodeLayoutManager;
 import org.apache.fop.layoutmgr.TraitSetter;
 import org.apache.fop.area.inline.Image;
 import org.apache.fop.area.inline.Viewport;
 import org.apache.fop.datatypes.Length;
 
 // Java
-import java.util.List;
 import java.awt.geom.Rectangle2D;
 
 /**
@@ -270,10 +268,19 @@ public class ExternalGraphic extends FObj {
         placement = new Rectangle2D.Float(xoffset, yoffset, cwidth, cheight);
     }
 
+    /**
+     * @return the ViewHeight (in millipoints??)
+     */
     public int getViewHeight() {
         return viewHeight;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 8ee72fd6137c17e7b8c8d9c652889f19bd269252..9bb2356f75d6866c27d8d5ebca1d3d470a7bcc6b 100644 (file)
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-import java.util.ArrayList;
-
 // XML
 import org.xml.sax.Attributes;
 
@@ -66,9 +62,6 @@ import org.apache.fop.fo.properties.CommonBackground;
 import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonMarginInline;
 import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.layoutmgr.LayoutManager;
-import org.apache.fop.layoutmgr.LeafNodeLayoutManager;
-import org.apache.fop.area.inline.InlineArea;
 
 /**
  * Class modelling the fo:inline-container object. See Sec. 6.6.8 of the XSL-FO
@@ -127,6 +120,12 @@ public class InlineContainer extends FObj {
         return true;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index e04c1abdc915da7056141a92bef66d2defebff8b..b8c9f77e10d5d68a3ddc5396ad7e3587255077e5 100644 (file)
@@ -53,7 +53,6 @@ package org.apache.fop.fo.flow;
 // FOP
 import java.awt.geom.Point2D;
 import java.awt.geom.Rectangle2D;
-import java.util.List;
 
 import org.apache.fop.area.inline.ForeignObject;
 import org.apache.fop.area.inline.Viewport;
@@ -66,7 +65,6 @@ import org.apache.fop.fo.properties.DisplayAlign;
 import org.apache.fop.fo.properties.Overflow;
 import org.apache.fop.fo.properties.Scaling;
 import org.apache.fop.fo.properties.TextAlign;
-import org.apache.fop.layoutmgr.LeafNodeLayoutManager;
 import org.w3c.dom.Document;
 
 /**
@@ -357,6 +355,12 @@ public class InstreamForeignObject extends FObj {
 
 */
 
+/**
+ * This is a hook for an FOTreeVisitor subclass to be able to access
+ * this object.
+ * @param fotv the FOTreeVisitor subclass that can access this object.
+ * @see org.apache.fop.fo.FOTreeVisitor
+ */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 4e672d14a86aa9208e6a08eefa018abc356c54b9..945b8eb1e03c6864e834049982618b7a88b640c7 100644 (file)
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-
 // FOP
-import org.apache.fop.area.Trait;
-import org.apache.fop.area.inline.FilledArea;
 import org.apache.fop.area.inline.InlineArea;
-import org.apache.fop.area.inline.Space;
-import org.apache.fop.area.inline.Word;
 import org.apache.fop.datatypes.ColorType;
 import org.apache.fop.datatypes.Length;
 import org.apache.fop.datatypes.PercentLength;
@@ -75,13 +68,7 @@ import org.apache.fop.fo.FOTreeControl;
 import org.apache.fop.fonts.Font;
 import org.apache.fop.fo.properties.CommonMarginInline;
 import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.layoutmgr.ContentLayoutManager;
-import org.apache.fop.layoutmgr.InlineStackingLayoutManager;
-import org.apache.fop.layoutmgr.LMiter;
-import org.apache.fop.layoutmgr.LayoutContext;
-import org.apache.fop.layoutmgr.LeafNodeLayoutManager;
 import org.apache.fop.layoutmgr.MinOptMax;
-import org.apache.fop.util.CharUtilities;
 
 /**
  * Class modelling fo:leader object. See Sec. 6.6.9 of the XSL-FO Standard.
@@ -233,6 +220,13 @@ public class Leader extends FObjMixed {
     public int getPatternWidth() {
         return patternWidth;
     }
+
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index c33b1ae88fcedf3915dc3fd315b8a9176fc2a108..af495be988d7d2d9d2d695dcd06d77bcb91ec41a 100644 (file)
@@ -50,9 +50,6 @@
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-
 // FOP
 import org.apache.fop.apps.FOPException;
 import org.apache.fop.datatypes.ColorType;
@@ -65,7 +62,6 @@ import org.apache.fop.fo.properties.CommonBackground;
 import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonMarginBlock;
 import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.layoutmgr.list.ListBlockLayoutManager;
 
 /**
  * Class modelling the fo:list-block object. See Sec. 6.8.2 of the XSL-FO
@@ -151,6 +147,12 @@ public class ListBlock extends FObj {
         return true;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 29998730a3af08f5d20b7d4db67f2af94987516e..f45e47a0e1351ff9e97fae53852bceb5f9d4aa13 100644 (file)
@@ -104,6 +104,12 @@ public class ListItemBody extends FObj {
         return true;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index e3bfb1cfa656111f80c2effff3d05cb84fdf38b5..a0dea63b94facb14d755d0221afbca78b9ff6342 100644 (file)
@@ -104,6 +104,12 @@ public class ListItemLabel extends FObj {
         return true;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 3e0b2484d93b987afafa7e6be3157d755ef278bd..e62a38f0ffd62b92e66dec4bf114aa8f8cc15b22 100644 (file)
@@ -50,9 +50,6 @@
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-
 // FOP
 import org.apache.fop.fo.FOTreeVisitor;
 import org.apache.fop.fo.properties.CommonAccessibility;
@@ -64,18 +61,11 @@ import org.apache.fop.fonts.Font;
 import org.apache.fop.fo.properties.CommonMarginInline;
 import org.apache.fop.fo.properties.CommonRelativePosition;
 import org.apache.fop.layout.TextState;
-import org.apache.fop.util.CharUtilities;
 
-import org.apache.fop.layoutmgr.LayoutManager;
-import org.apache.fop.layoutmgr.LeafNodeLayoutManager;
-import org.apache.fop.layoutmgr.LayoutContext;
-import org.apache.fop.area.inline.InlineArea;
-import org.apache.fop.area.inline.Word;
 import org.apache.fop.datatypes.ColorType;
 import org.apache.fop.fo.FONode;
 import org.apache.fop.fo.FObj;
 import org.apache.fop.fo.FOInputHandler;
-import org.apache.fop.area.Trait;
 
 /**
  * Class modelling the fo:page-number object. See Sec. 6.6.10 of the XSL-FO
@@ -156,10 +146,19 @@ public class PageNumber extends FObj {
 
     }
 
+    /**
+     * @return the FontState object for this PageNumber
+     */
     public Font getFontState() {
         return fontState;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index cbde1b202d04ebaab17ee6246798ddf71f34751b..3bd69a79b072c7d428ad3682e93d3fc2a1ba78db 100644 (file)
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-
 // FOP
 import org.apache.fop.area.PageViewport;
-import org.apache.fop.area.Resolveable;
 import org.apache.fop.area.Trait;
 import org.apache.fop.area.inline.InlineArea;
 import org.apache.fop.area.inline.UnresolvedPageNumber;
@@ -74,11 +70,7 @@ import org.apache.fop.fonts.Font;
 import org.apache.fop.fo.properties.CommonMarginInline;
 import org.apache.fop.fo.properties.CommonRelativePosition;
 import org.apache.fop.layout.TextState;
-import org.apache.fop.layoutmgr.LayoutContext;
-import org.apache.fop.layoutmgr.LayoutManager;
 import org.apache.fop.layoutmgr.LayoutProcessor;
-import org.apache.fop.layoutmgr.LeafNodeLayoutManager;
-import org.apache.fop.layoutmgr.PositionIterator;
 import org.apache.fop.util.CharUtilities;
 
 /**
@@ -112,7 +104,7 @@ public class PageNumberCitation extends FObj {
     }
 
     /**
-     * @param st StuctureHandler object to set
+     * @param foih the FOInputHandler object to set
      */
     public void setFOInputHandler(FOInputHandler foih) {
         super.setFOInputHandler(foih);
index 5a3c65d5f3a0e7f27e4b65764b906eee1eabba30..93e102143fcc614f3b5c870f08c4d9a104e3d1d8 100644 (file)
@@ -55,10 +55,7 @@ import org.apache.fop.apps.FOPException;
 import org.apache.fop.fo.FONode;
 import org.apache.fop.fo.FObjMixed;
 import org.apache.fop.fo.FOTreeVisitor;
-import org.apache.fop.layoutmgr.RetrieveMarkerLayoutManager;
-import org.xml.sax.Attributes;
-
-import java.util.List;
+ import org.xml.sax.Attributes;
 
 /**
  * The retrieve-marker formatting object.
@@ -107,6 +104,12 @@ public class RetrieveMarker extends FObjMixed {
         return retrieveBoundary;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index d1a658504a59c4e1706a8f7729b4b71ed8b30a92..12be61d95dc29e9691ad3e3bb15a155efc516474 100644 (file)
@@ -52,7 +52,6 @@ package org.apache.fop.fo.flow;
 
 // Java
 import java.util.ArrayList;
-import java.util.List;
 
 // FOP
 import org.apache.fop.datatypes.ColorType;
@@ -69,7 +68,6 @@ import org.apache.fop.fo.properties.CommonBackground;
 import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonMarginBlock;
 import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.layoutmgr.table.TableLayoutManager;
 
 /**
  * Class modelling the fo:table object. See Sec. 6.7.3 of the XSL-FO Standard.
@@ -216,6 +214,12 @@ public class Table extends FObj {
         return tableFooter;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index af9d0a379e0d5be87f1a075f60d2e6ed3bbb8bea..a1588c24909bee12b4971e25387205250075630e 100644 (file)
@@ -50,9 +50,6 @@
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-
 // FOP
 import org.apache.fop.apps.FOPException;
 import org.apache.fop.datatypes.ColorType;
@@ -65,7 +62,6 @@ import org.apache.fop.fo.properties.CommonAural;
 import org.apache.fop.fo.properties.CommonBackground;
 import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.layoutmgr.table.Body;
 
 /**
  * Class modelling the fo:table-body object. See Sec. 6.7.8 of the XSL-FO
@@ -117,6 +113,12 @@ public class TableBody extends FObj {
         return true;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index df32f212a0752751e26a8492e59e4c418a50c474..fb568967ea21b32f85b41b10036e388777842d74 100644 (file)
@@ -50,9 +50,6 @@
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-
 // XML
 import org.xml.sax.Attributes;
 
@@ -70,7 +67,6 @@ import org.apache.fop.fo.properties.CommonAural;
 import org.apache.fop.fo.properties.CommonBackground;
 import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.layoutmgr.table.Cell;
 
 /**
  * Class modelling the fo:table-cell object. See Sec. 6.7.10 of the XSL-FO
@@ -380,6 +376,12 @@ public class TableCell extends FObj {
         return true;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 39d5734419270f3a60cfc279a22e477cec315a3c..bf3ea44100814edecdc799b3e6359d11f9104c7c 100644 (file)
@@ -168,6 +168,12 @@ public class TableColumn extends FObj {
         setup = true;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index f8c9fc0d83f1af962de1609f9c19e727618231a8..ddb91afceb2804e6538ac3e5ef2a6047a329140c 100644 (file)
@@ -50,9 +50,6 @@
  */
 package org.apache.fop.fo.flow;
 
-// Java
-import java.util.List;
-
 // FOP
 import org.apache.fop.datatypes.ColorType;
 import org.apache.fop.datatypes.KeepValue;
@@ -67,7 +64,6 @@ import org.apache.fop.fo.properties.CommonAural;
 import org.apache.fop.fo.properties.CommonBackground;
 import org.apache.fop.fo.properties.CommonBorderAndPadding;
 import org.apache.fop.fo.properties.CommonRelativePosition;
-import org.apache.fop.layoutmgr.table.Row;
 
 /**
  * Class modelling the fo:table-row object. See Sec. 6.7.9 of the XSL-FO
@@ -156,6 +152,12 @@ public class TableRow extends FObj {
         }
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 3f5f5e798cc4cef39baaa9c7342bfa82c66162e1..15b156e870d12d25b3922d68546402315537ec12 100644 (file)
@@ -52,7 +52,6 @@ package org.apache.fop.fo.pagination;
 
 // Java
 import java.util.ArrayList;
-import java.util.List;
 
 // XML
 import org.xml.sax.Attributes;
@@ -62,7 +61,6 @@ import org.apache.fop.fo.FONode;
 import org.apache.fop.fo.FObj;
 import org.apache.fop.fo.FOTreeVisitor;
 import org.apache.fop.apps.FOPException;
-import org.apache.fop.layoutmgr.FlowLayoutManager;
 
 /**
  * Class modelling the fo:flow object. See Sec. 6.4.18 in the XSL-FO Standard.
@@ -179,6 +177,12 @@ public class Flow extends FObj {
         return true;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index a75c793ae2e9c2ee982961f9ffa2ec089eb74575..10079df209a54b8f59f4ac4f710a351e0d630d08 100644 (file)
@@ -288,6 +288,12 @@ public abstract class Region extends FObj {
         return 0;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 133e14e89d2636937add6df3e60fd5027ab95937..02a1ef6a8f42e726f1f8f59418ba532ed18055e6 100644 (file)
@@ -110,6 +110,12 @@ public class RegionAfter extends RegionBA {
         return Region.AFTER;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index dae61c0f90db92fd599489d4f9ad69ffce69701e..ddeed18f90c2985a3d140fb4e7b993428fea2390 100644 (file)
@@ -115,6 +115,12 @@ public class RegionBefore extends RegionBA {
         return vpRect;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 6c56b964ecc162422f89b048ecae7e333f476157..056d22ee2e18678361dd951d35e67ce9a7e6430b 100644 (file)
@@ -171,6 +171,12 @@ public class RegionBody extends Region {
         return body;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 6034ec3c6227a6e51fda47575ec3a11f96fce85f..760873a998c71321df6d1d770e5b1f89cb7cf584 100644 (file)
@@ -111,6 +111,12 @@ public class RegionEnd extends RegionSE {
         return RegionReference.END;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index a8cf4d89d217152c069aa0e3f762c9da7620e3be..66b1e55af53e7d1b0f34e7f7906915e82213a198 100644 (file)
@@ -110,6 +110,12 @@ public class RegionStart extends RegionSE {
         return RegionReference.START;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index fcbb659c52fd9d7ca813b3cd0b8e258db7680b15..2d73df7279a791396ba8b28a23e2699daf6a0482 100644 (file)
@@ -271,6 +271,12 @@ public class SimplePageMaster extends FObj {
         return false;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index af5e59bf368ed3372c721da8c542a1c174bed49c..39c5d311783a477aa68be68e42ba57a41ec3a56e 100644 (file)
@@ -101,6 +101,12 @@ public class StaticContent extends Flow {
         return lm;
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }
index 917f30ac628d1e1702b5e3df8199215e4b10d4bf..94591c151c8f17428f10074eba2135465e6cd11b 100644 (file)
@@ -142,6 +142,12 @@ public class Title extends FObjMixed {
 
     }
 
+    /**
+     * This is a hook for an FOTreeVisitor subclass to be able to access
+     * this object.
+     * @param fotv the FOTreeVisitor subclass that can access this object.
+     * @see org.apache.fop.fo.FOTreeVisitor
+     */
     public void acceptVisitor(FOTreeVisitor fotv) {
         fotv.serveVisitor(this);
     }