summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/plugin/java/annotation/dependency/SoftDependsOn.java
blob: fb53a105fb4b0a9cdc668561aac951c3b5a3ab3b (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
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;

/**
 * Part of the plugin annotations framework.
 * <p>
 * Represents the plugins this plugin should try to load before this plugin will attempt to load.
 * A plugin will still load if a soft dependency is not present.
 * <br>
 * This specific annotation should not be used by people who do not know
 * how repeating annotations work.
 */

@Documented
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.TYPE)
public @interface SoftDependsOn {
    SoftDependency[] value() default {};

}