Package org.jdesktop.swingx.renderer
Class ListCellContext
java.lang.Object
org.jdesktop.swingx.renderer.CellContext
org.jdesktop.swingx.renderer.ListCellContext
- All Implemented Interfaces:
Serializable
List specific
CellContext
.- See Also:
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionJList<?>
Returns the component the cell resides on, may be null.protected Color
Returns the default selection background color of the renderered component.protected Color
Returns the default selection foreground color of the renderered component.protected String
Returns the component type specific prefix of keys for lookup in the UIManager.void
installContext
(JList<?> component, Object value, int row, int column, boolean selected, boolean focused, boolean expanded, boolean leaf) Sets state of the cell's context.Methods inherited from class org.jdesktop.swingx.renderer.CellContext
getBackground, getBorder, getCellRendererName, getColumn, getDropCellBackground, getDropCellForeground, getFocusBackground, getFocusBorder, getFocusForeground, getFont, getForeground, getIcon, getRow, getUIKey, getValue, installState, isDropOn, isEditable, isExpanded, isFocused, isLeaf, isSelected, replaceValue
-
Constructor Details
-
ListCellContext
public ListCellContext()
-
-
Method Details
-
installContext
public void installContext(JList<?> component, Object value, int row, int column, boolean selected, boolean focused, boolean expanded, boolean leaf) Sets state of the cell's context. Note that the component might be null to indicate a cell without a concrete context. All accessors must cope with.- Parameters:
component
- the component the cell resides on, might be nullvalue
- the content value of the cellrow
- the cell's row index in view coordinatescolumn
- the cell's column index in view coordinatesselected
- the cell's selected statefocused
- the cell's focused stateexpanded
- the cell's expanded stateleaf
- the cell's leaf state
-
getComponent
Returns the component the cell resides on, may be null. Subclasses are expected to override and return the component type they are handling.- Overrides:
getComponent
in classCellContext
- Returns:
- the component the cell resides on, may be null.
-
getSelectionBackground
Returns the default selection background color of the renderered component. Typically, the color is LF specific. It's up to subclasses to look it up. Here: returns null.PENDING: return UI properties here?
- Overrides:
getSelectionBackground
in classCellContext
- Returns:
- the selection background color of the rendered component.
-
getSelectionForeground
Returns the default selection foreground color of the renderered component. Typically, the color is LF specific. It's up to subclasses to look it up. Here: returns null.PENDING: return UI properties here?
- Overrides:
getSelectionForeground
in classCellContext
- Returns:
- the selection foreground color of the rendered component.
-
getUIPrefix
Returns the component type specific prefix of keys for lookup in the UIManager. Subclasses must override, here: returns the empty String.- Overrides:
getUIPrefix
in classCellContext
- Returns:
- the component type specific prefix.
-