KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > util > EventObject

java.util
Class EventObject

java.lang.Object
  extended by java.util.EventObject
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AWTEvent, BeanContextEvent, CaretEvent, ChangeEvent, ConnectionEvent, DragGestureEvent, DragSourceEvent, DropTargetEvent, FlavorEvent, HandshakeCompletedEvent, HyperlinkEvent, LineEvent, ListDataEvent, ListSelectionEvent, MenuEvent, NamingEvent, NamingExceptionEvent, NodeChangeEvent, Notification, PopupMenuEvent, PreferenceChangeEvent, PrintEvent, PropertyChangeEvent, RowSetEvent, SSLSessionBindingEvent, TableColumnModelEvent, TableModelEvent, TreeExpansionEvent, TreeModelEvent, TreeSelectionEvent, UndoableEditEvent, UnsolicitedNotificationEvent
See Also:
Top Examples, Source Code

public EventObject(Object source)
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object getSource()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[603]Logging
By misbhaa { at } virtusa { dot } com on 2004/01/12 04:52:34  Rate
public abstract class Event  
  {  
   static private Logger logger = Logger.getLogger ( Event.class.getName (  )  ) ; 
   static public final String _RCS_HEADER = "$Header: //depot/main/tl/tao_build/Runtime/src/core/versata/vfc/html/Event.java#5 $"; 
   static  {  
     com.versata.util.logging.Logger.getLogger ( "versata.trace.rcs" ) .info ( _RCS_HEADER ) ; 
    }  
     /** The object on which the Event initially occurred. 
     */
 
     public Object source; 
  
  
     /** Returns the object on which the Event initially occurred. 
     */
 
     public Object getSource (  )   {  
         return source; 
      }  
  }  
 


protected transient Object source
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String toString()
See Also:
Object
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags