Class StandardPirolTableModel

  • All Implemented Interfaces:
    Serializable, TableModel
    Direct Known Subclasses:
    StatisticOverViewTableModel

    public abstract class StandardPirolTableModel
    extends AbstractTableModel
    standard implementation for a table model.
    Version:
    $Rev: 2451 $
    Author:
    Ole Rahn

    FH Osnabrück - University of Applied Sciences Osnabrück,
    Project: PIROL (2005),
    Subproject: Daten- und Wissensmanagement
    See Also:
    Serialized Form
    • Field Detail

      • rows

        protected Vector rows
        each element of this vector represents a single row of the table. Internally, a row is represented by a Object[].
      • colNames

        protected String[] colNames
        array that holds information on the names for the table columns
    • Constructor Detail

      • StandardPirolTableModel

        public StandardPirolTableModel​(String[] colNames)
    • Method Detail

      • getColumnCount

        public int getColumnCount()
      • getRowCount

        public int getRowCount()
      • clearTable

        public void clearTable()
        deletes all data from the table (also imforms the GUI)
      • findColumn

        public int findColumn​(String columnName)
        Overrides:
        findColumn in class AbstractTableModel
        Parameters:
        columnName - name of column to get the index for
        Returns:
        the index of the column with the given name
      • getValueAt

        public Object getValueAt​(int rowIndex,
                                 int columnIndex)
      • addRow

        public void addRow​(Object[] newRow)
        simple method to add a row to the table. (It better matches the given column nummer and column types!!)
        Parameters:
        newRow - row of objects to add to the TableModel
      • getColNames

        public String[] getColNames()
        Returns:
        array containing the names of the columns
      • setColNames

        protected void setColNames​(String[] colNames)
        Setting new column names will flush the table, if the new array has not the same length as the old one!
        Parameters:
        colNames - array containing new column names