public abstract class MvvmfxCdiApplication extends Object
| Constructor and Description |
|---|
MvvmfxCdiApplication() |
| Modifier and Type | Method and Description |
|---|---|
javafx.application.Application.Parameters |
getParameters()
Returns the application parameters.
|
static void |
launch(String... args)
This method is equivalent to javafx's
Application.launch(String...). |
abstract void |
start(javafx.stage.Stage stage)
Override this method to setup your application.
|
public static void launch(String... args)
Application.launch(String...). You have to call
this method to startup you application.
Please notice that there is not launch method that takes a parameter of type Class as first param as it
is available in Application. The reason is that we need this method internally to
support the startup with CDI.args - the arguments from the console interface.public abstract void start(javafx.stage.Stage stage)
throws Exception
Application.start(javafx.stage.Stage) method.Exceptionpublic javafx.application.Application.Parameters getParameters()
Application.getParameters().Copyright © 2014 Saxonia Systems AG. All rights reserved.