Lines Matching defs:fireVetoableChange
48 new TestMethods(source).fireVetoableChange(new PropertyChangeEvent(source, NAME, null, null));
49 new TestMethods(source).fireVetoableChange(NAME, null, null);
50 new TestMethods(source).fireVetoableChange(NAME, 0, 1);
51 new TestMethods(source).fireVetoableChange(NAME, true, false);
67 public void fireVetoableChange(String property, Object oldValue, Object newValue) throws PropertyVetoException {
72 super.fireVetoableChange(property, oldValue, newValue);
76 public void fireVetoableChange(String property, int oldValue, int newValue) throws PropertyVetoException {
81 super.fireVetoableChange(property, oldValue, newValue);
85 public void fireVetoableChange(String property, boolean oldValue, boolean newValue) throws PropertyVetoException {
90 super.fireVetoableChange(property, oldValue, newValue);
94 public void fireVetoableChange(PropertyChangeEvent event) throws PropertyVetoException {
99 super.fireVetoableChange(event);