All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.refcodes.graphical.ext.javafx.FxFlipBookBuilder Maven / Gradle / Ivy

package org.refcodes.graphical.ext.javafx;

import org.refcodes.graphical.FlipBookBuilder;

import javafx.scene.image.Image;

public interface FxFlipBookBuilder extends FlipBookBuilder {

	@Override
	default FxFlipBookBuilder withImageDurationInMs( int aDurationInMs ) {
		setImageDurationInMs( aDurationInMs );
		return this;
	}

	@Override
	default FxFlipBookBuilder withStartUpDelayInMs( int aStartUpDelayInMs ) {
		setStartUpDelayInMs( aStartUpDelayInMs );
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy