Uses of Class
org.extremecomponents.table.model.TableModel

Packages that use TableModel
org.extremecomponents.table.bean   
org.extremecomponents.table.cell   
org.extremecomponents.table.model   
org.extremecomponents.table.tag   
org.extremecomponents.table.view   
org.extremecomponents.tree.model   
org.extremecomponents.tree.tag   
org.extremecomponents.tree.view   
 

Uses of TableModel in org.extremecomponents.table.bean
 

Constructors in org.extremecomponents.table.bean with parameters of type TableModel
Input(TableModel model)
           
Form(TableModel model)
           
Export(TableModel model)
           
Table(TableModel model)
           
Column(TableModel model)
           
 

Uses of TableModel in org.extremecomponents.table.cell
 

Fields in org.extremecomponents.table.cell declared as TableModel
protected  TableModel BaseCell.model
           
 

Methods in org.extremecomponents.table.cell with parameters of type TableModel
 void PageCell.init(TableModel model, Column column, java.lang.Integer rowcount)
          Need to get the additional parameters that will be passed when paging through the pages.
 void NumberCell.init(TableModel model, Column column, java.lang.Integer rowcount)
          Format the number so it can be displayed properly.
 void HeaderCell.init(TableModel model, Column column, java.lang.Integer rowcount)
          Account for the fact that we have to sort.
 void DateCell.init(TableModel model, Column column, java.lang.Integer rowcount)
          Format the Date so it can be displayed properly.
 void BaseCell.init(TableModel model, Column column, java.lang.Integer rowcount)
          Set the Model, Column and current rowcount.
 void Cell.init(TableModel model, Column column, java.lang.Integer rowcount)
          Pass all the model, column and rowcount where applicable.
 

Uses of TableModel in org.extremecomponents.table.model
 

Methods in org.extremecomponents.table.model with parameters of type TableModel
static java.util.List TableModelUtils.getHeader(TableModel model, java.lang.String method)
           
static java.util.List TableModelUtils.splitIntoTableSectionRows(TableModel model, java.util.List rows, TableSection tableSection)
          Grab the relevant section of the table.
static TableSection TableModelUtils.getTableSection(TableModel model, int totalRows)
          Find out where we should start and end to get the relevant section of the table.
static boolean TableModelUtils.canGroup(TableModel model)
           
 void ProcessGroupColumn.beforeFirstRow(TableModel model, java.lang.String method, java.util.List body)
           
 void ProcessGroupColumn.afterLastRow(TableModel model, java.lang.String method, java.util.List body)
           
 java.lang.String ProcessGroupColumn.process(TableModel model, Column column, Cell cell, java.lang.String method)
           
 void ProcessGroupColumn.setGroups(TableModel model)
          Find out if we need to group any of the properties.
 void ProcessDefaultColumn.beforeFirstRow(TableModel model, java.lang.String method, java.util.List body)
           
 void ProcessDefaultColumn.afterLastRow(TableModel model, java.lang.String method, java.util.List body)
           
 java.lang.String ProcessDefaultColumn.process(TableModel model, Column column, Cell cell, java.lang.String method)
           
 void ProcessColumn.beforeFirstRow(TableModel model, java.lang.String method, java.util.List body)
           
 java.lang.String ProcessColumn.process(TableModel model, Column column, Cell cell, java.lang.String method)
           
 void ProcessColumn.afterLastRow(TableModel model, java.lang.String method, java.util.List body)
           
 java.util.List PageHandler.getPagination(TableModel model)
          Build up the pagination cells.
 java.lang.String PageHandler.buildPaginationCell(TableModel model, java.lang.String name, int page, boolean selected)
           
 java.util.List FilterHandler.filterRows(TableModel model, java.util.List rows)
          Filter out the table using the Predicate pattern.
 java.util.List FilterHandler.getFilter(TableModel model)
          Get the Filter
 java.util.Map FilterHandler.getFilterDropLists(TableModel model)
          Make up the droplists that will be used for the filter.
 

