blob: 22d3b209bc8187a0ed9d7e1f3641c10f96ea2ba8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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";
/**
* Scans the given directories for java binaries.
*/
public static final String JAVA_SCAN_PATH = "modernjava.scanpath";
}
|