Package jaxx.runtime.swing.model
Class ComboBoxSelectionEvent
java.lang.Object
java.util.EventObject
jaxx.runtime.swing.model.ComboBoxSelectionEvent
- All Implemented Interfaces:
java.io.Serializable
public class ComboBoxSelectionEvent
extends java.util.EventObject
Created on 8/7/14.
- Since:
- 2.10
- Author:
- Tony Chemit - chemit@codelutin.com
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected java.io.SerializablecurrentSelectedItemThe current selected item in comboBox.protected java.io.SerializablenextSelectedItemThe item to selected in comboBox.Fields inherited from class java.util.EventObject
source -
Constructor Summary
Constructors Constructor Description ComboBoxSelectionEvent(java.lang.Object source, java.io.Serializable currentSelectedItem, java.io.Serializable nextSelectedItem)Constructs a ComboBoxSelectionEvent object. -
Method Summary
Modifier and Type Method Description java.io.SerializablegetCurrentSelectedItem()java.io.SerializablegetNextSelectedItem()Methods inherited from class java.util.EventObject
getSource, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Field Details
-
currentSelectedItem
protected final java.io.Serializable currentSelectedItemThe current selected item in comboBox. -
nextSelectedItem
protected final java.io.Serializable nextSelectedItemThe item to selected in comboBox.
-
-
Constructor Details
-
ComboBoxSelectionEvent
public ComboBoxSelectionEvent(java.lang.Object source, java.io.Serializable currentSelectedItem, java.io.Serializable nextSelectedItem)Constructs a ComboBoxSelectionEvent object.- Parameters:
source- the Object that originated the event (typicallythis)currentSelectedItem- the current selected item in comboBoxnextSelectedItem- the item to selected in comboBox.
-
-
Method Details
-
getCurrentSelectedItem
public java.io.Serializable getCurrentSelectedItem() -
getNextSelectedItem
public java.io.Serializable getNextSelectedItem()
-