Creates a Java process callable using some common Java options. @param mainClass the class. @return the new process callable.
(Class<?> mainClass)
| 165 | * @return the new process callable. |
| 166 | */ |
| 167 | public static ProcessCallable spawnJava(Class<?> mainClass) |
| 168 | { |
| 169 | return ProcessCallable.java(mainClass, "-Xms64M", "-Xmx4G"); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Opens the system explorer/finder to highlight a file. |
no test coverage detected