Class ConditionsTableModel

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

    public class ConditionsTableModel
    extends javax.swing.table.AbstractTableModel
    The conditions table for configuring an SCR Model.
    Since:
    Ptolemy II 10.0
    Version:
    $Id$
    Author:
    Patricia Derler
    See Also:
    Serialized Form
    Pt.AcceptedRating:
    Red (pd)
    Pt.ProposedRating:
    Red (pd)
    • Field Summary

      • Fields inherited from class javax.swing.table.AbstractTableModel

        listenerList
    • Constructor Summary

      Constructors 
      Constructor Description
      ConditionsTableModel​(IOPort port, FSMActor model)
      Construct a new conditions table model for a given output port and the FSMActor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addColumn()
      Add a column.
      void checkDisjointness()
      Check that all modes are unique.
      void deleteColumn​(int index)
      Delete a column.
      int getColumnCount()  
      int getRowCount()  
      java.lang.Object getValueAt​(int rowIndex, int columnIndex)  
      boolean isCellEditable​(int rowIndex, int columnIndex)  
      void saveModel()
      Save the model.
      void setValueAt​(java.lang.Object aValue, int rowIndex, int columnIndex)  
      • Methods inherited from class javax.swing.table.AbstractTableModel

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

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

      • ConditionsTableModel

        public ConditionsTableModel​(IOPort port,
                                    FSMActor model)
        Construct a new conditions table model for a given output port and the FSMActor. Initialize the column count to 3.
        Parameters:
        port - The port.
        model - The model
    • Method Detail

      • addColumn

        public void addColumn()
        Add a column.
      • checkDisjointness

        public void checkDisjointness()
                               throws IllegalActionException
        Check that all modes are unique. -- by definition Check that all values are unique. Check that pairwise OR of events in a row is always false. --- check coverage: AND of all events in a row is true
        Throws:
        IllegalActionException - If thrown while checking the disjointness.
      • deleteColumn

        public void deleteColumn​(int index)
        Delete a column.
        Parameters:
        index - The column to be deleted.
      • getColumnCount

        public int getColumnCount()
      • getValueAt

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

        public int getRowCount()
      • isCellEditable

        public boolean isCellEditable​(int rowIndex,
                                      int columnIndex)
        Specified by:
        isCellEditable in interface javax.swing.table.TableModel
        Overrides:
        isCellEditable in class javax.swing.table.AbstractTableModel
      • setValueAt

        public void setValueAt​(java.lang.Object aValue,
                               int rowIndex,
                               int columnIndex)
        Specified by:
        setValueAt in interface javax.swing.table.TableModel
        Overrides:
        setValueAt in class javax.swing.table.AbstractTableModel