summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/plugin/java/annotation/plugin/LoadOrder.java
blob: 110421136e58c3e61027115765b08260bdb24702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.bukkit.plugin.java.annotation.plugin;

import org.bukkit.plugin.PluginLoadOrder;

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;

/**
 *  Part of the plugin annotations framework.
 *  <p>
 *  Represents the optional load order of the plugin.
 */

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface LoadOrder {
    /**
     * Explicitly state when the plugin should be loaded.
     * If not defined, will default to {@link PluginLoadOrder#POSTWORLD}.
     * See {@link PluginLoadOrder}
     */
    PluginLoadOrder value() default PluginLoadOrder.POSTWORLD;
}