Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
org.gnu.gtk.DataRow
public class DataRow
extends java.lang.Object
ListStore
and
TreeStore
.
To create a DataRow and add it to a store is pretty straight forward:
store.addRow(new DataRow() .add(name) .add(type) .add(icon));
Method Summary | |
DataRow |
|
Object |
|
List |
|
public DataRow add(Object aData)
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.
Adds a data to this row. This will fill the columns of the row sequentially: the first call is the first column, and so it goes.
- Parameters:
aData
- a data to be added to the row
- Returns:
- this DataRow. The reason why it returns this object is so you can make useful constructions, such as:
new DataRow() .add(name) .add(type) .add(icon)
public Object get(int aCol)
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.
Get the data at columnaCol
- Parameters:
aCol
- the column number, starting from 0.
- Returns:
- the data at that column
public List getAll()
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.
Get all data in this row.
- Returns:
- a List, with the data of each row.