Package org.openpdf.rups.view.models
Interface JTableAutoModelInterface
- All Known Implementing Classes:
PagesTable,XRefTable
public interface JTableAutoModelInterface
Tables that contain the information necessary for creating their model should implement this interface, so that they
can use the JTableAutoModel class as TableModel.
-
Method Summary
Modifier and TypeMethodDescriptionintgetColumnName(int columnIndex) intgetValueAt(int rowIndex, int columnIndex)
-
Method Details
-
getColumnCount
int getColumnCount()- Returns:
- int the number of columns
- See Also:
-
getRowCount
int getRowCount()- Returns:
- int the number of rows
- See Also:
-
getColumnName
- Parameters:
columnIndex- a column number.- Returns:
- the name of the column
- See Also:
-
getValueAt
- Parameters:
rowIndex- int a row numbercolumnIndex- int a column number- Returns:
- Object an object corresponding with a cell in the table
- See Also:
-