org.axiondb.engine.rows
Class JoinedRow
java.lang.Object
org.axiondb.engine.rows.BaseRow
org.axiondb.engine.rows.JoinedRow
- All Implemented Interfaces:
- Row
- public class JoinedRow
- extends BaseRow
A Row
composed of zero or more Row
s,
joined together end-to-end.
- Version:
- $Revision: 1.3 $ $Date: 2004/09/09 23:47:43 $
JoinedRow
public JoinedRow()
addRow
public void addRow(Row row)
get
public Object get(int i)
- Description copied from interface:
Row
- Returns the value of the field at i (zero indexed).
isUpdated
public boolean isUpdated(int i)
markRowAsUpdated
public void markRowAsUpdated(int i)
set
public void set(int i,
Object val)
- Description copied from interface:
Row
- Sets the value of the field at i (zero indexed). This operation is
optional.
size
public int size()
- Description copied from interface:
Row
- Returns the number of fields in me.
getRow
public Row getRow(int i)