fop 0.95

org.apache.fop.area
Class IDTracker

java.lang.Object
  extended by org.apache.fop.area.IDTracker

public class IDTracker
extends java.lang.Object

Used by the AreaTreeHandler to keep track of ID reference usage on a PageViewport level.


Constructor Summary
IDTracker()
           
 
Method Summary
 void addUnresolvedIDRef(java.lang.String idref, Resolvable res)
          Add an Resolvable object with an unresolved idref
 boolean alreadyResolvedID(java.lang.String id)
          Check if an ID has already been resolved
 void associateIDWithPageViewport(java.lang.String id, PageViewport pv)
          Tie a PageViewport with an ID found on a child area of the PV.
 java.util.List getPageViewportsContainingID(java.lang.String id)
          Get the list of page viewports that have an area with a given id.
 void signalIDProcessed(java.lang.String id)
          Signals that all areas for the formatting object with the given ID have been generated.
 void signalPendingID(java.lang.String id)
          This method tie an ID to the areaTreeHandler until this one is ready to be processed.
 void tryIDResolution(PageViewport pv)
          Tries to resolve all unresolved ID references on the given page.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IDTracker

public IDTracker()
Method Detail

associateIDWithPageViewport

public void associateIDWithPageViewport(java.lang.String id,
                                        PageViewport pv)
Tie a PageViewport with an ID found on a child area of the PV. Note that an area with a given ID may be on more than one PV, hence an ID may have more than one PV associated with it.

Parameters:
id - the property ID of the area
pv - a page viewport that contains the area with this ID

signalPendingID

public void signalPendingID(java.lang.String id)
This method tie an ID to the areaTreeHandler until this one is ready to be processed. This is used in page-number-citation-last processing so we know when an id can be resolved.

Parameters:
id - the id of the object being processed

signalIDProcessed

public void signalIDProcessed(java.lang.String id)
Signals that all areas for the formatting object with the given ID have been generated. This is used to determine when page-number-citation-last ref-ids can be resolved.

Parameters:
id - the id of the formatting object which was just finished

alreadyResolvedID

public boolean alreadyResolvedID(java.lang.String id)
Check if an ID has already been resolved

Parameters:
id - the id to check
Returns:
true if the ID has been resolved

tryIDResolution

public void tryIDResolution(PageViewport pv)
Tries to resolve all unresolved ID references on the given page.

Parameters:
pv - page viewport whose ID refs to resolve

getPageViewportsContainingID

public java.util.List getPageViewportsContainingID(java.lang.String id)
Get the list of page viewports that have an area with a given id.

Parameters:
id - the id to lookup
Returns:
the list of PageViewports

addUnresolvedIDRef

public void addUnresolvedIDRef(java.lang.String idref,
                               Resolvable res)
Add an Resolvable object with an unresolved idref

Parameters:
idref - the idref whose target id has not yet been located
res - the Resolvable object needing the idref to be resolved

fop 0.95

Copyright 1999-2008 The Apache Software Foundation. All Rights Reserved.