This commit is contained in:
2021-04-26 16:52:12 +02:00
parent de8d1e9756
commit 909e241c5b
5 changed files with 204 additions and 5 deletions

View File

@@ -69,7 +69,9 @@ public class MainController implements Initializable {
return hostServices;
}
// TODO: Document
/**
* @return All subcontrollers of this controller
*/
public List<Controller> getInnerControllers() {
return List.of(editorController, filetreeController, modelineController, menubarController);
}

View File

@@ -1,6 +1,14 @@
package app;
/**
* A launcher class to point towards as the start point for a packaged JAR
*/
public class MainLauncher {
/**
* The root function of the call stack
*
* @param args Commandline arguments
*/
public static void main(String[] args) {
Main.main(args);
}