blob: 8540dde0fdb6f8cde792c664d53a7bc99d2da7b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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";
}
|