Class SelectionChangeEvent

  • All Implemented Interfaces:
    java.io.Serializable

    public class SelectionChangeEvent
    extends org.eclipse.swt.events.TypedEvent
    Instances of this class are sent as a result of DualList being selected.
    See Also:
    SelectionChangeListener, Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      boolean doit
      A flag indicating whether the operation should be allowed.
      private java.util.List<DLItem> items
      The items that were selected.
      private static long serialVersionUID  
      • Fields inherited from class org.eclipse.swt.events.TypedEvent

        data, display, time, widget
      • Fields inherited from class java.util.EventObject

        source
    • Constructor Summary

      Constructors 
      Constructor Description
      SelectionChangeEvent​(org.eclipse.swt.widgets.Event e)
      Constructs a new instance of this class based on the information in the given untyped event.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<DLItem> getItems()  
      void setItems​(java.util.List<DLItem> items)  
      • Methods inherited from class org.eclipse.swt.events.TypedEvent

        toString
      • Methods inherited from class java.util.EventObject

        getSource
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • items

        private java.util.List<DLItem> items
        The items that were selected.
      • doit

        public boolean doit
        A flag indicating whether the operation should be allowed. Setting this field to false will cancel the operation, depending on the widget.
    • Constructor Detail

      • SelectionChangeEvent

        public SelectionChangeEvent​(org.eclipse.swt.widgets.Event e)
        Constructs a new instance of this class based on the information in the given untyped event.
        Parameters:
        e - the untyped event containing the information
    • Method Detail

      • getItems

        public java.util.List<DLItem> getItems()
        Returns:
        the list of items
      • setItems

        public void setItems​(java.util.List<DLItem> items)
        Parameters:
        items - the list of items to set