aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/modernjava/launch/util/PropertyNames.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/moe/nea/modernjava/launch/util/PropertyNames.java')
-rw-r--r--src/main/java/moe/nea/modernjava/launch/util/PropertyNames.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/moe/nea/modernjava/launch/util/PropertyNames.java b/src/main/java/moe/nea/modernjava/launch/util/PropertyNames.java
new file mode 100644
index 0000000..8540dde
--- /dev/null
+++ b/src/main/java/moe/nea/modernjava/launch/util/PropertyNames.java
@@ -0,0 +1,16 @@
+package moe.nea.modernjava.launch.util;
+
+public class PropertyNames {
+ /**
+ * Property set to indicate whether the java process was launched on the new java version.
+ */
+ public static final String HAS_RELAUNCHED = "modernjava.hasrelaunched";
+ /**
+ * Classpath to load after reloading.
+ */
+ public static final String RELAUNCH_CLASSPATH = "modernjava.relaunchclasspath";
+ /**
+ * Starts a debugger on the given port if present.
+ */
+ public static final String DEBUG_PORT = "modernjava.debugport";
+}