Add @Preview annotation

This commit is contained in:
mkpaz 2023-02-14 19:02:34 +04:00
parent d180dbff01
commit 3e9983ea22

@ -0,0 +1,15 @@
package atlantafx.base;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Signifies that a public API or feature is not stable yet and can be changed
* or removed in future releases.
*/
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface Preview {
}