Package com.luciad.gui
Interface ILcdStringComponentTableModel
Deprecated.
Use a dedicated UI framework instead.
This interface defines how to display the contents of a
ILcdStringComponentTable, i.e a 2 columns table with Strings on the left
columns, and Component on the right one.
It gives the number of rows, the String to display at a given row in the
right column, and the associated Component to put in the right one.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetComponent(int aRow) Deprecated.Returns theComponentat a given row on the right column.getLabel(int aRow) Deprecated.Returns theStringat a given row on the left column.intDeprecated.Returns the number of rows.
-
Method Details
-
getRowCount
int getRowCount()Deprecated.Returns the number of rows.- Returns:
- the number of rows in the table.
-
getLabel
Deprecated.Returns theStringat a given row on the left column.- Parameters:
aRow- the index of the row.- Returns:
- the textual description of the contents of the row at the given index.
-
getComponent
Deprecated.Returns theComponentat a given row on the right column.- Parameters:
aRow- the index of the row.- Returns:
- a component that should represent a description of the contents of the row at the given index.
-