01: package dalma;
02:
03: import java.lang.annotation.Retention;
04: import java.lang.annotation.Target;
05: import static java.lang.annotation.ElementType.TYPE;
06: import static java.lang.annotation.RetentionPolicy.RUNTIME;
07:
08: /**
09: * Puts a human readable description of the workflow on a {@link Program}-derived class.
10: *
11: * @author Kohsuke Kawaguchi
12: */
13: @Retention(RUNTIME)
14: @Target(TYPE)
15: public @interface Description {
16: String value();
17: }
|