Package wt.templateutil.table
Interface TableModelStub
- All Superinterfaces:
TableModel
- All Known Implementing Classes:
AssociationTableModel,ObjectPropertiesTableModel,RowDataTableModel,SortedTableModel,TreeTableModel,UpdateDocumentTableModel
Deprecated.
Deprecation Notice: This class is still valid for this release, however
this serves as advance notice that it will be removed in the future.
All user interfaces built using the Windchill HTML Template Processing
client architecture will be rewritten using a different framework in
an upcoming release.
The TableModelStub class is an interface that does NOT add anything
to the TableModel class. The purpose of the TableModelStub class
is to allow the modeling of TableModel subclasses that will have
the method stubs generated for them.
The only reason to implement the TableModelStub is if you are
modeling your TableModel subclass and you would like the method
stubs generated for you.
Supported API: true
Extendable: false
-
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated.getColumnClass(int columnIndex) Deprecated.intDeprecated.getColumnName(int columnIndex) Deprecated.intDeprecated.getValueAt(int rowIndex, int columnIndex) Deprecated.booleanisCellEditable(int rowIndex, int columnIndex) Deprecated.voidDeprecated.voidsetValueAt(Object value, int rowIndex, int columnIndex) Deprecated.
-
Method Details
-
addTableModelListener
Deprecated.
Supported API: true- Specified by:
addTableModelListenerin interfaceTableModel- Parameters:
l-
-
getColumnClass
Deprecated.
Supported API: true- Specified by:
getColumnClassin interfaceTableModel- Parameters:
columnIndex-- Returns:
- Class
-
getColumnCount
int getColumnCount()Deprecated.
Supported API: true- Specified by:
getColumnCountin interfaceTableModel- Returns:
- int
-
getColumnName
Deprecated.Returns name of the HTML table column for the column index passed in as input parameter.
Supported API: true- Specified by:
getColumnNamein interfaceTableModel- Parameters:
columnIndex-- Returns:
- String
-
getRowCount
int getRowCount()Deprecated.
Supported API: true- Specified by:
getRowCountin interfaceTableModel- Returns:
- int
-
getValueAt
Deprecated.
Supported API: true- Specified by:
getValueAtin interfaceTableModel- Parameters:
rowIndex-columnIndex-- Returns:
- Object
-
isCellEditable
boolean isCellEditable(int rowIndex, int columnIndex) Deprecated.
Supported API: true- Specified by:
isCellEditablein interfaceTableModel- Parameters:
rowIndex-columnIndex-- Returns:
- boolean
-
removeTableModelListener
Deprecated.
Supported API: true- Specified by:
removeTableModelListenerin interfaceTableModel- Parameters:
l-
-
setValueAt
Deprecated.
Supported API: true- Specified by:
setValueAtin interfaceTableModel- Parameters:
value-rowIndex-columnIndex-
-