tip.cfg
Interface ICFGCollection

All Superinterfaces:
Iterable<ICFG>
All Known Implementing Classes:
CCFGCollection

public interface ICFGCollection
extends Iterable<ICFG>

ICFGCollection defines the interface for a collection of control flow graphs.

Author:
Johnni Winther, jw@brics.dk

Method Summary
 ICFG getCFG(String name)
          Returns the control flow graph in this collection with the given name.
 Collection<ICFG> getCFGs()
          Returns the collection of control flow graphs in this collection.
 
Methods inherited from interface java.lang.Iterable
iterator
 

Method Detail

getCFGs

Collection<ICFG> getCFGs()
Returns the collection of control flow graphs in this collection.

Returns:
the collection of control flow graphs in this collection

getCFG

ICFG getCFG(String name)
Returns the control flow graph in this collection with the given name.

Parameters:
name - the name of the control flow graph
Returns:
the control flow graph in this collection with the given name