summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/plugin/java/annotation/LoadOn.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bukkit/plugin/java/annotation/LoadOn.java')
-rw-r--r--src/main/java/org/bukkit/plugin/java/annotation/LoadOn.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main/java/org/bukkit/plugin/java/annotation/LoadOn.java b/src/main/java/org/bukkit/plugin/java/annotation/LoadOn.java
new file mode 100644
index 0000000..9e5372d
--- /dev/null
+++ b/src/main/java/org/bukkit/plugin/java/annotation/LoadOn.java
@@ -0,0 +1,18 @@
+package org.bukkit.plugin.java.annotation;
+
+import org.bukkit.plugin.PluginLoadOrder;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Target;
+
+/**
+ * Part of the plugin annotations framework.
+ * <p>
+ * Represents the optional load order of the plugin.
+ */
+
+@Target(ElementType.TYPE)
+public @interface LoadOn {
+
+ public PluginLoadOrder value();
+}