JIDE 3.5.15

com.jidesoft.grid
Class TableScrollPane.TablePosition

java.lang.Object
  extended by com.jidesoft.grid.TableScrollPane.TablePosition
Enclosing class:
TableScrollPane

public static class TableScrollPane.TablePosition
extends Object

A class that define a table, a row index and a column index. This class is used by TableScrollPane.getTableAtCell(int, int), TableScrollPane.getTableAtRow(int) and TableScrollPane.getTableAtColumn(int) to convert the row index and column index from the TableScrollPane to its child tables.


Constructor Summary
TableScrollPane.TablePosition(JTable table, int row, int column)
           
 
Method Summary
 int getColumn()
          Get the column in the table.
 int getRow()
          Get the row in the table.
 JTable getTable()
          Get the table field in the class.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TableScrollPane.TablePosition

public TableScrollPane.TablePosition(JTable table,
                                     int row,
                                     int column)
Method Detail

getTable

public JTable getTable()
Get the table field in the class.

Returns:
the JTable.

getRow

public int getRow()
Get the row in the table.

Returns:
the row index.

getColumn

public int getColumn()
Get the column in the table.

Returns:
the column index.

JIDE 3.5.15