com.ibm.as400.ui.framework.java
Class DoubleClickEvent

java.lang.Object
  extended by java.util.EventObject
      extended by com.ibm.as400.ui.framework.java.DoubleClickEvent
All Implemented Interfaces:
Serializable

public class DoubleClickEvent
extends EventObject

Used to notify listeners that a double-click has occurred on an item in a list, table or tree component that is being managed by the UI framework.

Since:
v4r2m0
Version:
1.0, 04/15/98
Author:
D. Petty
See Also:
DoubleClickListener, Serialized Form

Field Summary
Modifier and Type Field and Description
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
Constructor and Description
DoubleClickEvent(Component source, Object item)
          Constructs a DoubleClickEvent.
 
Method Summary
Modifier and Type Method and Description
 Object getItem()
          Returns the descriptor for the selected item.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DoubleClickEvent

public DoubleClickEvent(Component source,
                        Object item)
Constructs a DoubleClickEvent.

Parameters:
source - the Component which is the source of the event
item - the descriptor object which represents the item that the user double-clicked
Since:
v4r2m0
Method Detail

getItem

public Object getItem()
Returns the descriptor for the selected item.

Returns:
the descriptor object which represents the item that the user double-clicked
Since:
v4r2m0