public abstract class AbstractJavaFXGriffonApplication extends javafx.application.Application implements GriffonApplication
GriffonApplication
that runs in applet mode.Modifier and Type | Field and Description |
---|---|
static java.lang.String[] |
EMPTY_ARGS |
protected java.lang.Object[] |
lock |
protected java.beans.PropertyChangeSupport |
pcs |
PROPERTY_LOCALE, PROPERTY_PHASE
Constructor and Description |
---|
AbstractJavaFXGriffonApplication() |
AbstractJavaFXGriffonApplication(java.lang.String[] args) |
Modifier and Type | Method and Description |
---|---|
void |
addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Adds the given PropertyChangeListener to the listener list.
|
void |
addPropertyChangeListener(java.lang.String propertyName,
java.beans.PropertyChangeListener listener)
Removes the given PropertyChangeListener from the listener list.
|
void |
addShutdownHandler(ShutdownHandler handler)
Registers a ShutdownHandler on this application
|
boolean |
canShutdown()
Queries any available ShutdownHandlers.
|
protected boolean |
doShutdown() |
protected void |
event(ApplicationEvent event,
java.util.List<?> args) |
protected void |
firePropertyChange(java.beans.PropertyChangeEvent event) |
protected void |
firePropertyChange(java.lang.String propertyName,
java.lang.Object oldValue,
java.lang.Object newValue) |
ActionManager |
getActionManager() |
AddonManager |
getAddonManager() |
ApplicationClassLoader |
getApplicationClassLoader() |
protected ApplicationConfigurer |
getApplicationConfigurer() |
ArtifactManager |
getArtifactManager() |
Configuration |
getConfiguration() |
ConfigurationManager |
getConfigurationManager() |
Context |
getContext() |
EventRouter |
getEventRouter() |
Injector<?> |
getInjector() |
java.util.Locale |
getLocale()
Gets the application locale.
|
org.slf4j.Logger |
getLog()
Returns a Logger instance suitable for this application.
|
MessageSource |
getMessageSource() |
MVCGroupManager |
getMvcGroupManager() |
ApplicationPhase |
getPhase()
Returns the current phase.
|
java.beans.PropertyChangeListener[] |
getPropertyChangeListeners()
Returns an array of all the listeners that were added with addPropertyChangeListener().
|
java.beans.PropertyChangeListener[] |
getPropertyChangeListeners(java.lang.String propertyName)
Returns an array of all the listeners which have been associated
with the named property.
|
ResourceHandler |
getResourceHandler() |
ResourceInjector |
getResourceInjector() |
ResourceResolver |
getResourceResolver() |
java.lang.String[] |
getStartupArgs()
Returns the arguments set on the command line (if any).
|
UIThreadManager |
getUIThreadManager() |
<W> WindowManager<W> |
getWindowManager() |
void |
initialize()
Executes the 'Initialize' life cycle phase.
|
void |
ready()
Executes the 'Ready' life cycle phase.
|
void |
removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Removes the given PropertyChangeListener from the listener list.
|
void |
removePropertyChangeListener(java.lang.String propertyName,
java.beans.PropertyChangeListener listener)
Removes the given PropertyChangeListener from the listener list.
|
void |
removeShutdownHandler(ShutdownHandler handler)
Removes a ShutdownHandler from this application
|
void |
setInjector(Injector<?> injector) |
void |
setLocale(java.util.Locale locale)
Sets the application locale.
|
void |
setLocaleAsString(java.lang.String locale)
Sets the application locale.
|
protected void |
setPhase(ApplicationPhase phase) |
protected void |
showStartingWindow() |
boolean |
shutdown()
Executes the 'Shutdown' life cycle phase.
|
void |
start(javafx.stage.Stage stage) |
void |
startup()
Executes the 'Startup' life cycle phase.
|
void |
stop() |
getHostServices, getParameters, getUserAgentStylesheet, init, launch, launch, notifyPreloader, setUserAgentStylesheet
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
createApplicationContainer
public static final java.lang.String[] EMPTY_ARGS
protected final java.lang.Object[] lock
protected final java.beans.PropertyChangeSupport pcs
public AbstractJavaFXGriffonApplication()
public AbstractJavaFXGriffonApplication(@Nonnull java.lang.String[] args)
public void start(javafx.stage.Stage stage) throws java.lang.Exception
start
in class javafx.application.Application
java.lang.Exception
public void stop() throws java.lang.Exception
stop
in class javafx.application.Application
java.lang.Exception
public void addPropertyChangeListener(@Nullable java.beans.PropertyChangeListener listener)
Observable
The listener is registered for all bound properties of this class.
addPropertyChangeListener
in interface Observable
listener
- the PropertyChangeListener to be addedObservable.removePropertyChangeListener(PropertyChangeListener)
public void addPropertyChangeListener(@Nullable java.lang.String propertyName, @Nullable java.beans.PropertyChangeListener listener)
Observable
The listener is registered an specific property of this class.
addPropertyChangeListener
in interface Observable
propertyName
- The name of the property to listen on.listener
- the PropertyChangeListener to be addedObservable.removePropertyChangeListener(String, PropertyChangeListener)
public void removePropertyChangeListener(@Nullable java.beans.PropertyChangeListener listener)
Observable
This method should be used to remove PropertyChangeListeners that were registered for all bound properties of this class.
removePropertyChangeListener
in interface Observable
listener
- the PropertyChangeListener to be removedObservable.addPropertyChangeListener(PropertyChangeListener)
public void removePropertyChangeListener(@Nullable java.lang.String propertyName, @Nullable java.beans.PropertyChangeListener listener)
Observable
This method should be used to remove PropertyChangeListeners that were registered for an specific property of this class.
removePropertyChangeListener
in interface Observable
propertyName
- The name of the property that was listened on.listener
- the PropertyChangeListener to be removedObservable.addPropertyChangeListener(String, PropertyChangeListener)
@Nonnull public java.beans.PropertyChangeListener[] getPropertyChangeListeners()
Observable
getPropertyChangeListeners
in interface Observable
PropertyChangeListeners
added or an empty array if no
listeners have been added.@Nonnull public java.beans.PropertyChangeListener[] getPropertyChangeListeners(@Nullable java.lang.String propertyName)
Observable
getPropertyChangeListeners
in interface Observable
propertyName
- The name of the property being listened toPropertyChangeListeners
associated with
the named property. If no such listeners have been added,
or if propertyName
is null, an empty array is
returned.protected void firePropertyChange(@Nonnull java.beans.PropertyChangeEvent event)
protected void firePropertyChange(@Nonnull java.lang.String propertyName, @Nullable java.lang.Object oldValue, @Nullable java.lang.Object newValue)
@Nonnull public java.util.Locale getLocale()
GriffonApplication
getLocale
in interface GriffonApplication
public void setLocale(@Nonnull java.util.Locale locale)
GriffonApplication
This is a bound property.
setLocale
in interface GriffonApplication
locale
- the Locale value to use@Nonnull public java.lang.String[] getStartupArgs()
GriffonApplication
getStartupArgs
in interface GriffonApplication
@Nonnull public org.slf4j.Logger getLog()
GriffonApplication
getLog
in interface GriffonApplication
public void setLocaleAsString(@Nullable java.lang.String locale)
GriffonApplication
This is a bound property.
setLocaleAsString
in interface GriffonApplication
locale
- a literal representation of a Localepublic void addShutdownHandler(@Nonnull ShutdownHandler handler)
GriffonApplication
addShutdownHandler
in interface GriffonApplication
handler
- the shutdown handler to be registered; null and/or
duplicated values should be ignoredpublic void removeShutdownHandler(@Nonnull ShutdownHandler handler)
GriffonApplication
removeShutdownHandler
in interface GriffonApplication
handler
- the shutdown handler to be removed; null and/or
duplicated values should be ignored@Nonnull public ApplicationPhase getPhase()
GriffonApplication
getPhase
in interface GriffonApplication
protected void setPhase(@Nonnull ApplicationPhase phase)
@Nonnull public ApplicationClassLoader getApplicationClassLoader()
getApplicationClassLoader
in interface GriffonApplication
@Nonnull public Context getContext()
getContext
in interface GriffonApplication
@Nonnull public Configuration getConfiguration()
getConfiguration
in interface GriffonApplication
@Nonnull public ConfigurationManager getConfigurationManager()
getConfigurationManager
in interface GriffonApplication
@Nonnull public UIThreadManager getUIThreadManager()
getUIThreadManager
in interface GriffonApplication
@Nonnull public EventRouter getEventRouter()
getEventRouter
in interface GriffonApplication
@Nonnull public ArtifactManager getArtifactManager()
getArtifactManager
in interface GriffonApplication
@Nonnull public ActionManager getActionManager()
getActionManager
in interface GriffonApplication
@Nonnull public AddonManager getAddonManager()
getAddonManager
in interface GriffonApplication
@Nonnull public MVCGroupManager getMvcGroupManager()
getMvcGroupManager
in interface GriffonApplication
@Nonnull public MessageSource getMessageSource()
getMessageSource
in interface GriffonApplication
@Nonnull public ResourceResolver getResourceResolver()
getResourceResolver
in interface GriffonApplication
@Nonnull public ResourceHandler getResourceHandler()
getResourceHandler
in interface GriffonApplication
@Nonnull public ResourceInjector getResourceInjector()
getResourceInjector
in interface GriffonApplication
@Nonnull public Injector<?> getInjector()
getInjector
in interface GriffonApplication
public void setInjector(@Nonnull Injector<?> injector)
@Nonnull public <W> WindowManager<W> getWindowManager()
getWindowManager
in interface GriffonApplication
protected ApplicationConfigurer getApplicationConfigurer()
public void initialize()
GriffonApplication
initialize
in interface GriffonApplication
public void ready()
GriffonApplication
ready
in interface GriffonApplication
protected void showStartingWindow()
public boolean canShutdown()
GriffonApplication
canShutdown
in interface GriffonApplication
public boolean shutdown()
GriffonApplication
shutdown
in interface GriffonApplication
protected boolean doShutdown()
public void startup()
GriffonApplication
startup
in interface GriffonApplication
protected void event(@Nonnull ApplicationEvent event, @Nullable java.util.List<?> args)