JIDE 3.5.15

com.jidesoft.grid
Class PagedTablePane.TablePosition

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

public static class PagedTablePane.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
PagedTablePane.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

PagedTablePane.TablePosition

public PagedTablePane.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