org.extremecomponents.table.cell
Interface Cell

All Known Implementing Classes:
BaseCell

public interface Cell

All table cells need to implement the Cell interface. You will be given the model and column, as well as the current row that the cell is on. When it is time to be displayed each cell will be asked for its HTML to display.

Author:
Jeff Johnston

Method Summary
 void destroy()
          just in case we need to clean up something before the next cell
 java.lang.String html()
          The html that will be displayed in the table.
 void init(TableModel model, Column column, java.lang.Integer rowcount)
          Pass all the model, column and rowcount where applicable.
 java.lang.String value()
          The simple value of the cell.
 

Method Detail

init

public void init(TableModel model,
                 Column column,
                 java.lang.Integer rowcount)
Pass all the model, column and rowcount where applicable.


destroy

public void destroy()
just in case we need to clean up something before the next cell


html

public java.lang.String html()
The html that will be displayed in the table.


value

public java.lang.String value()
The simple value of the cell.



Copyright © 2004 sourceforge. All Rights Reserved.