summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/plugin/java/annotation/Website.java
blob: 385483f09dbdabbe977ab5c2004c0f5607fa2453 (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 website of the plugin.
 */

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

    public String value();

}