Browse Source

removed unresolvedcitations


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193447 13f79535-47bb-0310-9956-ffa450edef68
tags/pre-columns
Jordan Naftolin 24 years ago
parent
commit
cbdf5b7292
1 changed files with 3 additions and 27 deletions
  1. 3
    27
      src/org/apache/fop/fo/pagination/Root.java

+ 3
- 27
src/org/apache/fop/fo/pagination/Root.java View File

@@ -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) {

Loading…
Cancel
Save