Class CalendarableItemEvent
- java.lang.Object
-
- org.eclipse.nebula.widgets.compositetable.day.CalendarableItemEvent
-
public class CalendarableItemEvent extends java.lang.ObjectInstances of this class are sent as a result of events such insertion, deletion, or disposal of CalendarableItem objects.- Since:
- 3.2
-
-
Field Summary
Fields Modifier and Type Field Description CalendarableItemcalendarableItemThe CalenderableItem that should be processed in this operation.booleandoitSet to true by default.java.lang.ObjectresultReturns the result of the operation.
-
Constructor Summary
Constructors Constructor Description CalendarableItemEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
doit
public boolean doit
Set to true by default. Setting this field to false aborts the requested operation, as appropriate. For example, setting this field to false in a deletion operation cancels the delete operation.
-
calendarableItem
public CalendarableItem calendarableItem
The CalenderableItem that should be processed in this operation.
-
result
public java.lang.Object result
Returns the result of the operation. In the case of an edit operation, this must contain (oldStartTime, oldEndTime, newStartTime, newEndTime) if any of (startTime, endTime) have changed.
-
-