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

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;

/**
 * Represents a list of author(s) for this plugin.
 */
@Documented
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.TYPE)
public @interface Authors {
    Author[] value();
}