Package rma.swing.table
Class RmaRowHeaderRenderer
java.lang.Object
rma.swing.table.RmaRowHeaderRenderer
- All Implemented Interfaces:
TableCellRenderer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the renderer that this object wraps around.getTableCellRendererComponent
(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) Returns the component used for drawing the cell.
-
Constructor Details
-
RmaRowHeaderRenderer
-
-
Method Details
-
getTableCellRendererComponent
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) Returns the component used for drawing the cell.- Specified by:
getTableCellRendererComponent
in interfaceTableCellRenderer
- Parameters:
table
- theJTable
that is asking the renderer to draw; can benull
value
- the value of the cell to be rendered. It is up to the specific renderer to interpret and draw the value. For example, ifvalue
is the string "true", it could be rendered as a string or it could be rendered as a check box that is checked.null
is a valid valueisSelected
- true if the cell is to be rendered with the selection highlighted; otherwise falsehasFocus
- if true, render cell appropriately. For example, put a special border on the cell, if the cell can be edited, render in the color used to indicate editingrow
- the row index of the cell being drawn. When drawing the header, the value ofrow
is -1column
- the column index of the cell being drawn- Returns:
- Component
-
getTableCellRenderer
Returns the renderer that this object wraps around.- Returns:
- TableCellRenderer
-