chord.project
Class AbstractStepCollection
java.lang.Object
chord.project.AbstractStepCollection
- All Implemented Interfaces:
- IStepCollection
- Direct Known Subclasses:
- StepCollectionForStatelessTask, StepCollectionForTaskWithState
public abstract class AbstractStepCollection
- extends java.lang.Object
- implements IStepCollection
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
name
protected java.lang.String name
consumedDataCollections
protected java.util.List<IDataCollection> consumedDataCollections
producedDataCollections
protected java.util.List<IDataCollection> producedDataCollections
producedCtrlCollections
protected java.util.List<ICtrlCollection> producedCtrlCollections
prescribingCollection
protected ICtrlCollection prescribingCollection
AbstractStepCollection
public AbstractStepCollection()
setName
public void setName(java.lang.String name)
- Description copied from interface:
IStepCollection
- Sets the name of this program analysis.
- Specified by:
setName in interface IStepCollection
- Parameters:
name - A name unique across all program analyses
included in a Chord project.
getName
public java.lang.String getName()
- Description copied from interface:
IStepCollection
- Provides the name of this program analysis.
- Specified by:
getName in interface IStepCollection
- Returns:
- The name of this program analysis.
setPrescribingCollection
public void setPrescribingCollection(ICtrlCollection c)
- Specified by:
setPrescribingCollection in interface IStepCollection
getPrescribingCollection
public ICtrlCollection getPrescribingCollection()
- Specified by:
getPrescribingCollection in interface IStepCollection
setConsumedDataCollections
public void setConsumedDataCollections(java.util.List<IDataCollection> c)
- Specified by:
setConsumedDataCollections in interface IStepCollection
getConsumedDataCollections
public java.util.List<IDataCollection> getConsumedDataCollections()
- Specified by:
getConsumedDataCollections in interface IStepCollection
setProducedDataCollections
public void setProducedDataCollections(java.util.List<IDataCollection> c)
- Specified by:
setProducedDataCollections in interface IStepCollection
getProducedDataCollections
public java.util.List<IDataCollection> getProducedDataCollections()
- Specified by:
getProducedDataCollections in interface IStepCollection
setProducedCtrlCollections
public void setProducedCtrlCollections(java.util.List<ICtrlCollection> c)
- Specified by:
setProducedCtrlCollections in interface IStepCollection
getProducedCtrlCollections
public java.util.List<ICtrlCollection> getProducedCtrlCollections()
- Specified by:
getProducedCtrlCollections in interface IStepCollection