UnitStorage =========== .. java:package:: fr.inria.tapenade.representation :noindex: .. java:type:: public final class UnitStorage Storage object to store some piece of information for each Unit of a given CallGraph. Constructors ------------ UnitStorage ^^^^^^^^^^^ .. java:constructor:: public UnitStorage(CallGraph callGraph) :outertype: UnitStorage Creates a new UnitStorage for all Unit's of the given "callGraph". Each cell is initialized to null. Methods ------- retrieve ^^^^^^^^ .. java:method:: public T retrieve(Unit unit) :outertype: UnitStorage Retrieves the value of the info attached to "unit". store ^^^^^ .. java:method:: public void store(Unit unit, T value) :outertype: UnitStorage Stores "value" into the info attached to "unit". toString ^^^^^^^^ .. java:method:: @Override public String toString() :outertype: UnitStorage