Interface TimeEvent

All Superinterfaces:
Event
All Known Implementing Classes:
DOMTimeEvent

public interface TimeEvent extends Event
Provides specific contextual information associated with Time events.
  • Method Details

    • getView

      AbstractView getView()
      Get the AbstractView from which this event was initialized.
    • getDetail

      int getDetail()
      Get some detail information about the Event, depending on the type of event.
      Returns:
      a detail information about this event.
    • initTimeEvent

      void initTimeEvent(String typeArg, AbstractView viewArg, int detailArg)
      Initialize this event.

      This method may only be called before this event has been dispatched via the dispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.

      Parameters:
      typeArg - the event type.
      viewArg - the event AbstractView.
      detailArg - the event's detail.