Searched refs:fireVetoableChange (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestMethods.java48 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 { method in class:TestMethods
72 super.fireVetoableChange(property, oldValue, newValue);
76 public void fireVetoableChange(String property, int oldValue, int newValue) throws PropertyVetoException { method in class:TestMethods
81 super.fireVetoableChange(property, oldValue, newValue);
85 public void fireVetoableChange(String property, boolean oldValue, boolean newValue) throws PropertyVetoException { method in class:TestMethods
90 super.fireVetoableChange(propert
94 public void fireVetoableChange(PropertyChangeEvent event) throws PropertyVetoException { method in class:TestMethods
[all...]
H A DTestSynchronization.java52 vcs.fireVetoableChange("name", null, null);
H A DTestEquals.java49 vcs.fireVetoableChange(event);
51 vcs.fireVetoableChange(PROPERTY, one, two);
52 test(one, two, 2); // because it invokes fireVetoableChange(PropertyChangeEvent)
H A DTest4425885.java49 vcs.fireVetoableChange(PROPERTY, 0, 1);
H A DTest6630275.java50 vcs.fireVetoableChange(PROPERTY, true, false);
H A DTestListeners.java52 vcs.fireVetoableChange(NAME, 0, 1);
57 vcs.fireVetoableChange(NONE, 1, 0);
/openjdk7/jdk/test/java/beans/Performance/
H A DTestVetoableChangeSupport.java62 vcs.fireVetoableChange(eventNull);
63 vcs.fireVetoableChange(eventName);
/openjdk7/jdk/src/share/classes/java/beans/
H A DVetoableChangeSupport.java65 * this.vcs.fireVetoableChange("value", oldValue, newValue);
184 * will be invoked only when a call on fireVetoableChange names that
261 * {@link #fireVetoableChange(PropertyChangeEvent)} method.
268 public void fireVetoableChange(String propertyName, Object oldValue, Object newValue) method in class:VetoableChangeSupport
271 fireVetoableChange(new PropertyChangeEvent(this.source, propertyName, oldValue, newValue));
289 * {@link #fireVetoableChange(String, Object, Object)} method.
296 public void fireVetoableChange(String propertyName, int oldValue, int newValue) method in class:VetoableChangeSupport
299 fireVetoableChange(propertyName, Integer.valueOf(oldValue), Integer.valueOf(newValue));
317 * {@link #fireVetoableChange(String, Object, Object)} method.
324 public void fireVetoableChange(Strin method in class:VetoableChangeSupport
347 public void fireVetoableChange(PropertyChangeEvent event) method in class:VetoableChangeSupport
[all...]
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextChildSupport.java114 fireVetoableChange("beanContext",
274 public void fireVetoableChange(String name, Object oldValue, Object newValue) throws PropertyVetoException { method in class:BeanContextChildSupport
275 vcSupport.fireVetoableChange(name, oldValue, newValue);
H A DBeanContextSupport.java724 fireVetoableChange("locale", old, newLocale); // throws
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTest4985020.java122 vcs.fireVetoableChange(NAME, null, null);
132 vcs.fireVetoableChange(NAME, null, null);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJInternalFrame.java824 fireVetoableChange(IS_CLOSED_PROPERTY, oldValue, newValue);
947 fireVetoableChange(IS_ICON_PROPERTY, oldValue, newValue);
1019 fireVetoableChange(IS_MAXIMUM_PROPERTY, oldValue, newValue);
1101 fireVetoableChange(IS_SELECTED_PROPERTY, oldValue, newValue);
1629 fireVetoableChange(IS_CLOSED_PROPERTY, Boolean.FALSE,
H A DJComponent.java4529 protected void fireVetoableChange(String propertyName, Object oldValue, Object newValue) method in class:JComponent
4535 vetoableChangeSupport.fireVetoableChange(propertyName, oldValue, newValue);
/openjdk7/jdk/src/share/classes/java/awt/
H A DKeyboardFocusManager.java551 fireVetoableChange("focusOwner", oldFocusOwner,
720 fireVetoableChange("permanentFocusOwner",
819 fireVetoableChange("focusedWindow", oldFocusedWindow,
920 fireVetoableChange("activeWindow", oldActiveWindow,
1603 protected void fireVetoableChange(String propertyName, Object oldValue, method in class:KeyboardFocusManager
1613 vetoableSupport.fireVetoableChange(propertyName, oldValue,

Completed in 224 milliseconds