Class CalendarableItemEvent

java.lang.Object
org.eclipse.nebula.widgets.compositetable.day.CalendarableItemEvent

public class CalendarableItemEvent
extends java.lang.Object
Instances 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
    CalendarableItem calendarableItem
    The CalenderableItem that should be processed in this operation.
    boolean doit
    Set to true by default.
    java.lang.Object result
    Returns the result of the operation.
  • Constructor Summary

    Constructors 
    Constructor Description
    CalendarableItemEvent()  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

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

    • 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.
  • Constructor Details

  • Method Details

    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object