Home | History | Annotate | Download | only in util

Lines Matching refs:source

32  * All Events are constructed with a reference to the object, the "source",
46 protected transient Object source;
51 * @param source The object on which the Event initially occurred.
52 * @exception IllegalArgumentException if source is null.
54 public EventObject(Object source) {
55 if (source == null)
56 throw new IllegalArgumentException("null source");
58 this.source = source;
67 return source;
76 return getClass().getName() + "[source=" + source + "]";