aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow
diff options
context:
space:
mode:
authorGlen Mazza <gmazza@apache.org>2004-08-04 22:50:59 +0000
committerGlen Mazza <gmazza@apache.org>2004-08-04 22:50:59 +0000
commite4b7d830f70731417263e1f6c17ec2f45408afa7 (patch)
tree496983d9621bdf6d50ba8bf20dd2b5c91dbe48e8 /src/java/org/apache/fop/fo/flow
parentb758fac13e887dba43e6ba9256e798abb68dd984 (diff)
downloadxmlgraphics-fop-e4b7d830f70731417263e1f6c17ec2f45408afa7.tar.gz
xmlgraphics-fop-e4b7d830f70731417263e1f6c17ec2f45408afa7.zip
More detaching from AddLMVisitor those FO's which don't/don't currently
generate areas. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197855 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow')
-rw-r--r--src/java/org/apache/fop/fo/flow/FootnoteBody.java5
-rw-r--r--src/java/org/apache/fop/fo/flow/ListItemBody.java10
-rw-r--r--src/java/org/apache/fop/fo/flow/ListItemLabel.java10
-rw-r--r--src/java/org/apache/fop/fo/flow/Marker.java5
-rw-r--r--src/java/org/apache/fop/fo/flow/TableColumn.java10
5 files changed, 0 insertions, 40 deletions
diff --git a/src/java/org/apache/fop/fo/flow/FootnoteBody.java b/src/java/org/apache/fop/fo/flow/FootnoteBody.java
index 1674ecc31..0b131896d 100644
--- a/src/java/org/apache/fop/fo/flow/FootnoteBody.java
+++ b/src/java/org/apache/fop/fo/flow/FootnoteBody.java
@@ -26,7 +26,6 @@ import org.xml.sax.SAXParseException;
// FOP
import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FObj;
-import org.apache.fop.layoutmgr.AddLMVisitor;
/**
* Class modelling the fo:footnote-body object. See Sec. 6.10.4 of the XSL-FO
@@ -56,10 +55,6 @@ public class FootnoteBody extends FObj {
getFOInputHandler().startFootnoteBody(this);
}
- public void acceptVisitor(AddLMVisitor aLMV) {
- aLMV.serveFootnoteBody(this);
- }
-
protected void endOfNode() throws SAXParseException {
super.endOfNode();
getFOInputHandler().endFootnoteBody(this);
diff --git a/src/java/org/apache/fop/fo/flow/ListItemBody.java b/src/java/org/apache/fop/fo/flow/ListItemBody.java
index 6044ef20c..59847758a 100644
--- a/src/java/org/apache/fop/fo/flow/ListItemBody.java
+++ b/src/java/org/apache/fop/fo/flow/ListItemBody.java
@@ -21,7 +21,6 @@ package org.apache.fop.fo.flow;
// FOP
import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FObj;
-import org.apache.fop.layoutmgr.AddLMVisitor;
import org.apache.fop.fo.properties.CommonAccessibility;
/**
@@ -61,15 +60,6 @@ public class ListItemBody extends FObj {
return true;
}
- /**
- * This is a hook for the AddLMVisitor class to be able to access
- * this object.
- * @param aLMV the AddLMVisitor object that can access this object.
- */
- public void acceptVisitor(AddLMVisitor aLMV) {
- aLMV.serveListItemBody(this);
- }
-
public String getName() {
return "fo:list-item-body";
}
diff --git a/src/java/org/apache/fop/fo/flow/ListItemLabel.java b/src/java/org/apache/fop/fo/flow/ListItemLabel.java
index 81b631282..13fd0058b 100644
--- a/src/java/org/apache/fop/fo/flow/ListItemLabel.java
+++ b/src/java/org/apache/fop/fo/flow/ListItemLabel.java
@@ -25,7 +25,6 @@ import org.xml.sax.SAXParseException;
// FOP
import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FObj;
-import org.apache.fop.layoutmgr.AddLMVisitor;
import org.apache.fop.fo.properties.CommonAccessibility;
/**
@@ -73,15 +72,6 @@ public class ListItemLabel extends FObj {
return true;
}
- /**
- * This is a hook for the AddLMVisitor class to be able to access
- * this object.
- * @param aLMV the AddLMVisitor object that can access this object.
- */
- public void acceptVisitor(AddLMVisitor aLMV) {
- aLMV.serveListItemLabel(this);
- }
-
protected void endOfNode() throws SAXParseException {
super.endOfNode();
getFOInputHandler().endListLabel();
diff --git a/src/java/org/apache/fop/fo/flow/Marker.java b/src/java/org/apache/fop/fo/flow/Marker.java
index a090d78fc..767dfbb8b 100644
--- a/src/java/org/apache/fop/fo/flow/Marker.java
+++ b/src/java/org/apache/fop/fo/flow/Marker.java
@@ -25,7 +25,6 @@ import org.xml.sax.SAXParseException;
// FOP
import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FObjMixed;
-import org.apache.fop.layoutmgr.AddLMVisitor;
/**
* Marker formatting object.
@@ -63,10 +62,6 @@ public class Marker extends FObjMixed {
return markerClassName;
}
- public void acceptVisitor(AddLMVisitor aLMV) {
- aLMV.serveMarker(this);
- }
-
public String getName() {
return "fo:marker";
}
diff --git a/src/java/org/apache/fop/fo/flow/TableColumn.java b/src/java/org/apache/fop/fo/flow/TableColumn.java
index 172b15475..d7ff1dbcf 100644
--- a/src/java/org/apache/fop/fo/flow/TableColumn.java
+++ b/src/java/org/apache/fop/fo/flow/TableColumn.java
@@ -28,7 +28,6 @@ import org.apache.fop.datatypes.ColorType;
import org.apache.fop.datatypes.Length;
import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FObj;
-import org.apache.fop.layoutmgr.AddLMVisitor;
import org.apache.fop.fo.properties.CommonBackground;
import org.apache.fop.fo.properties.CommonBorderAndPadding;
@@ -123,15 +122,6 @@ public class TableColumn extends FObj {
initialized = true;
}
- /**
- * This is a hook for the AddLMVisitor class to be able to access
- * this object.
- * @param aLMV the AddLMVisitor object that can access this object.
- */
- public void acceptVisitor(AddLMVisitor aLMV) {
- aLMV.serveTableColumn(this);
- }
-
protected void endOfNode() throws SAXParseException {
getFOInputHandler().endColumn(this);
}