Interface TableModelStub

All Superinterfaces:
TableModel
All Known Implementing Classes:
AssociationTableModel, ObjectPropertiesTableModel, RowDataTableModel, SortedTableModel, TreeTableModel, UpdateDocumentTableModel

public interface TableModelStub extends TableModel
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 Details

    • addTableModelListener

      void addTableModelListener(TableModelListener l)
      Deprecated.


      Supported API: true
      Specified by:
      addTableModelListener in interface TableModel
      Parameters:
      l -
    • getColumnClass

      Class getColumnClass(int columnIndex)
      Deprecated.


      Supported API: true
      Specified by:
      getColumnClass in interface TableModel
      Parameters:
      columnIndex -
      Returns:
      Class
    • getColumnCount

      int getColumnCount()
      Deprecated.


      Supported API: true
      Specified by:
      getColumnCount in interface TableModel
      Returns:
      int
    • getColumnName

      String getColumnName(int columnIndex)
      Deprecated.
      Returns name of the HTML table column for the column index passed in as input parameter.

      Supported API: true
      Specified by:
      getColumnName in interface TableModel
      Parameters:
      columnIndex -
      Returns:
      String
    • getRowCount

      int getRowCount()
      Deprecated.


      Supported API: true
      Specified by:
      getRowCount in interface TableModel
      Returns:
      int
    • getValueAt

      Object getValueAt(int rowIndex, int columnIndex)
      Deprecated.


      Supported API: true
      Specified by:
      getValueAt in interface TableModel
      Parameters:
      rowIndex -
      columnIndex -
      Returns:
      Object
    • isCellEditable

      boolean isCellEditable(int rowIndex, int columnIndex)
      Deprecated.


      Supported API: true
      Specified by:
      isCellEditable in interface TableModel
      Parameters:
      rowIndex -
      columnIndex -
      Returns:
      boolean
    • removeTableModelListener

      void removeTableModelListener(TableModelListener l)
      Deprecated.


      Supported API: true
      Specified by:
      removeTableModelListener in interface TableModel
      Parameters:
      l -
    • setValueAt

      void setValueAt(Object value, int rowIndex, int columnIndex)
      Deprecated.


      Supported API: true
      Specified by:
      setValueAt in interface TableModel
      Parameters:
      value -
      rowIndex -
      columnIndex -