18 lines
406 B
Java
18 lines
406 B
Java
package fr.xephi.authme.settings.domain;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Comment for properties which are also included in the YAML file upon saving.
|
|
*/
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.FIELD)
|
|
public @interface Comment {
|
|
|
|
String[] value();
|
|
|
|
}
|