org.eclipse.fx.ui.animation.BaseTransition Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2014 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tom Schindl - initial API and implementation
*******************************************************************************/
package org.eclipse.fx.ui.animation;
import javafx.animation.Transition;
import javafx.util.Duration;
/**
* Base class for transitions (current useage is for Nashorn transitions because
* they can not access the protected final method
* Animation#setCycleDuration
)
*/
public abstract class BaseTransition extends Transition {
/**
* Create a transition with a predefined duration
*
* @param duration
* the duration
*/
public BaseTransition(Duration duration) {
setCycleDuration(duration);
}
}