1 /*
2 * EnumName.java
3 * Created on 2 Август 2006 г., 0:19
4 */
5
6 package org.weda;
7
8 import java.lang.annotation.ElementType;
9 import java.lang.annotation.Retention;
10 import java.lang.annotation.RetentionPolicy;
11 import java.lang.annotation.Target;
12
13 /**
14 *
15 * @author tim
16 */
17 @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME)
18 public @interface EnumName {
19 String value();
20 }