| |
|
| java.lang.Object org.griphyn.cPlanner.visualize.WorkflowMeasurements
WorkflowMeasurements | public class WorkflowMeasurements (Code) | | A container object that stores the measurements for each site on which
the workflow was executed.
author: Karan Vahi version: $Revision: 50 $ |
Method Summary | |
public void | addMeasurement(String site, Measurement record) Add a Measurement to the store. | public List | getMeasurements(String site) Returns the list of Measurement objects corresponding to a
particular site.
Parameters: site - the site for which Measurements are required. | public Iterator | siteIterator() Returns an iterator to list of String site identifiers
for which data is available. | public void | sort() Sorts the records for each site. | public String | toString() Returns textual description of the object. |
WorkflowMeasurements | public WorkflowMeasurements()(Code) | | The default constructor.
|
addMeasurement | public void addMeasurement(String site, Measurement record)(Code) | | Add a Measurement to the store.
Parameters: site - the site for which the record is logged. Parameters: record - the Measurement record. |
getMeasurements | public List getMeasurements(String site)(Code) | | Returns the list of Measurement objects corresponding to a
particular site.
Parameters: site - the site for which Measurements are required. List |
siteIterator | public Iterator siteIterator()(Code) | | Returns an iterator to list of String site identifiers
for which data is available.
Iterator |
sort | public void sort()(Code) | | Sorts the records for each site.
|
toString | public String toString()(Code) | | Returns textual description of the object.
the textual description |
|
|
|