Experimental.java 454 B

12345678910111213141516
  1. /*
  2. * Roughly Enough Items by Danielshe.
  3. * Licensed under the MIT License.
  4. */
  5. package me.shedaniel.rei.api.annotations;
  6. import java.lang.annotation.Retention;
  7. import java.lang.annotation.RetentionPolicy;
  8. import java.lang.annotation.Target;
  9. import static java.lang.annotation.ElementType.*;
  10. @Retention(RetentionPolicy.RUNTIME)
  11. @Target(value = {CONSTRUCTOR, FIELD, LOCAL_VARIABLE, METHOD, PACKAGE, PARAMETER, TYPE})
  12. public @interface Experimental {}