Class ComboBoxSelectionEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.nuiton.jaxx.runtime.swing.model.ComboBoxSelectionEvent
-
- All Implemented Interfaces:
Serializable
public class ComboBoxSelectionEvent extends EventObject
Created on 8/7/14.- Since:
- 2.10
- Author:
- Tony Chemit - dev@tchemit.fr
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected SerializablecurrentSelectedItemThe current selected item in comboBox.protected SerializablenextSelectedItemThe item to selected in comboBox.-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description ComboBoxSelectionEvent(Object source, Serializable currentSelectedItem, Serializable nextSelectedItem)Constructs a ComboBoxSelectionEvent object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SerializablegetCurrentSelectedItem()SerializablegetNextSelectedItem()-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
-
currentSelectedItem
protected final Serializable currentSelectedItem
The current selected item in comboBox.
-
nextSelectedItem
protected final Serializable nextSelectedItem
The item to selected in comboBox.
-
-
Constructor Detail
-
ComboBoxSelectionEvent
public ComboBoxSelectionEvent(Object source, Serializable currentSelectedItem, 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 Detail
-
getCurrentSelectedItem
public Serializable getCurrentSelectedItem()
-
getNextSelectedItem
public Serializable getNextSelectedItem()
-
-