Uses of Interface
org.ujac.util.table.Table

Packages that use Table
org.ujac.print.tag   
org.ujac.util.table   
org.ujac.web.tag   
 

Uses of Table in org.ujac.print.tag
 

Methods in org.ujac.print.tag that return Table
 Table AddRowTag.getTable()
          Gets the table to fill the values in.
 

Uses of Table in org.ujac.util.table
 

Classes in org.ujac.util.table that implement Table
 class BaseTable
          Name: BaseTable
Description: Basic table implementation.
 class BeanTable
          Name: BeanTable
Description: A table implementation acting as an interface for a list of beans.
 class DataTable
          Name: DataTable
Description: A class holding table data.
 class FilteredTable
          Name: FilteredTable
Description: A table implementation filtering nested tables according to a given table definition.
 class PivotTable
          Name: PivotTable
Description: A table implementation, generating pivot tables out of ordered data tables.
 class ReportTable
          Name: ReportTable
Description: A table implementation serving simple reports with groups, functions, etc.
 class ResultSetTable
          Name: ResultSetTable
Description: A table implementation, serving data retrieved from a result set.
 

Fields in org.ujac.util.table declared as Table
protected  Table BaseRow.table
          The table, which contains this row.
 

Methods in org.ujac.util.table that return Table
 Table FilteredTable.addBoolean(String name, boolean value)
           
 Table ResultSetTable.addBoolean(String name, boolean value)
          Adds a column of type boolean to the table and sets its initial value at the first row.
 Table Table.addBoolean(String name, boolean value)
          Adds a column of type boolean to the table and sets its initial value at the first row.
 Table ReportTable.addBoolean(String name, boolean value)
           
 Table DataTable.addBoolean(String name, boolean value)
          Adds a column of type boolean to the table and sets its initial value at the first row.
 Table FilteredTable.addDate(String name, Date value)
           
 Table ResultSetTable.addDate(String name, Date value)
          Adds a column of type Date to the table and sets its initial value at the first row.
 Table Table.addDate(String name, Date value)
          Adds a column of type Date to the table and sets its initial value at the first row.
 Table ReportTable.addDate(String name, Date value)
           
 Table DataTable.addDate(String name, Date value)
          Adds a column of type Date to the table and sets its initial value at the first row.
 Table FilteredTable.addDouble(String name, double value)
           
 Table ResultSetTable.addDouble(String name, double value)
          Adds a column of type double to the table and sets its initial value at the first row.
 Table Table.addDouble(String name, double value)
          Adds a column of type double to the table and sets its initial value at the first row.
 Table ReportTable.addDouble(String name, double value)
           
 Table DataTable.addDouble(String name, double value)
          Adds a column of type double to the table and sets its initial value at the first row.
 Table FilteredTable.addFloat(String name, float value)
           
 Table ResultSetTable.addFloat(String name, float value)
          Adds a column of type float to the table and sets its initial value at the first row.
 Table Table.addFloat(String name, float value)
          Adds a column of type float to the table and sets its initial value at the first row.
 Table ReportTable.addFloat(String name, float value)
           
 Table DataTable.addFloat(String name, float value)
          Adds a column of type float to the table and sets its initial value at the first row.
 Table FilteredTable.addInt(String name, int value)
           
 Table ResultSetTable.addInt(String name, int value)
          Adds a column of type int to the table and sets its initial value at the first row.
 Table Table.addInt(String name, int value)
          Adds a column of type int to the table and sets its initial value at the first row.
 Table ReportTable.addInt(String name, int value)
           
 Table DataTable.addInt(String name, int value)
          Adds a column of type int to the table and sets its initial value at the first row.
 Table FilteredTable.addLong(String name, long value)
           
 Table ResultSetTable.addLong(String name, long value)
          Adds a column of type long to the table and sets its initial value at the first row.
 Table Table.addLong(String name, long value)
          Adds a column of type long to the table and sets its initial value at the first row.
 Table ReportTable.addLong(String name, long value)
           
 Table DataTable.addLong(String name, long value)
          Adds a column of type long to the table and sets its initial value at the first row.
 Table FilteredTable.addString(String name, String value)
           
 Table ResultSetTable.addString(String name, String value)
          Adds a column of type String to the table and sets its initial value at the first row.
 Table Table.addString(String name, String value)
          Adds a column of type String to the table and sets its initial value at the first row.
 Table ReportTable.addString(String name, String value)
           
 Table DataTable.addString(String name, String value)
          Adds a column of type String to the table and sets its initial value at the first row.
 Table FilteredTable.addTime(String name, Date value)
           
 Table ResultSetTable.addTime(String name, Date value)
          Adds a column of type Date to the table and sets its initial value at the first row.
 Table Table.addTime(String name, Date value)
          Adds a column of type Date to the table and sets its initial value at the first row.
 Table ReportTable.addTime(String name, Date value)
           
 Table DataTable.addTime(String name, Date value)
          Adds a column of type Date to the table and sets its initial value at the first row.
 Table FilteredTable.addTimestamp(String name, Date value)
           
 Table ResultSetTable.addTimestamp(String name, Date value)
          Adds a column of type Date to the table and sets its initial value at the first row.
 Table Table.addTimestamp(String name, Date value)
          Adds a column of type Date to the table and sets its initial value at the first row.
 Table ReportTable.addTimestamp(String name, Date value)
           
 Table DataTable.addTimestamp(String name, Date value)
          Adds a column of type Date to the table and sets its initial value at the first row.
 Table BaseTable.copyTable()
          Copies the table.
 Table Table.copyTable()
          Copies the table.
