|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.nqadmin.swingSet.SSCellEditingAdapter
public abstract class SSCellEditingAdapter
SSCellEditingAdapter.java
SwingSet - Open Toolkit For Making Swing Controls Database-Aware
This abstract adapter class is provided as a convenience for creating custom SSCellEditing objects. Extend this class to create a SSCellEditing implementation. SSCellEditingAdapter defines empty functions so that the programmer can define only the functions desired. Both isCellEditable() and cellUpdateRequested() always return true.
| Constructor Summary | |
|---|---|
SSCellEditingAdapter()
|
|
| Method Summary | |
|---|---|
boolean |
cellUpdateRequested(int _row,
int _column,
java.lang.Object _oldValue,
java.lang.Object _newValue)
This empty implementation always returns true. |
boolean |
isCellEditable(int _row,
int _column)
This empty implementation always returns true. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SSCellEditingAdapter()
| Method Detail |
|---|
public boolean isCellEditable(int _row,
int _column)
isCellEditable in interface SSCellEditing_row - the row to which the cell belongs._column - the column to which the cell belongs.
public boolean cellUpdateRequested(int _row,
int _column,
java.lang.Object _oldValue,
java.lang.Object _newValue)
cellUpdateRequested in interface SSCellEditing_row - the row in which update is taking place._column - the column at which update is taking place._oldValue - the present value in the cell being edited._newValue - the new value entered in the cell being edited.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||