| org.swingml.tablebrowser.ext.ITableBrowserCellNavigationManager
ITableBrowserCellNavigationManager | public interface ITableBrowserCellNavigationManager (Code) | | author: NumberSix |
getKeyStrokes | abstract public KeyStroke[] getKeyStrokes()(Code) | | Return a list of KeyStrokes this CellEditorManager wants to manage.
|
getTableBrowser | abstract public TableBrowserComponent getTableBrowser()(Code) | | Return the TableBrowserComponent this Manager is managing navigation for.
|
handleCellEditEnd | abstract public void handleCellEditEnd(int row, int column)(Code) | | Notification that the given row and column was just edited.
|
handleCellEditStart | abstract public boolean handleCellEditStart(int row, int column)(Code) | | Notification that the given row and column are about to be edited.
Return False if the editing should not be performed. Return True otherwise.
|
handleCellNavigation | abstract public void handleCellNavigation(int row, int column)(Code) | | Notification that a binded Keystroke was used from the given cell (row, column locations)
|
setTableBrowser | abstract public void setTableBrowser(TableBrowserComponent tableBrowser)(Code) | | Setter method to hold on to the TableBrowserComponent this Manager is managing navigation for.
|
|
|