io.github.palexdev.mfxcomponents.skins.base.IMFXPopupSkin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materialfx-all Show documentation
Show all versions of materialfx-all Show documentation
Material Design/Modern components for JavaFX, now packed as a single Jar
package io.github.palexdev.mfxcomponents.skins.base;
/**
* Defines common API for popup' skins that support open/close animations.
*/
public interface IMFXPopupSkin {
/**
* Plays the open animation.
*/
void animateIn();
/**
* Plays the close animation.
*/
void animateOut();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy