Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin14/src/javax/lang/model/SourceVersion.java')
-rw-r--r--JCL/converterJclMin14/src/javax/lang/model/SourceVersion.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/JCL/converterJclMin14/src/javax/lang/model/SourceVersion.java b/JCL/converterJclMin14/src/javax/lang/model/SourceVersion.java
new file mode 100644
index 0000000000..557ab18118
--- /dev/null
+++ b/JCL/converterJclMin14/src/javax/lang/model/SourceVersion.java
@@ -0,0 +1,66 @@
+package javax.lang.model;
+
+public enum SourceVersion {
+
+ RELEASE_0,
+
+ RELEASE_1,
+
+ RELEASE_2,
+
+ RELEASE_3,
+
+ RELEASE_4,
+
+ RELEASE_5,
+
+ RELEASE_6,
+
+ RELEASE_7,
+
+ RELEASE_8,
+ RELEASE_9,
+
+ RELEASE_10,
+
+ RELEASE_11,
+
+ RELEASE_12,
+
+ RELEASE_13,
+ RELEASE_14;
+
+ public static SourceVersion latest() {
+ return RELEASE_14;
+ }
+
+ private static final SourceVersion latestSupported = getLatestSupported();
+
+ private static SourceVersion getLatestSupported() {
+ return RELEASE_14;
+ }
+
+ public static SourceVersion latestSupported() {
+ return latestSupported;
+ }
+
+ public static boolean isIdentifier(CharSequence name) {
+ return true;
+ }
+
+ public static boolean isName(CharSequence name) {
+ return isName(name, latest());
+ }
+
+ public static boolean isName(CharSequence name, SourceVersion version) {
+ return true;
+ }
+
+ public static boolean isKeyword(CharSequence s) {
+ return isKeyword(s, latest());
+ }
+
+ public static boolean isKeyword(CharSequence s, SourceVersion version) {
+ return true;
+ }
+}

Back to the top