package org.bukkit.plugin.java.annotation.dependency; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Defines a list of plugin to load before this plugin */ @Documented @Retention(RetentionPolicy.SOURCE) @Target(ElementType.TYPE) public @interface LoadBeforePlugins { LoadBefore[] value() default {}; }