Example usage for javafx.animation Animation getOnFinished

List of usage examples for javafx.animation Animation getOnFinished

Introduction

In this page you can find the example usage for javafx.animation Animation getOnFinished.

Prototype

public final EventHandler<ActionEvent> getOnFinished() 

Source Link

Usage

From source file:org.noroomattheinn.visibletesla.LocationController.java

private void stopBlip(Animation blip) {
    EventHandler<ActionEvent> cleanup = blip.getOnFinished();
    blip.stop();
    cleanup.handle(null);
}