Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc toolkit interfaces #340

Merged
merged 2 commits into from
Dec 19, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@

import javafx.application.Application;

/**
* Interface that configures a few necessary System properties before launching an application with
* its given parameters
*/
public interface ApplicationLauncher {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
import javafx.scene.Scene;
import javafx.stage.Stage;

/**
* Interface that sets up an {@link Application}, {@link Stage}, {@link Scene}, or {@link Parent rootNode} on the
* {@code JavaFX Application Thread} as well as cleaning up the application.
*/
public interface ToolkitService {

/**
Expand Down