Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin14/src/java/lang/annotation/RetentionPolicy.java')
-rw-r--r--JCL/converterJclMin14/src/java/lang/annotation/RetentionPolicy.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/JCL/converterJclMin14/src/java/lang/annotation/RetentionPolicy.java b/JCL/converterJclMin14/src/java/lang/annotation/RetentionPolicy.java
new file mode 100644
index 0000000000..26349b1919
--- /dev/null
+++ b/JCL/converterJclMin14/src/java/lang/annotation/RetentionPolicy.java
@@ -0,0 +1,6 @@
+package java.lang.annotation;
+public enum RetentionPolicy {
+ CLASS,
+ SOURCE,
+ RUNTIME
+} \ No newline at end of file

Back to the top