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.Serializable currentSelectedItem
    The current selected item in comboBox.
    protected java.io.Serializable nextSelectedItem
    The 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.Serializable getCurrentSelectedItem()  
    java.io.Serializable getNextSelectedItem()  

    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
  • Field Details

    • currentSelectedItem

      protected final java.io.Serializable currentSelectedItem
      The current selected item in comboBox.
    • nextSelectedItem

      protected final java.io.Serializable nextSelectedItem
      The 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 (typically this)
      currentSelectedItem - the current selected item in comboBox
      nextSelectedItem - the item to selected in comboBox.
  • Method Details

    • getCurrentSelectedItem

      public java.io.Serializable getCurrentSelectedItem()
    • getNextSelectedItem

      public java.io.Serializable getNextSelectedItem()