| java.lang.Object javax.swing.table.AbstractTableModel de.uka.ilkd.key.proof.ConstraintTableModel
ConstraintTableModel | public class ConstraintTableModel extends AbstractTableModel (Code) | | Table model storing a raw constraint as a vector of equalities
(term pairs)
|
currentConstraint | protected Constraint currentConstraint(Code) | | This constraint normalized
|
entries | protected Vector entries(Code) | | Vector of term pairs representing equalities
|
ConstraintTableModel | public ConstraintTableModel()(Code) | | |
addEquality | public void addEquality(Term p_left, Term p_right)(Code) | | Add a new equality to this constraint, consisting of a pair of
terms (not of Sort.FORMULA)
Parameters: p_left - left side of the equality Parameters: p_right - right side of the equality |
addEquality | public void addEquality(Term p_left, Term p_right, int p_index)(Code) | | Add a new equality to this constraint, consisting of a pair of
terms (not of Sort.FORMULA). The new pair is inserted at position
p_index
Parameters: p_left - left side of the equality Parameters: p_right - right side of the equality Parameters: p_index - row number at which the new pair will turn up throws: ArrayIndexOutOfBoundsException - iff the value ofp_index is invalid, i.e. not within [0..getRowCount()] |
deleteRow | public void deleteRow(int p_row)(Code) | | Delete one equality
Parameters: p_row - number of the equality, has to be within [0..getRowCount()) |
displayClosed | public boolean displayClosed(Node p_node)(Code) | | true iff p_node should be displayed as a closedgoal/node (i.e. it is really closed or it is part of a subtreethat should be displayed as closed regarding the current userconstraint) |
getColumnClass | public Class getColumnClass(int arg0)(Code) | | |
getColumnCount | public int getColumnCount()(Code) | | |
getColumnName | public String getColumnName(int p_column)(Code) | | |
getRowCount | public int getRowCount()(Code) | | Methods from AbstractTableModel
|
getValueAt | public Object getValueAt(int p_row, int p_column)(Code) | | |
reset | public void reset()(Code) | | Remove the contents of the table, creating the BOTTOM
constraint
|
|
|