extend FielIO Annotation

This commit is contained in:
Peter Hormanns 2013-01-03 18:31:36 +01:00
parent fd02157854
commit d87cbf7c33

View File

@ -10,5 +10,6 @@ import java.lang.annotation.Target;
public @interface AnnFieldIO {
String validation() default "[A-Za-z0-9\\_\\-]*";
ReadWriteAccess rw() default ReadWriteAccess.WRITEONCE;
Class<?> referTo() default Object.class;
Class<?> referTo() default Void.class;
String[] referredProps() default { };
}