We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c39b341 commit be131cbCopy full SHA for be131cb
1 file changed
src/test/java/com/beust/jcommander/parameterized/parser/MyDelegate.java
@@ -0,0 +1,18 @@
1
+package com.beust.jcommander.parameterized.parser;
2
+
3
+import java.lang.annotation.ElementType;
4
+import java.lang.annotation.Retention;
5
+import java.lang.annotation.RetentionPolicy;
6
+import java.lang.annotation.Target;
7
8
+/**
9
+ * This annotation is really just a marker with no value to set since the delegated value is true.
10
+ *
11
+ * @author Tim Gallagher
12
+ */
13
+@Target({ ElementType.FIELD,})
14
+@Retention(RetentionPolicy.RUNTIME)
15
+public @interface MyDelegate {
16
+ public boolean delegated() default true;
17
18
+}
0 commit comments