Parcourir la 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 il y a 24 ans
Parent
révision
cbdf5b7292
1 fichiers modifiés avec 3 ajouts et 27 suppressions
  1. 3
    27
      src/org/apache/fop/fo/pagination/Root.java

+ 3
- 27
src/org/apache/fop/fo/pagination/Root.java Voir le fichier

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

Chargement…
Annuler
Enregistrer