Hyades Datapool Specification

org.eclipse.hyades.execution.runtime.datapool
Interface IDatapoolEquivalenceClass

All Superinterfaces:
INamedElement
All Known Subinterfaces:
IDatapoolEquivalenceClass

public interface IDatapoolEquivalenceClass
extends INamedElement

An equivalence class is a logical grouping of records within a datapool. All records in an equivalence class have the same uniform length as records in all other equivalence classes associated with a single datapool. Note that each equivalence class is a named element with an associated name and ID.

See Also:
IDatapool, IDatapoolRecord

Method Summary
 IDatapoolRecord getRecord(int record)
          Access to the record contents at the specified zero based record index.
 int getRecordCount()
          The number of records in the equivalence class.
 
Methods inherited from interface org.eclipse.hyades.execution.runtime.datapool.INamedElement
getDescription, getId, getName
 

Method Detail

getRecordCount

public int getRecordCount()
The number of records in the equivalence class.

Returns:
The number of records in the equivalence class.

getRecord

public IDatapoolRecord getRecord(int record)
Access to the record contents at the specified zero based record index.

Parameters:
record - The record contents at the specified zero based record index.


Hyades DPL