Constructors in org.extremecomponents.table.model with parameters of type TableModel
FilterPredicate(TableModel model)
           
ParameterRegistry(TableModel model)
           
ViewHandler(TableModel model)
           
FormHandler(TableModel model)
           
ExportHandler(TableModel model)
           
PageHandler(TableModel model)
           
FilterHandler(TableModel model)
           
SortHandler(TableModel model)
           
ColumnMetaData(TableModel model)
           
 

Uses of TableModel in org.extremecomponents.table.tag
 

Methods in org.extremecomponents.table.tag that return TableModel
 TableModel TableTag.getModel()
           
 

Uses of TableModel in org.extremecomponents.table.view
 

Methods in org.extremecomponents.table.view with parameters of type TableModel
 void XlsView.beforeBody(TableModel model)
           
 void XlsView.body(TableModel model, java.lang.String value, boolean isFirstColumn, boolean isLastColumn)
           
 java.lang.Object XlsView.afterBody(TableModel model)
           
 void PdfView.beforeBody(TableModel model)
           
 void PdfView.body(TableModel model, java.lang.String value, boolean isFirstColumn, boolean isLastColumn)
           
 java.lang.Object PdfView.afterBody(TableModel model)
           
 java.lang.String PdfView.regionBefore(TableModel model)
           
 java.lang.String PdfView.columnDefinitions(TableModel model)
           
 java.lang.String PdfView.header(TableModel model)
           
 void HtmlView.beforeBody(TableModel model)
           
 void HtmlView.body(TableModel model, java.lang.String value, boolean startRow, boolean endRow)
           
 java.lang.Object HtmlView.afterBody(TableModel model)
           
 void HtmlView.paginationExport(TableModel model)
          The pagination and export will display together.
 void HtmlView.pagination(TableModel model)
          The pagination that will hover over the table.
 void HtmlView.export(TableModel model)
           
 void HtmlView.tableStart(TableModel model)
          The opening table tag along with all the attributes of the table.
 void HtmlView.tableEnd(TableModel model)
          Closes the table.
 void HtmlView.header(TableModel model)
          The header row of the table.
 void HtmlView.filter(TableModel model)
          The filter row of the table.
 void HtmlView.formButtons(TableModel model)
           
 void View.beforeBody(TableModel model)
           
 void View.body(TableModel model, java.lang.String value, boolean isFirstColumn, boolean isLastColumn)
           
 java.lang.Object View.afterBody(TableModel model)
           
 

Uses of TableModel in org.extremecomponents.tree.model
 

Subclasses of TableModel in org.extremecomponents.tree.model
 class TreeModel
          org.extremecomponents.tree.model.TreeModel.java -
 

Constructors in org.extremecomponents.tree.model with parameters of type TableModel
SortHandler(TableModel model)
           
 

Uses of TableModel in org.extremecomponents.tree.tag
 

Methods in org.extremecomponents.tree.tag that return TableModel
 TableModel TreeTag.getModel()
           
 

Uses of TableModel in org.extremecomponents.tree.view
 

Methods in org.extremecomponents.tree.view with parameters of type TableModel
 void HtmlView.beforeBody(TableModel model)
           
 void HtmlView.body(TableModel model, java.lang.String value, boolean startRow, boolean endRow)
           
 java.lang.Object HtmlView.afterBody(TableModel model)
           
 void HtmlView.paginationExport(TableModel model)
          The pagination and export will display together.
 void HtmlView.pagination(TableModel model)
          The pagination that will hover over the table.
 void HtmlView.export(TableModel model)
           
 void HtmlView.tableStart(TableModel model)
          The opening table tag along with all the attributes of the table.
 void HtmlView.tableEnd(TableModel model)
          Closes the table.
 void HtmlView.header(TableModel model)
          The header row of the table.
 void HtmlView.filter(TableModel model)
          The filter row of the table.
 void HtmlView.formButtons(TableModel model)
           
 



Copyright © 2004 sourceforge. All Rights Reserved.