]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
style/javadoc changes only
authorWilliam Victor Mote <vmote@apache.org>
Mon, 1 Sep 2003 13:42:35 +0000 (13:42 +0000)
committerWilliam Victor Mote <vmote@apache.org>
Mon, 1 Sep 2003 13:42:35 +0000 (13:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196881 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/ToBeImplementedElement.java
src/java/org/apache/fop/fo/Unknown.java
src/java/org/apache/fop/fo/UnknownXMLObj.java
src/java/org/apache/fop/fo/XMLElement.java
src/java/org/apache/fop/fo/XMLObj.java

index 2db857bdaa58f07c291c42fa959b1c60ecf318e7..9e655b95459e333bfb748421f091b899f9b3345d 100644 (file)
@@ -67,6 +67,12 @@ public class ToBeImplementedElement extends FObj {
                              + "\" is not yet implemented.");
     }
 
+    /**
+     * 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 fd6e0b4b2516175ea0936248db044e60b9e12381..218f4e18dfab73a8b9a3681143e595d21de2913c 100644 (file)
@@ -84,6 +84,12 @@ public class Unknown extends FONode {
         getLogger().debug("Layout Unknown element");
     }
 
+    /**
+     * 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 7e6577fc80337fea866a889847ee29a9a60526fb..457cbdb72eae857bc13f474f48711750c5765d84 100644 (file)
@@ -118,6 +118,12 @@ public class UnknownXMLObj extends XMLObj {
         super.addCharacters(data, start, length);
     }
 
+    /**
+     * 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 08c91c2d3bd82f3d18bb5ff4859266809a13d966..7aa5fd5122335801bda81e3153ada169513c7bbf 100644 (file)
@@ -86,6 +86,12 @@ public class XMLElement extends XMLObj {
         return namespace;
     }
 
+    /**
+     * 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 c499748a6147e5583f28f3d7d1863d774f237c1f..e82db27127d49b5f0b02fe457973c679c857b522 100644 (file)
@@ -231,6 +231,12 @@ public abstract class XMLObj extends FONode {
         element.appendChild(text);
     }
 
+    /**
+     * 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);
     }