aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/pagination
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2005-05-27 08:37:33 +0000
committerJeremias Maerki <jeremias@apache.org>2005-05-27 08:37:33 +0000
commit99bce5520b53f53f5d63a948073b85d536b9b3c6 (patch)
tree023b56db6d4994443ed87112bf1c3ba063c8bc82 /src/java/org/apache/fop/fo/pagination
parenta65a4d0db94f3044ebe599fa7903ad008900f8af (diff)
downloadxmlgraphics-fop-99bce5520b53f53f5d63a948073b85d536b9b3c6.tar.gz
xmlgraphics-fop-99bce5520b53f53f5d63a948073b85d536b9b3c6.zip
Cleanup
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198694 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/pagination')
-rw-r--r--src/java/org/apache/fop/fo/pagination/Flow.java17
1 files changed, 2 insertions, 15 deletions
diff --git a/src/java/org/apache/fop/fo/pagination/Flow.java b/src/java/org/apache/fop/fo/pagination/Flow.java
index 81e079cb8..616f9409a 100644
--- a/src/java/org/apache/fop/fo/pagination/Flow.java
+++ b/src/java/org/apache/fop/fo/pagination/Flow.java
@@ -1,5 +1,5 @@
/*
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-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.
@@ -18,10 +18,6 @@
package org.apache.fop.fo.pagination;
-// Java
-import java.util.ArrayList;
-import java.util.List;
-
import org.xml.sax.Locator;
import org.apache.fop.apps.FOPException;
@@ -29,22 +25,15 @@ import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FObj;
import org.apache.fop.fo.PropertyList;
import org.apache.fop.fo.ValidationException;
-import org.apache.fop.layoutmgr.FlowLayoutManager;
/**
* Class modelling the fo:flow object.
- * @todo check need for markerSnapshot, contentWidth
*/
public class Flow extends FObj {
// The value of properties relevant for fo:flow.
private String flowName;
// End of property values
- /**
- * ArrayList to store snapshot
- */
- private ArrayList markerSnapshot;
-
/** used for FO validation */
private boolean blockItemFound = false;
@@ -126,9 +115,7 @@ public class Flow extends FObj {
return true;
}
- /**
- * Return "flow-name" property.
- */
+ /** @return "flow-name" property. */
public String getFlowName() {
return flowName;
}