01: package java.util; 02: 03: import java.io.Serializable; 04: 05: public class EventObject implements Serializable { 06: protected transient Object source; 07: 08: public EventObject(Object source) { 09: } 10: 11: public Object getSource() { 12: } 13: 14: public String toString() { 15: } 16: }