01: package org.ontoware.rdfreactor.annotation;
02:
03: import java.lang.annotation.Documented;
04: import java.lang.annotation.ElementType;
05: import java.lang.annotation.Retention;
06: import java.lang.annotation.RetentionPolicy;
07: import java.lang.annotation.Target;
08:
09: @Target({ElementType.FIELD})
10: @Retention(RetentionPolicy.RUNTIME)
11: @Documented
12: public @interface Property {
13:
14: String value();
15:
16: }
|