Launches an application with no arguments. @param type the class to be launched
(Class<?> type)
| 3256 | * @param type the class to be launched |
| 3257 | */ |
| 3258 | public static void launch(Class<?> type) { |
| 3259 | launch(type, null, null); |
| 3260 | } |
| 3261 | |
| 3262 | /** |
| 3263 | * Launches an application with an array of string arguments. |
no test coverage detected