Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin18/src/java/lang/annotation/Documented.java')
-rw-r--r--JCL/converterJclMin18/src/java/lang/annotation/Documented.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/JCL/converterJclMin18/src/java/lang/annotation/Documented.java b/JCL/converterJclMin18/src/java/lang/annotation/Documented.java
new file mode 100644
index 000000000..34494fb5f
--- /dev/null
+++ b/JCL/converterJclMin18/src/java/lang/annotation/Documented.java
@@ -0,0 +1,12 @@
+package java.lang.annotation;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Documented
+@Retention(RetentionPolicy.RUNTIME)
+@Target(ElementType.ANNOTATION_TYPE)
+public @interface Documented {
+}

Back to the top