Skip navigation links
A C D E G H I J L N P R S T U V 

A

accessibilityActiveProperty - Static variable in class javafx.application.Platform
 
accessibilityActiveProperty() - Static method in class javafx.application.Platform
Indicates whether or not accessibility is active.
Application - Class in javafx.application
Application class from which JavaFX applications extend.
Application() - Constructor for class javafx.application.Application
Constructs a new Application instance.
application - Variable in class javafx.application.Preloader.StateChangeNotification
 
Application.Parameters - Class in javafx.application
Encapsulates the set of parameters for an application.

C

cause - Variable in class javafx.application.Preloader.ErrorNotification
 
ConditionalFeature - Enum in javafx.application
Defines a set of conditional (optional) features.
ConditionalFeature() - Constructor for enum javafx.application.ConditionalFeature
 

D

delegate - Variable in class javafx.application.HostServices
 
details - Variable in class javafx.application.Preloader.ErrorNotification
 
details - Variable in class javafx.application.Preloader.ProgressNotification
 

E

enterNestedEventLoop(Object) - Static method in class javafx.application.Platform
Enter a nested event loop and block until the corresponding exitNestedEventLoop call is made.
ErrorNotification(String, String, Throwable) - Constructor for class javafx.application.Preloader.ErrorNotification
Constructs an error notification.
exit() - Static method in class javafx.application.Platform
Causes the JavaFX application to terminate.
exitNestedEventLoop(Object, Object) - Static method in class javafx.application.Platform
Exit a nested event loop and unblock the caller of the corresponding enterNestedEventLoop.

G

getApplication() - Method in class javafx.application.Preloader.StateChangeNotification
Returns the Application instance associated with this notification.
getCause() - Method in class javafx.application.Preloader.ErrorNotification
Retrieves the Exception or Error associated with this error notification, if any.
getCodeBase() - Method in class javafx.application.HostServices
Gets the code base URI for this application.
getDetails() - Method in class javafx.application.Preloader.ErrorNotification
Retrieves the description of the error.
getDetails() - Method in class javafx.application.Preloader.ProgressNotification
Retrieves the details of the progress notification
getDocumentBase() - Method in class javafx.application.HostServices
Gets the document base URI for this application.
getHostServices() - Method in class javafx.application.Application
Gets the HostServices provider for this application.
getLocation() - Method in class javafx.application.Preloader.ErrorNotification
Retrieves the URL associated with this error, if any.
getNamed() - Method in class javafx.application.Application.Parameters
Retrieves a read-only map of the named parameters.
getParameters() - Method in class javafx.application.Application
Retrieves the parameters for this Application, including any arguments passed on the command line.
getProgress() - Method in class javafx.application.Preloader.ProgressNotification
Retrieves the progress for this notification.
getRaw() - Method in class javafx.application.Application.Parameters
Retrieves a read-only list of the raw arguments.
getType() - Method in class javafx.application.Preloader.StateChangeNotification
Returns the type of notification.
getUnnamed() - Method in class javafx.application.Application.Parameters
Retrieves a read-only list of the unnamed parameters.
getUserAgentStylesheet() - Static method in class javafx.application.Application
Get the user agent stylesheet used by the whole application.

H

handleApplicationNotification(Preloader.PreloaderNotification) - Method in class javafx.application.Preloader
Indicates an application-generated notification.
handleErrorNotification(Preloader.ErrorNotification) - Method in class javafx.application.Preloader
Called when an error occurs.
handleProgressNotification(Preloader.ProgressNotification) - Method in class javafx.application.Preloader
Indicates download progress.
handleStateChangeNotification(Preloader.StateChangeNotification) - Method in class javafx.application.Preloader
Indicates a change in application state.
hostServices - Variable in class javafx.application.Application
 
HostServices - Class in javafx.application
This class provides HostServices for an Application.
HostServices(Application) - Constructor for class javafx.application.HostServices
Package scope constructor to create the HostServices object.

I

init() - Method in class javafx.application.Application
The application initialization method.
isAccessibilityActive() - Static method in class javafx.application.Platform
Gets the value of the property accessibilityActive.
isFxApplicationThread() - Static method in class javafx.application.Platform
Returns true if the calling thread is the JavaFX Application Thread.
isImplicitExit() - Static method in class javafx.application.Platform
Gets the value of the implicitExit attribute.
isNestedLoopRunning() - Static method in class javafx.application.Platform
Checks whether a nested event loop is running, returning true to indicate that one is, and false if there are no nested event loops currently running.
isSupported(ConditionalFeature) - Static method in class javafx.application.Platform
Queries whether a specific conditional feature is supported by the platform.

