| nextapp.echo2.app.table.TableCellRenderer
All known Subclasses: nextapp.echo2.app.table.DefaultTableCellRenderer,
TableCellRenderer | public interface TableCellRenderer extends Serializable(Code) | | Renders an Object contained at a specific coordinate in
a TableModel into a Component instance.
|
Method Summary | |
public Component | getTableCellRendererComponent(Table table, Object value, int column, int row) Returns a component that will be displayed at the specified coordinate
in the table.
Parameters: table - the Table for which the rendering is occurring Parameters: value - the value retrieved from the TableModel for thespecified coordinate Parameters: column - the column index to render Parameters: row - the row index to render a component representation of the value (This component must be unique. |
getTableCellRendererComponent | public Component getTableCellRendererComponent(Table table, Object value, int column, int row)(Code) | | Returns a component that will be displayed at the specified coordinate
in the table.
Parameters: table - the Table for which the rendering is occurring Parameters: value - the value retrieved from the TableModel for thespecified coordinate Parameters: column - the column index to render Parameters: row - the row index to render a component representation of the value (This component must be unique. Returning a single instance of a component acrossmultiple calls to this method will result in undefined behavior.) |
|
|