Merge git+ssh://davetron5000@repo.or.cz/srv/git/vimdoclet
[vimdoclet.git] / sample / java.util.EventObject.txt
blob1acd5a53dd769c03640d3159b9f2d0cea23c4255
1 *java.util.EventObject* *EventObject* 
2  The root class from which all event stat
4 public class EventObject
5   extends    |java.lang.Object|
6   implements |java.io.Serializable|
8 |java.util.EventObject_Description|
9 |java.util.EventObject_Fields|
10 |java.util.EventObject_Constructors|
11 |java.util.EventObject_Methods|
13 ================================================================================
15 *java.util.EventObject_Fields*
16 |java.lang.Object_java.util.EventObject.source|
18 *java.util.EventObject_Constructors*
19 |java.util.EventObject(Object)|Constructs a prototypical Event.
21 *java.util.EventObject_Methods*
22 |java.util.EventObject.getSource()|The object on which the Event initially occu
23 |java.util.EventObject.toString()|Returns a String representation of this Event
25 *java.util.EventObject_Description*
27 The root class from which all event state objects shall be derived. 
29 All Events are constructed with a reference to the object, the "source", that 
30 is logically deemed to be the object upon which the Event in question initially 
31 occurred upon. 
34 *java.lang.Object_java.util.EventObject.source*
36 The root class from which all event state objects shall be derived. 
38 All Events are constructed with a reference to the object, the "source", that 
39 is logically deemed to be the object upon which the Event in question initially 
40 occurred upon. 
44 *java.util.EventObject(Object)*
46 public EventObject(java.lang.Object source)
48 Constructs a prototypical Event. 
50     source - The object on which the Event initially occurred. 
52 *java.util.EventObject.getSource()*
54 public |java.lang.Object| getSource()
56 The object on which the Event initially occurred. 
59     Returns: The object on which the Event initially occurred. 
60 *java.util.EventObject.toString()*
62 public |java.lang.String| toString()
64 Returns a String representation of this EventObject. 
67     Returns: A a String representation of this EventObject.