Class 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.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      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 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.
    • Constructor Detail

      • CalendarableItemEvent

        public CalendarableItemEvent()
    • Method Detail

      • toString

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