summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/plugin/java/annotation/SoftDependsOn.java
blob: 81e86627d68485637266e876f7788d517a2c2874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.bukkit.plugin.java.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

/**
 *  Part of the plugin annotations framework.
 *  <p>
 *  Represents the plugin's soft dependencies.
 */

@Target(ElementType.TYPE)
public @interface SoftDependsOn {

    public String[] value();

}