| thinwire.util.Grid
Grid | public interface Grid (Code) | | An interface used to create a local data source. A Grid is a 2 dimensional table of values.
author: Joshua J. Gertzen |
Inner Class :public interface Column extends List<Object> | |
Inner Class :public interface Row extends List<Object> | |
Method Summary | |
public List<C> | getColumns() Get the Columns belonging to this Grid. | public List<R> | getRows() Get the Rows belonging to this Grid. |
getColumns | public List<C> getColumns()(Code) | | Get the Columns belonging to this Grid.
a list of all the columns in the Grid. |
getRows | public List<R> getRows()(Code) | | Get the Rows belonging to this Grid.
a list of all the rows in the Grid. |
|
|