Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin12/src/java/lang/annotation/Retention.java')
-rw-r--r--JCL/converterJclMin12/src/java/lang/annotation/Retention.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/JCL/converterJclMin12/src/java/lang/annotation/Retention.java b/JCL/converterJclMin12/src/java/lang/annotation/Retention.java
new file mode 100644
index 0000000000..b635cccb97
--- /dev/null
+++ b/JCL/converterJclMin12/src/java/lang/annotation/Retention.java
@@ -0,0 +1,12 @@
+package java.lang.annotation;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+@Documented
+@Retention(RetentionPolicy.RUNTIME)
+@Target(ElementType.ANNOTATION_TYPE)
+public @interface Retention {
+ RetentionPolicy value();
+} \ No newline at end of file

Back to the top