summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/storage/Comment.java
blob: b43cec980cf89c5e70d0749494a35e65311b8902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.earth2me.essentials.storage;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


@Target(ElementType.FIELD)
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface Comment
{
	String[] value() default "";
}