Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<IData> |
IDataProvider.getDataAtCurrentTime(java.lang.String feature)
This operation returns all of the data (as IData[*]) related to a particular feature for this provider at a specific time step.
|
Modifier and Type | Method and Description |
---|---|
IData |
IDataMatrix.getElement(int rowIndex,
int colIndex)
(non-Javadoc)
|
Modifier and Type | Method and Description |
---|---|
boolean |
IDataMatrix.setElement(int rowIndex,
int colIndex,
IData value) |
Constructor and Description |
---|
IDataMatrix(int rows,
int cols,
java.util.ArrayList<IData> elements)
The constructor, used for constructing a IDataMatrix from a set of IData.
|
Constructor and Description |
---|
GodfreyStrategy(int nRows,
int nCols,
int nAxial,
int nAssemblies,
java.util.ArrayList<IData> data,
java.util.ArrayList<IData> refData)
The constructor.
|
GodfreyStrategy(int nRows,
int nCols,
int nAxial,
int nAssemblies,
java.util.ArrayList<IData> data,
java.util.ArrayList<IData> refData)
The constructor.
|
GodfreyStrategy(SubStrategyFactory factory,
int nRows,
int nCols,
int nAxial,
int nAssemblies,
java.util.ArrayList<IData> data,
java.util.ArrayList<IData> refData)
The constructor.
|
GodfreyStrategy(SubStrategyFactory factory,
int nRows,
int nCols,
int nAxial,
int nAssemblies,
java.util.ArrayList<IData> data,
java.util.ArrayList<IData> refData)
The constructor.
|
Modifier and Type | Class and Description |
---|---|
class |
LWRData
A class that implements the IData interface.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<IData> |
LWRDataProvider.getDataAtCurrentTime(java.lang.String feature)
(non-Javadoc)
|
java.util.ArrayList<IData> |
LWRComponent.getDataAtCurrentTime(java.lang.String feature) |
java.util.ArrayList<IData> |
FeatureSet.getIData()
Returns the IDatas associated with the FeatureSet.
|
Modifier and Type | Method and Description |
---|---|
boolean |
FeatureSet.addIData(IData iData)
Adds IData to the list within the feature set.
|
Modifier and Type | Class and Description |
---|---|
class |
SFRData
A class that implements the IData interface; provides setters for the
particular sets of IData associated with this class.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<IData> |
FeatureSet.getData()
Returns all IData associated to the FeatureSet.
|
java.util.ArrayList<IData> |
SFRComponent.getDataAtCurrentTime(java.lang.String feature)
Returns all IData corresponding to the specified
features at the current time.
|
Modifier and Type | Method and Description |
---|---|
boolean |
FeatureSet.addIData(IData iData)
Adds IData to the list within the feature set.
|
Modifier and Type | Class and Description |
---|---|
class |
CSVData
This class is the implementation of IData and inherits from NiCEObject for
the PlotViewer tool.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<IData> |
CSVDataProvider.getDataAtCurrentTime(java.lang.String feature)
Returns the series of data at the set current time for a specified
feature, or null if data could not be found.
|
Modifier and Type | Method and Description |
---|---|
void |
CSVDataProvider.addData(double time,
IData data)
Adds a single data item at a specified time.
|
void |
CSVDataProvider.addData(IData data)
Adds a single data item with no specified time.
|
Modifier and Type | Method and Description |
---|---|
void |
CSVDataProvider.addDataSeries(double time,
java.util.List<IData> dataSeries)
Adds a data series to the data set at a specified time.
|
void |
CSVDataProvider.addDataSeries(java.util.List<IData> dataSeries)
Adds a data series with no specified time.
|