Flush
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user