| |
|
| java.lang.Object org.tigris.scarab.util.TableModel
All known Subclasses: org.tigris.scarab.reports.ReportTableModel,
TableModel | abstract public class TableModel (Code) | | A model that provides for an application to present a set of tabular data.
Can be used along with a velocity macro to create a table.
author: John D. McNally version: $Id: TableModel.java 7502 2003-03-28 00:02:24Z jon $ |
Inner Class :public class ColumnHeading extends Heading | |
Inner Class :public class RowHeading extends Heading | |
Inner Class :public class Heading | |
getColumnCount | abstract public int getColumnCount()(Code) | | |
getHeadings | public List getHeadings()(Code) | | Get the value of headings.
value of headings. |
getRowCount | abstract public int getRowCount()(Code) | | |
getRows | public List getRows()(Code) | | Get the value of rows.
value of rows. |
isColumnHeading | public static boolean isColumnHeading(Object obj)(Code) | | |
setHeadings | public void setHeadings(List v)(Code) | | Set the value of headings.
Parameters: v - Value to assign to headings. |
setRows | public void setRows(List v)(Code) | | Set the value of rows.
Parameters: v - Value to assign to rows. |
|
|
|