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

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--com.ibm.as400.ui.framework.java.DoubleClickEvent
All Implemented Interfaces:
java.io.Serializable

public class DoubleClickEvent
extends java.util.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
See Also:
DoubleClickListener, Serialized Form

Fields inherited from class java.util.EventObject
source
 
Constructor Summary
DoubleClickEvent(java.awt.Component source, java.lang.Object item)
          Constructs a DoubleClickEvent.
 
Method Summary
 java.lang.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(java.awt.Component source,
                        java.lang.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 java.lang.Object getItem()
Returns the descriptor for the selected item.
Returns:
the descriptor object which represents the item that the user double-clicked
Since:
v4r2m0