15 lines
387 B
Java
15 lines
387 B
Java
package fr.xephi.authme.initialization;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Annotation for specifying the plugin's data folder.
|
|
*/
|
|
@Target({ElementType.PARAMETER, ElementType.FIELD})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface DataFolder {
|
|
}
|