Class CalendarableSelectionChangeListener
- java.lang.Object
-
- org.eclipse.nebula.widgets.compositetable.day.CalendarableSelectionChangeListener
-
public abstract class CalendarableSelectionChangeListener extends java.lang.Object
Classes which implement this interface provide methods that deal with the events that are generated when selection occurs in a control.After creating an instance of a class that implements this interface it can be added to a control using the
addSelectionListener
method and removed using theremoveSelectionListener
method. When selection occurs in a control the appropriate method will be invoked.- Since:
- 3.2
-
-
Constructor Summary
Constructors Constructor Description CalendarableSelectionChangeListener()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
selectionChanged(SelectionChangeEvent e)
Sent when selection occurs in the control.
-
-
-
Method Detail
-
selectionChanged
public abstract void selectionChanged(SelectionChangeEvent e)
Sent when selection occurs in the control.- Parameters:
e
- an event containing information about the selection
-
-