|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jdesktop.swingx.decorator.ComponentAdapter
org.jdesktop.swingx.JXTree.TreeAdapter
protected static class JXTree.TreeAdapter
Field Summary |
---|
Fields inherited from class org.jdesktop.swingx.decorator.ComponentAdapter |
---|
column, DEFAULT_COLUMN_IDENTIFIER, row, target |
Constructor Summary | |
---|---|
JXTree.TreeAdapter(JXTree component)
Constructs a TableCellRenderContext for the specified
target component. |
Method Summary | |
---|---|
int |
getDepth()
Returns the depth of this row in the hierarchy where the root is 0. |
String |
getFilteredStringAt(int row,
int column)
Returns the String representation of the filtered value of the cell identified by the row in view coordinate and the column in model coordinates. |
Object |
getFilteredValueAt(int row,
int column)
Returns the filtered value of the cell identified by the row in view coordinate and the column in model coordinates. |
String |
getString()
Returns the String representation of the value of the cell identified by this adapter. |
String |
getStringAt(int row,
int column)
Returns the String representation of the value of the cell identified by the row specified row and column in model coordinates. |
JXTree |
getTree()
|
Object |
getValue()
Returns the value of the cell identified by this adapter. |
Object |
getValueAt(int row,
int column)
Returns the value of the target component's cell identified by the specified row and column in model coordinates. |
boolean |
hasFocus()
Returns true if the cell identified by this adapter currently has focus. |
boolean |
isCellEditable(int row,
int column)
Determines whether this cell is editable. |
boolean |
isEditable()
Returns true if the cell identified by this adapter is editable,
false otherwise. |
boolean |
isExpanded()
Returns true if the cell identified by this adapter is currently expanded. |
boolean |
isHierarchical()
Returns true if the cell identified by this adapter displays the hierarchical node. |
boolean |
isLeaf()
Returns true if the cell identified by this adapter is a leaf node. |
boolean |
isSelected()
Returns true if the cell identified by this adapter is currently selected. |
void |
setValueAt(Object aValue,
int row,
int column)
Sets the value of the target component's cell identified by the specified row and column in model coordinates. |
Methods inherited from class org.jdesktop.swingx.decorator.ComponentAdapter |
---|
getColumnCount, getColumnIdentifierAt, getColumnIndex, getColumnName, getComponent, getRowCount, getString, getValue, isTestable, modelToView, refresh, viewToModel |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JXTree.TreeAdapter(JXTree component)
TableCellRenderContext
for the specified
target component.
component
- the target componentMethod Detail |
---|
public JXTree getTree()
public boolean hasFocus()
hasFocus
in class ComponentAdapter
public Object getValueAt(int row, int column)
getValueAt
in class ComponentAdapter
row
- in model coordinatescolumn
- in model coordinates
public Object getFilteredValueAt(int row, int column)
JXTree doesn't support filtering/sorting. This implies that model and view coordinates are the same. So this method is implemented to call getValueAt(row, column).
getFilteredValueAt
in class ComponentAdapter
row
- the row of the cell in view coordinatescolumn
- the column of the cell in model coordinates.
public Object getValue()
NOTE: this implementation assumes that view coordinates == model coordinates, that is simply calls getValueAt(this.row, this.column). It is up to subclasses to override appropriately is they support model/view coordinate transformation.
JXTree doesn't support filtering/sorting. This implies that model and view coordinates are the same. So this method is implemented to call getValueAt(row, column).
getValue
in class ComponentAdapter
ComponentAdapter.getValueAt(int, int)
,
ComponentAdapter.getFilteredValueAt(int, int)
,
ComponentAdapter.getValue(int)
public String getFilteredStringAt(int row, int column)
Note: the asymetry of the coordinates is intentional - clients like Highlighters are interested in view values but might need to access non-visible columns for testing. While it is possible to access row coordinates different from the current (that is this.row) it is not safe to do so for row > this.row because the adapter doesn't allow to query the count of visible rows.
This implementation messages the StringValue.TO_STRING with the filteredValue, subclasses should re-implement and use the api appropriate for the target component type.
PENDING JW: what about null cell values? StringValue has a contract to return a empty string then, would that be okay here as well?
getFilteredStringAt
in class ComponentAdapter
row
- the row of the cell in view coordinatescolumn
- the column of the cell in model coordinates.
public String getString()
NOTE: this implementation assumes that view coordinates == model coordinates, that is simply calls getValueAt(this.row, this.column). It is up to subclasses to override appropriately is they support model/view coordinate transformation.
This implementation messages the StringValue.TO_STRING with the getValue, subclasses should re-implement and use the api appropriate for the target component type.
getString
in class ComponentAdapter
ComponentAdapter.getValueAt(int, int)
,
ComponentAdapter.getFilteredValueAt(int, int)
,
ComponentAdapter.getValue(int)
public String getStringAt(int row, int column)
This implementation messages the StringValue.TO_STRING with the valueAt, subclasses should re-implement and use the api appropriate for the target component type.
getStringAt
in class ComponentAdapter
row
- in model coordinatescolumn
- in model coordinates
public boolean isEditable()
true
if the cell identified by this adapter is editable,
false
otherwise.
isEditable
in class ComponentAdapter
true
if the cell is editable, false
otherwisepublic boolean isSelected()
isSelected
in class ComponentAdapter
public boolean isExpanded()
isExpanded
in class ComponentAdapter
public int getDepth()
getDepth
in class ComponentAdapter
public boolean isHierarchical()
isHierarchical
in class ComponentAdapter
public boolean isLeaf()
isLeaf
in class ComponentAdapter
public boolean isCellEditable(int row, int column)
isCellEditable
in class ComponentAdapter
row
- the row to query in model coordinatescolumn
- the column to query in model coordinates
true
if the cell is editable, false
otherwisepublic void setValueAt(Object aValue, int row, int column)
setValueAt
in class ComponentAdapter
aValue
- the value to setrow
- in model coordinatescolumn
- in model coordinates
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |