A record that combines related records. E. g. a repair request (primary record) is made by a customer (secondary record).
public interface MetaRecord {public Object getValue(int column);
public String getColumnName(int column);
public Record getRecords();
}
Inheritance Path. org.kaiwitte.workbench.data.MetaRecord
Synopsis: public String getColumnName(int column);
Parameters
column
the column id
the name of the column
Returns the name of the column.
Synopsis: public Record[] getRecords();
Parameters
the records that back this instance
Returns all records. The first one in the array is the primary one (e. g. of type repair request).
Synopsis: public Object getValue(int column);
Parameters
column
the column
the value at the specified column
Exceptions
IndexOutOfBoundsException
iff the column value is
> the associated org.kaiwitte.workbench.data.MetaScheme
's length - 1 or < 0,
Returns the value at the specified column.