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

import java.lang.annotation.*;


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