Class SelectionChangeEvent
- java.lang.Object
-
- org.eclipse.nebula.widgets.compositetable.day.SelectionChangeEvent
-
public class SelectionChangeEvent extends java.lang.ObjectA SelectionChangeEvent for selected Calendarables in a DayEditor.- Since:
- 3.2
-
-
Field Summary
Fields Modifier and Type Field Description CalendarableItemnewSelectionThe new selection or null if the selection is being clearedCalendarableItemoldSelectionThe previously selected Calendarable or null if no selection
-
Constructor Summary
Constructors Constructor Description SelectionChangeEvent(CalendarableItem oldSelection, CalendarableItem newSelection)Constructor SelectionChangeEvent.
-
-
-
Field Detail
-
oldSelection
public final CalendarableItem oldSelection
The previously selected Calendarable or null if no selection
-
newSelection
public final CalendarableItem newSelection
The new selection or null if the selection is being cleared
-
-
Constructor Detail
-
SelectionChangeEvent
public SelectionChangeEvent(CalendarableItem oldSelection, CalendarableItem newSelection)
Constructor SelectionChangeEvent. Construct a SelectionChangeEvent from the Calendarable objects that represent the old and new selection.- Parameters:
oldSelection- The previously selected Calendarable or null if no selectionnewSelection- The new selection or null if the selection is being cleared
-
-