
animatefx.modifier.SlideModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AnimateFX Show documentation
Show all versions of AnimateFX Show documentation
A library of ready-to-use animations for JavaFX
The newest version!
package animatefx.modifier;
/**
* Describes by how much an animation should slide
*
* @author Dominik Müka aka 41zu
*/
public class SlideModifier implements Modifier {
private Number slideBy;
public SlideModifier() { }
public SlideModifier(Number slideBy) {
this.slideBy = slideBy;
}
public Number getSlideBy() {
return slideBy;
}
public void setSlideBy(Number slideBy) {
this.slideBy = slideBy;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy