org.dashbuilder.renderer.chartjs.lib.event.HasAnimationCompleteHandlers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dashbuilder-renderer-chartjs Show documentation
Show all versions of dashbuilder-renderer-chartjs Show documentation
Dashbuilder Renderer for the Chart JS API
package org.dashbuilder.renderer.chartjs.lib.event;
import com.google.gwt.event.shared.HasHandlers;
/**
* Interface describe methods required for adding new handlers of {@link AnimationCompleteEvent}
*/
public interface HasAnimationCompleteHandlers extends HasHandlers{
/**
* Add {@link AnimationCompleteEvent} handler to widget.
* @param handler
*/
public void addAnimationCompleteHandler(AnimationCompleteHandler handler);
}