aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/pagination/Flow.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/fo/pagination/Flow.java')
-rw-r--r--src/java/org/apache/fop/fo/pagination/Flow.java39
1 files changed, 1 insertions, 38 deletions
diff --git a/src/java/org/apache/fop/fo/pagination/Flow.java b/src/java/org/apache/fop/fo/pagination/Flow.java
index 09cafb357..33f42ca90 100644
--- a/src/java/org/apache/fop/fo/pagination/Flow.java
+++ b/src/java/org/apache/fop/fo/pagination/Flow.java
@@ -23,7 +23,6 @@ import java.util.ArrayList;
import java.util.List;
// XML
-import org.xml.sax.Attributes;
import org.xml.sax.Locator;
import org.xml.sax.SAXParseException;
@@ -47,11 +46,6 @@ public class Flow extends FObj {
*/
private ArrayList markerSnapshot;
- /**
- * Content-width of current column area during layout
- */
- private int contentWidth;
-
/** used for FO validation */
private boolean blockItemFound = false;
@@ -115,22 +109,6 @@ public class Flow extends FObj {
}
/**
- * @see org.apache.fop.fo.FObj#addProperties
- */
- protected void addProperties(Attributes attlist) throws SAXParseException {
- super.addProperties(attlist);
-
- // check flow_name property
- String flowName = getPropString(PR_FLOW_NAME);
-
- if (flowName == null || flowName.equals("")) {
- missingPropertyError("flow-name");
- }
-
- getFOEventHandler().startFlow(this);
- }
-
- /**
* @see org.apache.fop.fo.FONode#validateChildNode(Locator, String, String)
* XSL Content Model: marker* (%block;)+
*/
@@ -148,21 +126,6 @@ public class Flow extends FObj {
}
/**
- * @param contentWidth content width of this flow, in millipoints (??)
- */
- protected void setContentWidth(int contentWidth) {
- this.contentWidth = contentWidth;
- }
-
- /**
- * @return the content width of this flow (really of the region
- * in which it is flowing), in millipoints (??).
- */
- public int getContentWidth() {
- return this.contentWidth;
- }
-
- /**
* @return true (Flow can generate reference areas)
*/
public boolean generatesReferenceAreas() {
@@ -170,7 +133,7 @@ public class Flow extends FObj {
}
/**
- * @return the name of this flow
+ * Return "flow-name" property.
*/
public String getFlowName() {
return flowName;