Essentials/YamlAnnotations/src/me/snowleo/yaml/YamlComment.java

13 lines
199 B
Java
Raw Normal View History

2011-08-28 05:12:13 +02:00
package me.snowleo.yaml;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target(ElementType.FIELD)
public @interface YamlComment
{
String[] comment() default "";
}