Searched defs:sourceBean (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DSwingPropertyChangeSupport.java36 * {@code SwingPropertyChangeSupport(sourceBean, true)} it ensures
47 * @param sourceBean The bean to be given as the source for any
49 * @throws NullPointerException if {@code sourceBean} is
52 public SwingPropertyChangeSupport(Object sourceBean) { argument
53 this(sourceBean, false);
59 * @param sourceBean the bean to be given as the source for any events
63 * @throws NullPointerException if {@code sourceBean} is
67 public SwingPropertyChangeSupport(Object sourceBean, boolean notifyOnEDT) { argument
68 super(sourceBean);
107 * @see #SwingPropertyChangeSupport(Object sourceBean, boolea
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DVetoableChangeSupport.java87 * @param sourceBean The bean to be given as the source for any events.
89 public VetoableChangeSupport(Object sourceBean) { argument
90 if (sourceBean == null) {
93 source = sourceBean;
H A DPropertyChangeSupport.java87 * @param sourceBean The bean to be given as the source for any events.
89 public PropertyChangeSupport(Object sourceBean) { argument
90 if (sourceBean == null) {
93 source = sourceBean;
/openjdk7/jdk/src/share/classes/java/awt/
H A DToolkit.java2457 public DesktopPropertyChangeSupport(Object sourceBean) { argument
2458 super(sourceBean);
2459 source = sourceBean;

Completed in 37 milliseconds