Interface TimegraphListener
- All Known Implementing Classes:
TimegraphAdapter
public interface TimegraphListener
An interface for listening to timing events in a timed document.
-
Method Summary
Modifier and TypeMethodDescriptionvoidelementActivated(TimedElement e, float t) Invoked to indicate that a timed element has become active.voidInvoked to indicate that a timed element has been added to the document.voidelementDeactivated(TimedElement e, float t) Invoked to indicate that a timed element has become inactive and is not filling.voidelementFilled(TimedElement e, float t) Invoked to indicate that a timed element has become inactive and is filling.voidelementInstanceTimesChanged(TimedElement e, float isBegin) Invoked to indicate that the list of instance times for the given timed element has been updated.voidInvoked to indicate that a timed element has been removed from the document.voidelementRepeated(TimedElement e, int i, float t) Invoked to indicate that the given timed element began a repeat iteration at the specified time.voidInvoked to indivate that the given interval began.voidInvoked to indivate that an interval's endpoints were changed.voidInvoked to indivate that an interval was created for the given timed element.voidInvoked to indivate that an interval was removed for the given timed element.
-
Method Details
-
elementAdded
Invoked to indicate that a timed element has been added to the document. -
elementRemoved
Invoked to indicate that a timed element has been removed from the document. -
elementActivated
Invoked to indicate that a timed element has become active.- Parameters:
e- the TimedElement that became activet- the time (in parent simple time) that the element became active
-
elementFilled
Invoked to indicate that a timed element has become inactive and is filling. -
elementDeactivated
Invoked to indicate that a timed element has become inactive and is not filling. -
intervalCreated
Invoked to indivate that an interval was created for the given timed element. -
intervalRemoved
Invoked to indivate that an interval was removed for the given timed element. -
intervalChanged
Invoked to indivate that an interval's endpoints were changed. -
intervalBegan
Invoked to indivate that the given interval began.- Parameters:
i- the Interval that began, or null if no interval is active for the given timed element.
-
elementRepeated
Invoked to indicate that the given timed element began a repeat iteration at the specified time. -
elementInstanceTimesChanged
Invoked to indicate that the list of instance times for the given timed element has been updated.
-