protected  Table FilteredTable.getDataTable()
          Getter method for the the property dataTable.
protected  Table ReportTable.getDataTable()
          Getter method for the the property dataTable.
 Table Row.getTable()
          Gets the table which holds this row.
 Table DataRow.getTable()
          Gets the table the row is member of.
 Table BaseRow.getTable()
          Gets the table the row is member of.
 

Methods in org.ujac.util.table with parameters of type Table
 void ExpressionRowFilterRule.setup(Table table)
          Sets up the rule.
 void NotRowFilterRule.setup(Table table)
          Sets up the rule.
 void RowFilterRuleSet.setup(Table table)
          Sets up the rule.
 void BaseRowFilterRule.setup(Table table)
          Sets up the rule.
 void RowFilterRule.setup(Table table)
          Sets up the rule.
 

Constructors in org.ujac.util.table with parameters of type Table
BaseRow(Table table)
          Constructs a BaseRow instance with specific attributes.
BaseRow(Table table, Row srcRow)
          Constructs a BaseRow instance with specific attributes.
DataRow(Table table, int rowIdx)
          Constructs a DataRow instance with specific arguments.
DataRow(Table table, int rowIdx, Row srcRow)
          Constructs a DataRow instance with specific attributes.
DefaultColumn(Table table, String name, boolean key, int type)
          Constructs a DefaultColumn instance with specific arguments.
DefaultColumn(Table table, String name, int type)
          Constructs a DefaultColumn instance with specific arguments.
FilteredTable(Table dataTable)
          Constructs a FilteredTable instance with specific attributes.
FilteredTable(Table dataTable, RowFilterRule filterRule)
          Constructs a FilteredTable instance with specific attributes.
FilteredTableIterator(Table table, RowFilterRule filterRule)
          Constructs a FilteredTableIterator instance with specific attributes.
GroupRow(Table table, String type, String groupName)
          Constructs a GroupRow instance with specific attributes.
HeaderRow(Table table)
          Constructs a HeaderRow instance with specific attributes.
PivotTable(Table dataTable, String[] groupColumns, String columnKey, String dataKey, FunctionExecutor function)
          Constructs a PivotTable instance with specific attributes.
ReportTable(Table dataTable)
          Constructs a ReportTable instance with specific attributes.
 

Uses of Table in org.ujac.web.tag
 

Methods in org.ujac.web.tag that return Table
 Table PrintTableTag.getTable()
          Getter method for the the property table.
 



Copyright © 2003-2004 UJAC.org. All Rights Reserved.