diff options
author | Jordan Naftolin <jordan@apache.org> | 2000-06-28 18:02:52 +0000 |
---|---|---|
committer | Jordan Naftolin <jordan@apache.org> | 2000-06-28 18:02:52 +0000 |
commit | cbdf5b729207baebac40c928a1990162efd123c2 (patch) | |
tree | 09fc11e1f9a3797986a861b965a87f2fde15f25a /src/org/apache/fop/fo/pagination/Root.java | |
parent | b5013344d50ad696350115442d9066473621db69 (diff) | |
download | xmlgraphics-fop-cbdf5b729207baebac40c928a1990162efd123c2.tar.gz xmlgraphics-fop-cbdf5b729207baebac40c928a1990162efd123c2.zip |
removed unresolvedcitations
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193447 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/pagination/Root.java')
-rw-r--r-- | src/org/apache/fop/fo/pagination/Root.java | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/src/org/apache/fop/fo/pagination/Root.java b/src/org/apache/fop/fo/pagination/Root.java index 7c5a025bd..23546b083 100644 --- a/src/org/apache/fop/fo/pagination/Root.java +++ b/src/org/apache/fop/fo/pagination/Root.java @@ -75,8 +75,7 @@ public class Root extends FObj { } LayoutMasterSet layoutMasterSet; - Vector pageSequences; - Vector unresolvedCitations; + Vector pageSequences; protected Root(FObj parent, PropertyList propertyList) throws FOPException { @@ -116,31 +115,8 @@ public class Root extends FObj { { ((PageSequence) e.nextElement()).format(areaTree); } - - - if(unresolvedCitations != null) - { - Enumeration ec = unresolvedCitations.elements(); - while( ec.hasMoreElements() ) - { - ((PageNumberCitation)ec.nextElement()).resolvePageNumber(); - } - - // forward page number citations have been resolved here - // question now is how to apply this information to the document - - } - } - - - public void addUnresolvedCitation(Object x) - { - if(unresolvedCitations == null) - { - unresolvedCitations = new Vector(); - } - unresolvedCitations.add(x); - } + + } public void setLayoutMasterSet(LayoutMasterSet layoutMasterSet) { |