|
14 | 14 | * @noextend This interface is not intended to be extended by clients. |
15 | 15 | * @noimplement This interface is not intended to be implemented by clients. |
16 | 16 | */ |
17 | | -public interface ErlRuntimeAttributes { |
| 17 | +public class ErlRuntimeAttributes { |
18 | 18 | // FIXME this is kind of an indirect dep on core plugin (needs to be |
19 | 19 | // started) |
20 | | - String PREFIX = "org.erlide.core"; |
| 20 | + public static final String PREFIX = "org.erlide.core"; |
21 | 21 |
|
22 | | - String PROJECTS = PREFIX + ".projects"; |
| 22 | + public static final String PROJECTS = PREFIX + ".projects"; |
23 | 23 |
|
24 | | - String MODULE = PREFIX + ".module"; |
25 | | - String FUNCTION = PREFIX + ".function"; |
26 | | - String ARGUMENTS = PREFIX + ".arguments"; |
| 24 | + public static final String MODULE = PREFIX + ".module"; |
| 25 | + public static final String FUNCTION = PREFIX + ".function"; |
| 26 | + public static final String ARGUMENTS = PREFIX + ".arguments"; |
27 | 27 |
|
28 | | - String RUNTIME_NAME = PREFIX + ".runtime"; |
29 | | - String DEFAULT_RUNTIME_NAME = "erts"; |
| 28 | + public static final String RUNTIME_NAME = PREFIX + ".runtime"; |
| 29 | + public static final String DEFAULT_RUNTIME_NAME = "erts"; |
30 | 30 |
|
31 | | - String NODE_NAME = PREFIX + ".nodeName"; |
32 | | - String COOKIE = PREFIX + ".cookie"; |
33 | | - String START_ME = PREFIX + ".startMe"; |
34 | | - String USE_LONG_NAME = PREFIX + ".longName"; |
| 31 | + public static final String NODE_NAME = PREFIX + ".nodeName"; |
| 32 | + public static final String COOKIE = PREFIX + ".cookie"; |
| 33 | + public static final String START_ME = PREFIX + ".startMe"; |
| 34 | + public static final String USE_LONG_NAME = PREFIX + ".longName"; |
35 | 35 |
|
36 | | - String DEBUG_FLAGS = PREFIX + ".debugFlags"; // @see |
| 36 | + public static final String DEBUG_FLAGS = PREFIX + ".debugFlags"; // @see |
37 | 37 | // IErlDebugConstants |
38 | 38 |
|
39 | | - String DEBUG_INTERPRET_MODULES = PREFIX + ".interpretModules"; |
| 39 | + public static final String DEBUG_INTERPRET_MODULES = PREFIX + ".interpretModules"; |
40 | 40 |
|
41 | | - String WORKING_DIR = PREFIX + ".working_dir"; |
42 | | - String DEFAULT_WORKING_DIR = "."; |
| 41 | + public static final String WORKING_DIR = PREFIX + ".working_dir"; |
| 42 | + public static final String DEFAULT_WORKING_DIR = "."; |
43 | 43 |
|
44 | | - String EXTRA_ARGS = PREFIX + ".extra_args"; |
| 44 | + public static final String EXTRA_ARGS = PREFIX + ".extra_args"; |
45 | 45 |
|
46 | | - String CONSOLE = PREFIX + ".console"; |
47 | | - String INTERNAL = PREFIX + ".has_backend"; |
| 46 | + public static final String CONSOLE = PREFIX + ".console"; |
| 47 | + public static final String INTERNAL = PREFIX + ".has_backend"; |
48 | 48 |
|
49 | | - String DEBUG_TRACED_MODULES = ".traced_modules"; |
| 49 | + public static final String DEBUG_TRACED_MODULES = ".traced_modules"; |
| 50 | + public static final String LOAD_ALL_NODES = PREFIX + ".loadAllNodes"; |
50 | 51 |
|
51 | | - String LOAD_ALL_NODES = PREFIX + ".loadAllNodes"; |
52 | | - |
53 | | - String RESTARTABLE = PREFIX + ".restartable"; |
54 | | - |
55 | | - String MANAGED = PREFIX + ".managed"; |
56 | | - |
57 | | - String SHELL = PREFIX + ".startShell"; |
| 52 | + public static final String RESTARTABLE = PREFIX + ".restartable"; |
| 53 | + public static final String MANAGED = PREFIX + ".managed"; |
| 54 | + public static final String SHELL = PREFIX + ".startShell"; |
58 | 55 |
|
59 | 56 | } |
0 commit comments