Class FVTableModel

  • All Implemented Interfaces:
    java.io.Serializable, javax.swing.table.TableModel

    public class FVTableModel
    extends javax.swing.table.AbstractTableModel
    The model that backs the FVTable table. This model defines 4 columns: date, time, log level, and the message.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int DATE_COL  
      static int LEVEL_COL  
      static int MESSAGE_COL  
      static int TIME_COL  
      • Fields inherited from class javax.swing.table.AbstractTableModel

        listenerList
    • Constructor Summary

      Constructors 
      Constructor Description
      FVTableModel()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addRow​(java.lang.String row, boolean notify)
      Adds a row to the model.
      void addRow​(java.lang.String row, int index, boolean notify)
      Adds a row to the model
      void addRowsToBottom​(java.util.List<java.lang.String> rows)
      Adds a list of rows to the model and fires off a notification.
      void addRowsToTop​(java.util.List<java.lang.String> rows)
      Adds a list of rows to the model and fires off a notification.
      void clear()
      Clears all lines from the model and fires off a notification.
      java.lang.Class<?> getColumnClass​(int columnIndex)  
      int getColumnCount()  
      java.lang.String getColumnName​(int column)  
      int getRowCount()  
      java.lang.Object getValueAt​(int rowIndex, int columnIndex)  
      void removeRowsFromBottom​(int count)
      Removes a set of rows from the bottom of the view.
      void removeRowsFromTop​(int count)
      Removes a set of rows from the top of the view.
      • Methods inherited from class javax.swing.table.AbstractTableModel

        addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, isCellEditable, removeTableModelListener, setValueAt
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FVTableModel

        public FVTableModel()
    • Method Detail

      • getRowCount

        public int getRowCount()
      • getColumnCount

        public int getColumnCount()
      • getColumnName

        public java.lang.String getColumnName​(int column)
        Specified by:
        getColumnName in interface javax.swing.table.TableModel
        Overrides:
        getColumnName in class javax.swing.table.AbstractTableModel
      • getColumnClass

        public java.lang.Class<?> getColumnClass​(int columnIndex)
        Specified by:
        getColumnClass in interface javax.swing.table.TableModel
        Overrides:
        getColumnClass in class javax.swing.table.AbstractTableModel
      • getValueAt

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

        public void addRow​(java.lang.String row,
                           boolean notify)
        Adds a row to the model.
        Parameters:
        row - the data to add
        notify - if true, a notification will be sent to subscribers
      • addRow

        public void addRow​(java.lang.String row,
                           int index,
                           boolean notify)
        Adds a row to the model
        Parameters:
        row - the data to add
        index - the position within the model to add this to
        notify - if true, a notification will be sent to subscribers
      • addRowsToTop

        public void addRowsToTop​(java.util.List<java.lang.String> rows)
        Adds a list of rows to the model and fires off a notification.
        Parameters:
        rows -
      • addRowsToBottom

        public void addRowsToBottom​(java.util.List<java.lang.String> rows)
        Adds a list of rows to the model and fires off a notification.
        Parameters:
        rows -
      • removeRowsFromBottom

        public void removeRowsFromBottom​(int count)
        Removes a set of rows from the bottom of the view.
        Parameters:
        count - the number of rows to remove
      • removeRowsFromTop

        public void removeRowsFromTop​(int count)
        Removes a set of rows from the top of the view.
        Parameters:
        count - the number of rows to remove
      • clear

        public void clear()
        Clears all lines from the model and fires off a notification.