Method to tell GATE if it is being run inside a JVM sandbox. If true then GATE will not attempt to load any local configuration information during Initialisation making it possible to use GATE from within unsigned applets and web start applications. @param sandboxed true if GATE is to be run in a sa
(boolean sandboxed)
| 192 | * @param sandboxed true if GATE is to be run in a sandbox, false otherwise |
| 193 | */ |
| 194 | public static void runInSandbox(boolean sandboxed) { |
| 195 | if (initFinished) |
| 196 | throw new IllegalStateException("Sandbox status cannot be changed after GATE has been initialised!"); |
| 197 | |
| 198 | Gate.sandboxed = sandboxed; |
| 199 | } |
| 200 | |
| 201 | /** Get the minimum supported version of the JDK */ |
| 202 | public static String getMinJdkVersion() { |