diff options
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/annotations/Experimental.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/annotations/Experimental.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/annotations/Experimental.java b/src/main/java/me/shedaniel/rei/api/annotations/Experimental.java new file mode 100644 index 000000000..043b0daae --- /dev/null +++ b/src/main/java/me/shedaniel/rei/api/annotations/Experimental.java @@ -0,0 +1,17 @@ +/* + * Roughly Enough Items by Danielshe. + * Licensed under the MIT License. + */ + +package me.shedaniel.rei.api.annotations; + +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +import static java.lang.annotation.ElementType.*; + +@Retention(RetentionPolicy.RUNTIME) +@Target(value = {CONSTRUCTOR, FIELD, LOCAL_VARIABLE, METHOD, PACKAGE, PARAMETER, TYPE}) +public @interface Experimental { +} |
