Add @Preview annotation
This commit is contained in:
parent
d180dbff01
commit
3e9983ea22
15
base/src/main/java/atlantafx/base/Preview.java
Normal file
15
base/src/main/java/atlantafx/base/Preview.java
Normal file
@ -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 {
|
||||
}
|
Loading…
Reference in New Issue
Block a user