J

javafx.application - package javafx.application
 

L

launch(Class<? extends Application>, String...) - Static method in class javafx.application.Application
Launch a standalone application.
launch(String...) - Static method in class javafx.application.Application
Launch a standalone application.
lineSeparator - Static variable in class javafx.application.Preloader
 
location - Variable in class javafx.application.Preloader.ErrorNotification
 

N

notificationType - Variable in class javafx.application.Preloader.StateChangeNotification
 
notifyPreloader(Preloader.PreloaderNotification) - Method in class javafx.application.Application
Notifies the preloader with an application-generated notification.

P

Parameters() - Constructor for class javafx.application.Application.Parameters
Constructs a new Parameters instance.
Platform - Class in javafx.application
Application platform support class.
Platform() - Constructor for class javafx.application.Platform
 
Preloader - Class in javafx.application
Class that is extended to define an optional preloader for a JavaFX Application.
Preloader() - Constructor for class javafx.application.Preloader
 
Preloader.ErrorNotification - Class in javafx.application
Preloader notification that reports an error.
Preloader.PreloaderNotification - Interface in javafx.application
Marker interface for all Preloader notification.
Preloader.ProgressNotification - Class in javafx.application
Preloader notification that reports progress.
Preloader.StateChangeNotification - Class in javafx.application
A notification that signals a change in the application state.
Preloader.StateChangeNotification.Type - Enum in javafx.application
Enum that defines the type of change associated with this notification
progress - Variable in class javafx.application.Preloader.ProgressNotification
 
ProgressNotification(double) - Constructor for class javafx.application.Preloader.ProgressNotification
Constructs a progress notification.
ProgressNotification(double, String) - Constructor for class javafx.application.Preloader.ProgressNotification
Constructs a progress notification.

R

requestNextPulse() - Static method in class javafx.application.Platform
Requests the Java Runtime to perform a pulse.
resolveURI(String, String) - Method in class javafx.application.HostServices
Resolves the specified relative URI against the base URI and returns the resolved URI.
runLater(Runnable) - Static method in class javafx.application.Platform
Run the specified Runnable on the JavaFX Application Thread at some unspecified time in the future.

S

setImplicitExit(boolean) - Static method in class javafx.application.Platform
Sets the implicitExit attribute to the specified value.
setUserAgentStylesheet(String) - Static method in class javafx.application.Application
Set the user agent stylesheet used by the whole application.
showDocument(String) - Method in class javafx.application.HostServices
Opens the specified URI in a new browser window or tab.
start(Stage) - Method in class javafx.application.Application
The main entry point for all JavaFX applications.
startup(Runnable) - Static method in class javafx.application.Platform
This method starts the JavaFX runtime.
StateChangeNotification(Preloader.StateChangeNotification.Type) - Constructor for class javafx.application.Preloader.StateChangeNotification
Constructs a StateChangeNotification of the specified type.
StateChangeNotification(Preloader.StateChangeNotification.Type, Application) - Constructor for class javafx.application.Preloader.StateChangeNotification
Constructs an StateChangeNotification of the specified type for the specified application.
stop() - Method in class javafx.application.Application
This method is called when the application should stop, and provides a convenient place to prepare for application exit and destroy resources.
STYLESHEET_CASPIAN - Static variable in class javafx.application.Application
Constant for user agent stylesheet for the "Caspian" theme.
STYLESHEET_MODENA - Static variable in class javafx.application.Application
Constant for user agent stylesheet for the "Modena" theme.

T

toString() - Method in class javafx.application.Preloader.ErrorNotification
Returns a string representation of this ErrorNotification object.
Type() - Constructor for enum javafx.application.Preloader.StateChangeNotification.Type
 

U

userAgentStylesheet - Static variable in class javafx.application.Application
 

V

valueOf(String) - Static method in enum javafx.application.ConditionalFeature
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javafx.application.Preloader.StateChangeNotification.Type
Returns the enum constant of this type with the specified name.
values() - Static method in enum javafx.application.ConditionalFeature
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum javafx.application.Preloader.StateChangeNotification.Type
Returns an array containing the constants of this enum type, in the order they are declared.
A C D E G H I J L N P R S T U V 
Skip navigation links