JIDE 3.5.15

com.jidesoft.grid
Interface NavigableModel

All Known Subinterfaces:
NavigableTableModel
All Known Implementing Classes:
AbstractNavigableTableModel, AggregateTableModel, BatchedCrudTableModelWrapper, CachedTableModel, CrudTableModelAdapter, DefaultNavigableTableModel, DefaultTableModelWrapper, FilterableAggregateTableModel, FilterableTableModel, FilterableTreeTableModel, JoinTableModel, LuceneFilterableTableModel, SortableAggregateTableModel, SortableTableModel, SortableTreeTableModel, TableModelWrapperImpl, TransposeTableModel

public interface NavigableModel

The NavigationModel interface specifies the methods the JTable will use to implement selective navigation.

Author:
Marco De Angelis

Method Summary
 boolean isNavigableAt(int rowIndex, int columnIndex)
          Returns if the cell at the given coordinates can be navigated or not.
 boolean isNavigationOn()
          Checks if the navigation is on.
 

Method Detail

isNavigableAt

boolean isNavigableAt(int rowIndex,
                      int columnIndex)
Returns if the cell at the given coordinates can be navigated or not.

Parameters:
rowIndex - The row index
columnIndex - The column index
Returns:
true if navigable, false otherwise

isNavigationOn

boolean isNavigationOn()
Checks if the navigation is on. If off, isNavigableAt(int,int) should always return true for valid indexes.

Returns:
true if on, false otherwise

JIDE 3.5.15