Revision: 7318
Author: victormote
Date: 2006-05-30 11:18:54 -0700 (Tue, 30 May 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7318&view=rev
Log Message:
-----------
Conform to axsl change: Remove pending footnote concepts from the Page. These should be tracked in the layout system.
Modified Paths:
--------------
trunk/foray/foray-areatree/src/java/org/foray/area/PageRA.java
Modified: trunk/foray/foray-areatree/src/java/org/foray/area/PageRA.java
===================================================================
--- trunk/foray/foray-areatree/src/java/org/foray/area/PageRA.java 2006-05-30 18:18:47 UTC (rev 7317)
+++ trunk/foray/foray-areatree/src/java/org/foray/area/PageRA.java 2006-05-30 18:18:54 UTC (rev 7318)
@@ -30,7 +30,6 @@
import org.axsl.areaW.AreaWException;
import org.axsl.common.Constants;
import org.axsl.foR.FObj;
-import org.axsl.foR.fo.FootnoteBody;
import org.axsl.foR.fo.Marker;
import org.axsl.foR.fo.PageSequence;
import org.axsl.foR.fo.Region;
@@ -57,8 +56,6 @@
protected int pageNumber = 0;
protected String formattedPageNumber;
- private ArrayList footnotes = null;
-
private ArrayList markers = null;
PageRA(SimplePageMaster spm, PageCollection areaTree) {
@@ -161,25 +158,6 @@
return traitGeneratedBy().traitPageWidth();
}
- public List getPendingFootnotes() {
- return footnotes;
- }
-
- public void setPendingFootnotes(List footnotes) {
- if (footnotes instanceof ArrayList) {
- this.footnotes = (ArrayList) footnotes;
- } else {
- this.footnotes = new ArrayList(footnotes);
- }
- }
-
- public void addPendingFootnote(FootnoteBody fb) {
- if (footnotes == null) {
- footnotes = new ArrayList();
- }
- footnotes.add(fb);
- }
-
public void registerMarker(Marker marker) {
markers.add(marker);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|