summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/plugin/java/annotation/UsesDatabase.java
blob: e73ebfcc33a344129d5452898043e15e50fa8986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.bukkit.plugin.java.annotation;

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

/**
 *  Part of the plugin annotations framework.
 *  <p>
 *  Denotes this plugin as using Bukkit's bundled database system.
 */

@Target(ElementType.TYPE)
public @interface UsesDatabase {}