package net.minecraft.gametest.framework; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotate a method with this annotation in order to have it run before the specified {@link #batch()}. */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface BeforeBatch { String batch(); }