Searched defs:fireVetoableChange (Results 1 - 5 of 5) 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...]
/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);
/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,
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java4529 protected void fireVetoableChange(String propertyName, Object oldValue, Object newValue) method in class:JComponent
4535 vetoableChangeSupport.fireVetoableChange(propertyName, oldValue, newValue);

Completed in 119 milliseconds