Uses of Interface
tip.util.Stringifier

Packages that use Stringifier
tip.cfg.dfa Provides a collection of data flow analyses for TIP programs. 
tip.display Provides classes for display ASTs and CFGs of TIP programs. 
tip.node Provides node classes for representing the TIP ASTs. 
tip.util Provides utility classes for the TIP compiler. 
 

Uses of Stringifier in tip.cfg.dfa
 

Classes in tip.cfg.dfa that implement Stringifier
 class ReachingDefinitionsAnalysis.AssignVarStmPointStringifier
           
 

Uses of Stringifier in tip.display
 

Classes in tip.display that implement Stringifier
 class NodeText<T extends Node>
          NodeText implements the Answer and Stringifier interfaces to support a custom textual representation of nodes.
 

Uses of Stringifier in tip.node
 

Methods in tip.node with parameters of type Stringifier
 String NodeList.toString(Stringifier<E> stringifier)
           
 

Uses of Stringifier in tip.util
 

Classes in tip.util that implement Stringifier
 class DefaultStringifier<T>
          DefaultStringifier implements the Stringifier by calling the Object.toString() method.
 

Methods in tip.util with parameters of type Stringifier
 String EqualityMap.toString(Collection<K> keySet, Stringifier<K> keyStringifier, Stringifier<V> valueStringifier)
          Returns a text representation of a subset of the keys in the map using the keyStringifier and valueStringifier.
 String EqualityMap.toString(Collection<K> keySet, Stringifier<K> keyStringifier, Stringifier<V> valueStringifier)
          Returns a text representation of a subset of the keys in the map using the keyStringifier and valueStringifier.
 String EqualitySet.toString(Stringifier<E> stringifier)
          Returns a text representation of the set using the stringifier.
 String EqualityMap.toString(Stringifier<K> keyStringifier, Stringifier<V> valueStringifier)
          Returns a text representation of the map using the keyStringifier and valueStringifier.
 String EqualityMap.toString(Stringifier<K> keyStringifier, Stringifier<V> valueStringifier)
          Returns a text representation of the map using the keyStringifier and valueStringifier.
 String Stringifiable.toString(Stringifier<T> stringifier)
          Returns a text representation using the stringifier.