A B C D E F G H I K L M N O P Q R S T U V W
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- AbstractBean - Class in org.jdesktop.application
-
An encapsulation of the PropertyChangeSupport methods based on java.beans.PropertyChangeSupport.
- AbstractBean() - Constructor for class org.jdesktop.application.AbstractBean
- Action - Annotation Type in org.jdesktop.application
-
Marks a method that will be used to define a Swing
Action
object'sactionPerformed
method. - ACTION - org.jdesktop.application.Task.BlockingScope
-
Block an
Action
while the task is executing, typically by temporarily disabling it. - Action.Parameter - Annotation Type in org.jdesktop.application
-
This annotation is not used yet
- ActionManager - Class in org.jdesktop.application
-
The application's
ActionManager
provides read-only cached access toActionMaps
that contain one entry for each method marked with the@Action
annotation in a class. - ActionManager(ApplicationContext) - Constructor for class org.jdesktop.application.ActionManager
- actionPerformed(ActionEvent) - Method in class org.jdesktop.application.ApplicationAction
-
This method implements this Action's behavior.
- Adapter() - Constructor for class org.jdesktop.application.TaskListener.Adapter
- addExitListener(Application.ExitListener) - Method in class org.jdesktop.application.Application
-
Adds an
ExitListener
to the list. - addPropertyChangeListener(PropertyChangeListener) - Method in class org.jdesktop.application.AbstractBean
-
Add a PropertyChangeListener to the listener list.
- addPropertyChangeListener(String, PropertyChangeListener) - Method in class org.jdesktop.application.AbstractBean
-
Add a PropertyChangeListener for a specific property.
- addTaskListener(TaskListener<T, V>) - Method in class org.jdesktop.application.Task
-
Adds a
TaskListener
to this Task. - addTaskService(TaskService) - Method in class org.jdesktop.application.ApplicationContext
-
Register a new TaskService with the application.
- AppHelper - Class in org.jdesktop.application.utils
-
Class containing help methods on application level.
- Application - Class in org.jdesktop.application
-
The base class for Swing applications.
- Application() - Constructor for class org.jdesktop.application.Application
-
Not to be called directly, see
launch
. - APPLICATION - org.jdesktop.application.Task.BlockingScope
-
Block all of the application's top level windows, typically by showing a application-modal dialog.
- Application.ExitListener - Interface in org.jdesktop.application
-
Gives the Application a chance to veto an attempt to exit/quit.
- ApplicationAction - Class in org.jdesktop.application
-
The
Action
class used to implement the @Action annotation. - ApplicationAction(ApplicationActionMap, ResourceMap, String, Method, String, boolean, String, String, Task.BlockingScope) - Constructor for class org.jdesktop.application.ApplicationAction
-
Construct an ApplicationAction that implements an @Action.
- ApplicationActionMap - Class in org.jdesktop.application
-
An
ActionMap
class where each entry corresponds to an @Action method from a single actionsClass (i.e. - ApplicationActionMap(ApplicationContext, Class, Object, ResourceMap) - Constructor for class org.jdesktop.application.ApplicationActionMap
-
Creates
ApplicationActionMap
object. - ApplicationContext - Class in org.jdesktop.application
-
A singleton that manages shared objects, like actions, resources, and tasks, for
Applications
. - ApplicationContext() - Constructor for class org.jdesktop.application.ApplicationContext
- awaitTermination(long, TimeUnit) - Method in class org.jdesktop.application.TaskService
-
Blocks until all tasks have completed execution after a shutdown request, or the timeout occurs, or the current thread is interrupted, whichever happens first.
B
- block() - Method in annotation type org.jdesktop.application.Action
-
The parameter indicates that the GUI should be blocked while the background task is running.
- block() - Method in class org.jdesktop.application.Task.InputBlocker
-
Block input to the GUI per the
scope
andtarget
properties.
C
- callTarget(Object) - Method in class org.jdesktop.application.utils.OSXAdapter
- cancelled() - Method in class org.jdesktop.application.Task
-
Called when this Task has been cancelled by
SwingWorker.cancel(boolean)
. - cancelled(TaskEvent<Void>) - Method in class org.jdesktop.application.TaskListener.Adapter
- cancelled(TaskEvent<Void>) - Method in interface org.jdesktop.application.TaskListener
-
Called after the Task's
cancelled
method is called. - canExit(EventObject) - Method in interface org.jdesktop.application.Application.ExitListener
-
The method is called before the Application exits.
- COMPONENT - org.jdesktop.application.Task.BlockingScope
-
Block a component while the task is executing, typically by temporarily disabling it.
- computeVirtualGraphicsBounds() - Static method in class org.jdesktop.application.utils.SwingHelper
-
Calculates virtual graphic bounds.
- configureWindow(Window) - Method in class org.jdesktop.application.SingleFrameApplication
-
Initialize the hierarchy with the specified root by injecting resources.
- containsKey(String) - Method in class org.jdesktop.application.ResourceMap
-
Returns true if this resourceMap or its parent (recursively) contains the specified key.
- containsResourceKey(String) - Method in class org.jdesktop.application.ResourceMap
-
By default this method is used by
getObject
to see if a resource is defined by this ResourceMap. - createResourceMap(ClassLoader, ResourceMap, List<String>) - Method in class org.jdesktop.application.ResourceManager
-
Called by
ResourceManager.getResourceMap(java.lang.Class, java.lang.Class)
to constructResourceMaps
.
D
- DEFAULT - org.jdesktop.application.utils.PlatformType
- DEFAULT_NAME - Static variable in class org.jdesktop.application.TaskService
- defaultLocation(Window) - Static method in class org.jdesktop.application.utils.SwingHelper
-
Calculates default location for the specified window.
- deleteFile(String) - Method in class org.jdesktop.application.LocalStorage
-
Deletes the entry specified by the
name
parameter. - disabledProperty() - Method in annotation type org.jdesktop.application.Action
-
The parameter binds the disabled state of the @Action to the current value of a property.
- doInBackground(TaskEvent<Void>) - Method in class org.jdesktop.application.TaskListener.Adapter
- doInBackground(TaskEvent<Void>) - Method in interface org.jdesktop.application.TaskListener
-
Called just before the Task's
doInBackground
method is called, i.e. - done() - Method in class org.jdesktop.application.Task
E
- enabledProperty() - Method in annotation type org.jdesktop.application.Action
-
The parameter binds the enabled state of the @Action to the current value of a property.
- end() - Method in class org.jdesktop.application.Application
-
Called by
exit
to terminate the application. - end() - Method in class org.jdesktop.application.SingleFrameApplication
- execute(Task) - Method in class org.jdesktop.application.TaskService
-
Executes the task.
- exit() - Method in class org.jdesktop.application.Application
-
Gracefully shutdowns the application, calls
exit(null)
This version of exit() is convenient if the decision to exit the application wasn't triggered by an event. - exit(EventObject) - Method in class org.jdesktop.application.Application
-
Gracefully shutdowns the application.
F
- failed(Throwable) - Method in class org.jdesktop.application.Task
-
Called when an execution of this Task fails and an
ExecutionExecption
is thrown byget
. - failed(TaskEvent<Throwable>) - Method in class org.jdesktop.application.TaskListener.Adapter
- failed(TaskEvent<Throwable>) - Method in interface org.jdesktop.application.TaskListener
-
Called after the Task's
failed
completion method is called. - findRootPaneContainer(Component) - Static method in class org.jdesktop.application.utils.SwingHelper
-
Finds the nearest RootPaneContainer of the provided Component.
- finished() - Method in class org.jdesktop.application.Task
-
Called unconditionally (in a
finally
clause) after one of the completion methods,succeeded
,failed
,cancelled
, orinterrupted
, runs. - finished(TaskEvent<Void>) - Method in class org.jdesktop.application.TaskListener.Adapter
- finished(TaskEvent<Void>) - Method in interface org.jdesktop.application.TaskListener
-
Called after the Task's
finished
method is called. - firePropertyChange(PropertyChangeEvent) - Method in class org.jdesktop.application.AbstractBean
-
Fire an existing PropertyChangeEvent
- firePropertyChange(String, Object, Object) - Method in class org.jdesktop.application.AbstractBean
-
Called whenever the value of a bound property is set.
- forType(Class) - Static method in class org.jdesktop.application.ResourceConverter
-
Returns
ResourceConverter
for the specified type - FrameView - Class in org.jdesktop.application
- FrameView(Application) - Constructor for class org.jdesktop.application.FrameView
- FREE_BSD - org.jdesktop.application.utils.PlatformType
G
- getAction() - Method in class org.jdesktop.application.Task.InputBlocker
-
The ApplicationAction (
@Action
) that caused the task to be executed. - getActionArgument(Class, String, ActionEvent) - Method in class org.jdesktop.application.ApplicationAction
-
Provides parameter values to @Action methods.
- getActionManager() - Method in class org.jdesktop.application.ApplicationContext
-
Return this application's ActionManager.
- getActionMap() - Method in class org.jdesktop.application.ActionManager
-
The
ActionMap
chain for the entireApplication
. - getActionMap() - Method in class org.jdesktop.application.ApplicationContext
-
Returns the shared
ActionMap
chain for the entireApplication
. - getActionMap(Class, Object) - Method in class org.jdesktop.application.ActionManager
-
Returns the
ApplicationActionMap
chain for the specified actions class and target object. - getActionMap(Class, Object) - Method in class org.jdesktop.application.ApplicationContext
-
Returns the
ApplicationActionMap
chain for the specified actions class and target object. - getActionMap(Object) - Method in class org.jdesktop.application.ApplicationContext
-
Defined as
getActionMap(actionsObject.getClass(), actionsObject)
. - getActionsClass() - Method in class org.jdesktop.application.ApplicationActionMap
-
Returns the base class for actions retrieval
- getActionsObject() - Method in class org.jdesktop.application.ApplicationActionMap
-
Returns the object with actions
- getApplication() - Method in class org.jdesktop.application.ApplicationContext
-
The
Application
singleton, or null iflaunch
hasn't been called yet. - getApplication() - Method in class org.jdesktop.application.Task
- getApplication() - Method in class org.jdesktop.application.View
-
Returns the
Application
that's responsible for showing/hiding this View. - getApplicationBundleNames() - Method in class org.jdesktop.application.ResourceManager
-
The names of the ResourceBundles to be shared by the entire application.
- getApplicationClass() - Method in class org.jdesktop.application.ApplicationContext
-
Returns the application's class or null if the application hasn't been launched and this property hasn't been set.
- getAutoUpdateForegroundTask() - Method in class org.jdesktop.application.TaskMonitor
-
True if the
foregroundTask
property should be automatically reset to the oldest Task in the queue when it finishes running. - getBoolean(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Boolean.class).
- getBounds() - Method in class org.jdesktop.application.session.WindowState
- getBundleNames() - Method in class org.jdesktop.application.ResourceMap
-
Returns the names of the ResourceBundles that define the resources contained by this ResourceMap.
- getByte(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Byte.class).
- getClassBundleNames(Class) - Method in class org.jdesktop.application.ResourceManager
-
Map from a class to a list of the names of the
ResourceBundles
specific to the class. - getClassLoader() - Method in class org.jdesktop.application.ResourceMap
-
Returns the ClassLoader used to load the ResourceBundles for this ResourceMap.
- getClipboard() - Method in class org.jdesktop.application.ApplicationContext
-
Return a shared
Clipboard
. - getColor(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Color.class).
- getColumnWidths() - Method in class org.jdesktop.application.session.TableState
- getComponent() - Method in exception org.jdesktop.application.ResourceMap.PropertyInjectionException
-
Returns the component whose property could not be set
- getComponent() - Method in class org.jdesktop.application.View
-
Returns the main
JComponent
for this View. - getContext() - Method in class org.jdesktop.application.ActionManager
- getContext() - Method in class org.jdesktop.application.Application
-
The ApplicationContext for this Application.
- getContext() - Method in class org.jdesktop.application.ApplicationActionMap
-
Returns the
ApplicationContext
- getContext() - Method in class org.jdesktop.application.LocalStorage
- getContext() - Method in class org.jdesktop.application.ResourceManager
- getContext() - Method in class org.jdesktop.application.SessionStorage
-
Returns
ApplicationContext
which was used during creation of thisSessionStorage
object. - getContext() - Method in class org.jdesktop.application.Task
- getContext() - Method in class org.jdesktop.application.View
-
Gets the
ApplicationContext
for theApplication
that's responsible for showing/hiding this View. - getDescription() - Method in class org.jdesktop.application.Task
-
Return the value of the
description
property. - getDirectory() - Method in class org.jdesktop.application.LocalStorage
-
Returns the directory where the local storage is located
- getDividerLocation() - Method in class org.jdesktop.application.session.SplitPaneState
- getDouble(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Double.class).
- getExecutionDuration(TimeUnit) - Method in class org.jdesktop.application.Task
-
Returns the length of time this Task has run.
- getExitListeners() - Method in class org.jdesktop.application.Application
-
All of the
ExitListeners
added so far. - getField() - Method in exception org.jdesktop.application.ResourceMap.InjectFieldException
-
Return the Field whose value couldn't be set.
- getFloat(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Float.class).
- getFocusOwner() - Method in class org.jdesktop.application.ApplicationContext
-
Returns the application's focus owner.
- getFont(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Font.class).
- getForegroundTask() - Method in class org.jdesktop.application.TaskMonitor
-
Indicates the
Task
whose status the ApplicationContext's GUI wants to be displayed, typically in the main window's status bar. - getFrame() - Method in class org.jdesktop.application.FrameView
-
Return the JFrame used to show this View
- getFrameState() - Method in class org.jdesktop.application.session.WindowState
- getGraphicsConfigurationBounds() - Method in class org.jdesktop.application.session.WindowState
- getIcon(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Icon.class).
- getImageIcon(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, ImageIcon.class).
- getInputBlocker() - Method in class org.jdesktop.application.Task
-
Return this task's InputBlocker.
- getInstance() - Static method in class org.jdesktop.application.Application
-
The
Application
singleton. - getInstance(Class<T>) - Static method in class org.jdesktop.application.Application
-
The
Application
singleton. - getInteger(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Integer.class).
- getKey() - Method in exception org.jdesktop.application.ResourceMap.InjectFieldException
-
Returns the type of the name of resource for which lookup failed.
- getKey() - Method in exception org.jdesktop.application.ResourceMap.LookupException
-
Returns the type of the name of resource for which lookup failed.
- getKey() - Method in exception org.jdesktop.application.ResourceMap.PropertyInjectionException
-
Returns the the name of resource whose value was to be used to set the property
- getKeyCode(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getKeyStroke(key).getKeyCode().
- getKeyStroke(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, KeyStroke.class).
- getLocalStorage() - Method in class org.jdesktop.application.ApplicationContext
-
The shared
LocalStorage
object. - getLong(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Long.class).
- getMainFrame() - Method in class org.jdesktop.application.SingleFrameApplication
-
Return the JFrame used to show this application.
- getMainView() - Method in class org.jdesktop.application.SingleFrameApplication
-
Gets the main view of the application
- getMenuBar() - Method in class org.jdesktop.application.View
-
Returns the main
JMenuBar
for this View. - getMessage() - Method in class org.jdesktop.application.Task
-
Return the value of the
message
property. - getMessageDuration(TimeUnit) - Method in class org.jdesktop.application.Task
-
Returns the length of time that has elapsed since the
message
property was last set. - getName() - Method in class org.jdesktop.application.ApplicationAction
-
The name of this Action.
- getName() - Method in class org.jdesktop.application.TaskService
-
Gets the name of this task service
- getName() - Method in enum org.jdesktop.application.utils.PlatformType
- getObject(String, Class) - Method in class org.jdesktop.application.ResourceMap
-
Returns the value of the resource named key, or null if no resource with that name exists.
- getOrientation() - Method in class org.jdesktop.application.session.SplitPaneState
- getParent() - Method in class org.jdesktop.application.ResourceMap
-
Returns the parent ResourceMap, or null.
- getPatterns() - Method in enum org.jdesktop.application.utils.PlatformType
- getPlatform() - Method in class org.jdesktop.application.ResourceManager
-
The value of the special Application ResourceMap resource named "platform".
- getPlatform() - Method in class org.jdesktop.application.ResourceMap
- getPlatform() - Static method in class org.jdesktop.application.utils.AppHelper
-
Determines a platform type the application is running on.
- getProperty(Component) - Method in class org.jdesktop.application.SessionStorage
-
If a
sessionState PropertySupport
object exists for the specified Component return it, otherwise return null. - getProperty(Class) - Method in class org.jdesktop.application.SessionStorage
-
Returns the
PropertySupport
object that wasregistered
for the specified class or a superclass. - getPropertyChangeListeners() - Method in class org.jdesktop.application.AbstractBean
-
An array of all of the
PropertyChangeListeners
added so far. - getPropertyName() - Method in exception org.jdesktop.application.ResourceMap.PropertyInjectionException
-
Returns the the name of property that could not be set
- getProxy() - Method in class org.jdesktop.application.ApplicationAction
-
Return the proxy for this action or null.
- getProxyActions() - Method in class org.jdesktop.application.ApplicationActionMap
-
All of the
@ProxyActions
recursively defined by thisApplicationActionMap
and its parent ancestors. - getProxySource() - Method in class org.jdesktop.application.ApplicationAction
-
Return the value that becomes the ActionEvent source before the ActionEvent is passed along to the proxy Action.
- getResource(String) - Method in class org.jdesktop.application.ResourceMap
-
By default this method is used by
getObject
to look up resource values in the internal representation of theResourceBundles
named when this ResourceMap was constructed. - getResourceFolder() - Method in class org.jdesktop.application.ResourceManager
-
Returns resources subpackage name
- getResourceKeySet() - Method in class org.jdesktop.application.ResourceMap
-
By default this method is used by
keySet
to get the names of the resources defined in this ResourceMap. - getResourceManager() - Method in class org.jdesktop.application.ApplicationContext
-
The application's
ResourceManager
provides read-only cached access to resources in ResourceBundles via theResourceMap
class. - getResourceMap() - Method in class org.jdesktop.application.ApplicationAction
-
The resourceMap for this Action.
- getResourceMap() - Method in class org.jdesktop.application.ApplicationContext
-
Returns the
chain
of ResourceMaps that's shared by the entire application, beginning with the one defined for the Application class, i.e. - getResourceMap() - Method in class org.jdesktop.application.ResourceManager
-
Returns the chain of ResourceMaps that's shared by the entire application, beginning with the resources defined for the application's class, i.e.
- getResourceMap() - Method in class org.jdesktop.application.Task
-
Returns the
ResourceMap
used by the constructor to initialize thetitle
,message
, etc properties, and by themessage
method to look up format strings. - getResourceMap() - Method in class org.jdesktop.application.View
-
Gets
ResourceMap
for this View. - getResourceMap(Class) - Method in class org.jdesktop.application.ApplicationContext
-
Returns a
chain
of two or more ResourceMaps. - getResourceMap(Class) - Method in class org.jdesktop.application.ResourceManager
-
Return the ResourcedMap chain for the specified class.
- getResourceMap(Class, Class) - Method in class org.jdesktop.application.ApplicationContext
-
Returns a
chain
of two or more ResourceMaps. - getResourceMap(Class, Class) - Method in class org.jdesktop.application.ResourceManager
-
Returns a
chain
ofResourceMaps
that encapsulate theResourceBundles
for each class fromstartClass
to (including)stopClass
. - getResourcesDir() - Method in class org.jdesktop.application.ResourceMap
-
Returns the resources directory that contains all of the ResourceBundles in this ResourceMap.
- getResourceSuffix() - Method in enum org.jdesktop.application.utils.PlatformType
- getRootPane() - Method in class org.jdesktop.application.FrameView
- getRootPane() - Method in class org.jdesktop.application.View
-
Gets the
JRootPane
for this View. - getScope() - Method in class org.jdesktop.application.Task.InputBlocker
-
Defines the extent to which the GUI is blocked while the task is being executed.
- getScreenCount() - Method in class org.jdesktop.application.session.WindowState
- getSelectedIndex() - Method in class org.jdesktop.application.session.TabbedPaneState
- getSessionState(Component) - Method in interface org.jdesktop.application.session.PropertySupport
-
Return the value of the
sessionState
property, typically a Java bean or a Collection the defines theComponent
state that should be preserved across Application sessions. - getSessionState(Component) - Method in class org.jdesktop.application.session.SplitPaneProperty
-
Returns a
SplitPaneState
object forJSplitPane c
. - getSessionState(Component) - Method in class org.jdesktop.application.session.TabbedPaneProperty
-
Returns a
TabbedPaneState
object forJTabbedPane c
. - getSessionState(Component) - Method in class org.jdesktop.application.session.TableProperty
- getSessionState(Component) - Method in class org.jdesktop.application.session.WindowProperty
-
Returns a
WindowState
object forWindow c
. - getSessionStorage() - Method in class org.jdesktop.application.ApplicationContext
-
The shared
SessionStorage
object. - getShort(String) - Method in class org.jdesktop.application.ResourceMap
-
A convenience method that's shorthand for calling: getObject(key, Short.class).
- getStatusBar() - Method in class org.jdesktop.application.View
-
Returns the Status bar for this View.
- getStorageLimit() - Method in class org.jdesktop.application.LocalStorage
-
Gets the limit of the local storage
- getString(String, Object...) - Method in class org.jdesktop.application.ResourceMap
-
If no arguments are specified, return the String value of the resource named key.
- getTabCount() - Method in class org.jdesktop.application.session.TabbedPaneState
- getTarget() - Method in exception org.jdesktop.application.ResourceMap.InjectFieldException
-
Return the Object whose Field we were attempting to set
- getTarget() - Method in class org.jdesktop.application.Task.InputBlocker
-
Specifies the GUI element that will be blocked while the task is being executed.
- getTask() - Method in class org.jdesktop.application.Task.InputBlocker
-
The
block
method will block input while this Task is being executed by a TaskService. - getTaskListeners() - Method in class org.jdesktop.application.Task
-
Returns a copy of this Task's
TaskListeners
. - getTaskMonitor() - Method in class org.jdesktop.application.ApplicationContext
-
Returns a shared TaskMonitor object.
- getTasks() - Method in class org.jdesktop.application.TaskMonitor
-
All of the Application Tasks whose
state
is notDONE
. - getTasks() - Method in class org.jdesktop.application.TaskService
-
Returns the list of tasks which are executing by this service
- getTaskService() - Method in class org.jdesktop.application.ApplicationContext
-
Returns the default TaskService, i.e.
- getTaskService() - Method in class org.jdesktop.application.Task
-
Returns the TaskService that this Task has been submitted to, or null.
- getTaskService(String) - Method in class org.jdesktop.application.ApplicationContext
-
Look up a task service by name.
- getTaskServices() - Method in class org.jdesktop.application.ApplicationContext
-
Returns a read-only view of the complete list of TaskServices.
- getTitle() - Method in class org.jdesktop.application.Task
-
Return the value of the
title
property. - getToolBar() - Method in class org.jdesktop.application.View
-
Gets the first tool bar for this View
- getToolBars() - Method in class org.jdesktop.application.View
-
Returns the list of tool bars for this View
- getType() - Method in exception org.jdesktop.application.ResourceMap.LookupException
-
Returns the type of the resource for which lookup failed.
- getUserCanCancel() - Method in class org.jdesktop.application.Task
-
Returns the value of the
userCanCancel
property. - getValue() - Method in class org.jdesktop.application.TaskEvent
-
Returns the value this event represents.
- getWindowNormalBounds(Window) - Static method in class org.jdesktop.application.utils.SwingHelper
-
Gets
Window
bounds from the client property
H
- handleQuit() - Method in class org.jdesktop.application.Application
-
Handles quit even on Mac Os X Developer should not use it directly
- hide(View) - Method in class org.jdesktop.application.Application
-
Hides the application
View
I
- initialize(String[]) - Method in class org.jdesktop.application.Application
-
Responsible for initializations that must occur before the GUI is constructed by
startup
. - injectComponent(Component) - Method in class org.jdesktop.application.ResourceMap
-
Set each property in target to the value of the resource named componentName.propertyName, where componentName is the value of the target component's name property, i.e.
- injectComponents(Component) - Method in class org.jdesktop.application.ResourceMap
-
Applies
ResourceMap.injectComponent(java.awt.Component)
to each Component in the hierarchy with root root. - InjectFieldException(String, Field, Object, String) - Constructor for exception org.jdesktop.application.ResourceMap.InjectFieldException
-
Constructs an instance of this class with some useful information about the failure.
- injectFields(Object) - Method in class org.jdesktop.application.ResourceMap
-
Set each field with a @Resource annotation in the target object, to the value of a resource whose name is the simple name of the target class followed by "." followed by the name of the field.
- InputBlocker(Task, Task.BlockingScope, Object) - Constructor for class org.jdesktop.application.Task.InputBlocker
-
Construct an InputBlocker.
- InputBlocker(Task, Task.BlockingScope, Object, ApplicationAction) - Constructor for class org.jdesktop.application.Task.InputBlocker
-
Construct an InputBlocker with four immutable properties.
- interrupted(InterruptedException) - Method in class org.jdesktop.application.Task
-
Called if the Task's Thread is interrupted but not explicitly cancelled.
- interrupted(TaskEvent<InterruptedException>) - Method in class org.jdesktop.application.TaskListener.Adapter
- interrupted(TaskEvent<InterruptedException>) - Method in interface org.jdesktop.application.TaskListener
-
Called after the Task's
interrupted
method is called. - invoke(Object, Method, Object[]) - Method in class org.jdesktop.application.utils.OSXAdapter
- isCorrectMethod(Method, Object[]) - Method in class org.jdesktop.application.utils.OSXAdapter
- isEnabled() - Method in class org.jdesktop.application.ApplicationAction
-
If the proxy action is null and
enabledProperty
was specified, then return the value of the enabled property's is/get method applied to our ApplicationActionMap'sactionsObject
. - isPending() - Method in class org.jdesktop.application.Task
-
Equivalent to
getState() == StateValue.PENDING
. - isProgressPropertyValid() - Method in class org.jdesktop.application.Task
-
Returns true if the
progress
property has been set. - isReady() - Method in class org.jdesktop.application.Application
-
The state of the initial UI.
- isResizable(Window) - Static method in class org.jdesktop.application.utils.SwingHelper
-
Checks whether the window supports resizing
- isSelected() - Method in class org.jdesktop.application.ApplicationAction
-
If the proxy action is null and
selectedProperty
was specified, then return the value of the selected property's is/get method applied to our ApplicationActionMap'sactionsObject
. - isShutdown() - Method in class org.jdesktop.application.TaskService
-
Returns true if this executor has been shut down.
- isStarted() - Method in class org.jdesktop.application.Task
-
Equivalent to
getState() == StateValue.STARTED
. - isTerminated() - Method in class org.jdesktop.application.TaskService
-
Returns true if all tasks have completed following shut down.
K
- key() - Method in annotation type org.jdesktop.application.Resource
-
Key for resource injection.
- KEY_APPLICATION_ICON - Static variable in class org.jdesktop.application.Application
- KEY_APPLICATION_TITLE - Static variable in class org.jdesktop.application.Application
- KEY_APPLICATION_VENDOR_ID - Static variable in class org.jdesktop.application.Application
- KEY_PLATFORM - Static variable in class org.jdesktop.application.ResourceMap
- keySet() - Method in class org.jdesktop.application.ResourceMap
-
Return a unmodifiable
Set
that contains all of the keys in this ResourceMap and (recursively) its parent ResourceMaps.
L
- launch(Class<T>, String[]) - Static method in class org.jdesktop.application.Application
-
Creates an instance of the specified
Application
subclass, sets theApplicationContext
application
property, and then calls the newApplication's
initialize
andstartup
methods. - LINUX - org.jdesktop.application.utils.PlatformType
- load(String) - Method in class org.jdesktop.application.LocalStorage
-
Loads the been from the local storage
- LocalStorage - Class in org.jdesktop.application
-
Access to per application, per user, local file storage.
- LocalStorage(ApplicationContext) - Constructor for class org.jdesktop.application.LocalStorage
- LookupException(String, String, Class) - Constructor for exception org.jdesktop.application.ResourceMap.LookupException
-
Constructs an instance of this class with some useful information about the failure.
M
- MAIN_FRAME_NAME - Static variable in class org.jdesktop.application.FrameView
- message(String, Object...) - Method in class org.jdesktop.application.Task
-
Set the message property to a string generated with
String.format
and the specified arguments.
N
- name() - Method in annotation type org.jdesktop.application.Action
-
The action name.
- NONE - org.jdesktop.application.Task.BlockingScope
-
Don't block the GUI while this Task is executing.
O
- openInputFile(String) - Method in class org.jdesktop.application.LocalStorage
-
Opens an input stream to read from the entry specified by the
name
parameter. - openOutputFile(String) - Method in class org.jdesktop.application.LocalStorage
-
Opens an output stream to write to the entry specified by the
name
parameter. - openOutputFile(String, boolean) - Method in class org.jdesktop.application.LocalStorage
-
Opens an output stream to write to the entry specified by the
name
parameter. - org.jdesktop.application - package org.jdesktop.application
- org.jdesktop.application.session - package org.jdesktop.application.session
- org.jdesktop.application.utils - package org.jdesktop.application.utils
- OS_X - org.jdesktop.application.utils.PlatformType
- OSXAdapter - Class in org.jdesktop.application.utils
- OSXAdapter(String, Object, Method) - Constructor for class org.jdesktop.application.utils.OSXAdapter
P
- parseString(String, ResourceMap) - Method in class org.jdesktop.application.ResourceConverter
-
Convert string to object
- PlatformType - Enum in org.jdesktop.application.utils
- process(List<V>) - Method in class org.jdesktop.application.Task
- process(TaskEvent<List<V>>) - Method in class org.jdesktop.application.TaskListener.Adapter
- process(TaskEvent<List<V>>) - Method in interface org.jdesktop.application.TaskListener
-
Called each time the Task's
process
method is called. - PROP_COMPLETED - Static variable in class org.jdesktop.application.Task
- PROP_DESCRIPTION - Static variable in class org.jdesktop.application.Task
- PROP_DONE - Static variable in class org.jdesktop.application.Task
- PROP_FOREGROUND_TASK - Static variable in class org.jdesktop.application.TaskMonitor
- PROP_INPUTBLOCKER - Static variable in class org.jdesktop.application.Task
- PROP_MESSAGE - Static variable in class org.jdesktop.application.Task
- PROP_STARTED - Static variable in class org.jdesktop.application.Task
- PROP_TASKSERVICE - Static variable in class org.jdesktop.application.Task
- PROP_TITLE - Static variable in class org.jdesktop.application.Task
- PROP_USERCANCANCEL - Static variable in class org.jdesktop.application.Task
- PropertyInjectionException(String, String, Component, String) - Constructor for exception org.jdesktop.application.ResourceMap.PropertyInjectionException
-
Constructs an instance of this class with some useful information about the failure.
- PropertySupport - Interface in org.jdesktop.application.session
-
Defines the
sessionState
property. - ProxyActions - Annotation Type in org.jdesktop.application
-
Defines a list of the proxy action names
- proxySignature - Variable in class org.jdesktop.application.utils.OSXAdapter
- putProperty(Class, PropertySupport) - Method in class org.jdesktop.application.SessionStorage
-
Register a
PropertySupport
for the specified class. - putResource(String, Object) - Method in class org.jdesktop.application.ResourceMap
-
By default this method is used by
getObject
to cache values that have been retrieved, evaluated (as in ${key} expressions), and string converted. - putValue(String, Object) - Method in class org.jdesktop.application.ApplicationAction
-
Keeps the
@Action selectedProperty
in sync when the value ofkey
isAction.SELECTED_KEY
. - putWindowNormalBounds(Window, Rectangle) - Static method in class org.jdesktop.application.utils.SwingHelper
-
Puts
Window
bounds to client property.
Q
- quit(ActionEvent) - Method in class org.jdesktop.application.Application
-
The default
Action
for quitting an application,quit
just exits the application by callingexit(e)
.
R
- ready - Variable in class org.jdesktop.application.Application
- ready() - Method in class org.jdesktop.application.Application
-
Called after the startup() method has returned and there are no more events on the
system event queue
. - register(ResourceConverter) - Static method in class org.jdesktop.application.ResourceConverter
-
Registers a
ResourceConverter
- removeExitListener(Application.ExitListener) - Method in class org.jdesktop.application.Application
-
Removes an
ExitListener
from the list. - removePropertyChangeListener(PropertyChangeListener) - Method in class org.jdesktop.application.AbstractBean
-
Remove a PropertyChangeListener from the listener list.
- removePropertyChangeListener(String, PropertyChangeListener) - Method in class org.jdesktop.application.AbstractBean
-
Remove a PropertyChangeListener for a specific property.
- removeTaskListener(TaskListener<T, V>) - Method in class org.jdesktop.application.Task
-
Removes a
TaskListener
from this Task. - removeTaskService(TaskService) - Method in class org.jdesktop.application.ApplicationContext
-
Unregister a previously registered TaskService.
- Resource - Annotation Type in org.jdesktop.application
-
Marks the field as a resource to be injected.
- ResourceConverter - Class in org.jdesktop.application
-
A base class for converting arbitrary types to and from Strings, as well as a registry of ResourceConverter implementations.
- ResourceConverter(Class) - Constructor for class org.jdesktop.application.ResourceConverter
- ResourceConverter.ResourceConverterException - Exception in org.jdesktop.application
- ResourceConverterException(String, String) - Constructor for exception org.jdesktop.application.ResourceConverter.ResourceConverterException
- ResourceConverterException(String, String, Throwable) - Constructor for exception org.jdesktop.application.ResourceConverter.ResourceConverterException
- ResourceManager - Class in org.jdesktop.application
-
The application's
ResourceManager
provides read-only cached access to resources inResourceBundles
via theResourceMap
class. - ResourceManager(ApplicationContext) - Constructor for class org.jdesktop.application.ResourceManager
-
Construct a
ResourceManager
. - ResourceMap - Class in org.jdesktop.application
-
A read-only encapsulation of one or more ResourceBundles that adds automatic string conversion, support for field and Swing component property injection, string resource variable substitution, and chaining.
- ResourceMap(ResourceMap, ClassLoader, String...) - Constructor for class org.jdesktop.application.ResourceMap
-
Just a convenience version of the constructor for the common case where there's only one bundle name.
- ResourceMap(ResourceMap, ClassLoader, List<String>) - Constructor for class org.jdesktop.application.ResourceMap
-
Creates a ResourceMap that contains all of the resources defined in the named
ResourceBundle
s as well as (recursively) the parent ResourceMap. - ResourceMap.InjectFieldException - Exception in org.jdesktop.application
-
Unchecked exception thrown by
ResourceMap.injectFields(java.lang.Object)
when an error occurs while attempting to set a field (a field that had been marked with @Resource). - ResourceMap.LookupException - Exception in org.jdesktop.application
-
Unchecked exception thrown by
ResourceMap.getObject(java.lang.String, java.lang.Class)
when resource lookup fails, for example because string conversion fails. - ResourceMap.PropertyInjectionException - Exception in org.jdesktop.application
-
Unchecked exception thrown by
ResourceMap.injectComponent(java.awt.Component)
andResourceMap.injectComponents(java.awt.Component)
when a property value specified by a resource can not be set. - resourceName(String) - Method in class org.jdesktop.application.Task
-
Returns a Task resource name with the specified suffix.
- restore(Component, String) - Method in class org.jdesktop.application.SessionStorage
-
Restores each named component in the specified hierarchy from the session state loaded from a file using
LocalStorage.load(fileName)
.
S
- save(Component, String) - Method in class org.jdesktop.application.SessionStorage
-
Saves the state of each named component in the specified hierarchy to a file using
LocalStorage.save(fileName)
. - save(Object, String) - Method in class org.jdesktop.application.LocalStorage
-
Saves the
bean
to the local storage - selectedProperty() - Method in annotation type org.jdesktop.application.Action
-
The parameter binds the selected state of the @Action to the current value of a property.
- SessionStorage - Class in org.jdesktop.application
-
Support for storing GUI state that persists between Application sessions.
- SessionStorage(ApplicationContext) - Constructor for class org.jdesktop.application.SessionStorage
-
Constructs a SessionStorage object.
- setAboutHandler(Object, Method) - Static method in class org.jdesktop.application.utils.OSXAdapter
- setActionManager(ActionManager) - Method in class org.jdesktop.application.ApplicationContext
-
Change this application's
ActionManager
. - setApplicationBundleNames(List<String>) - Method in class org.jdesktop.application.ResourceManager
-
Specify the names of the ResourceBundles to be shared by the entire application.
- setApplicationClass(Class) - Method in class org.jdesktop.application.ApplicationContext
-
Called by
Application.launch()
to record the application's class. - setApplicationEventHandled(Object, boolean) - Method in class org.jdesktop.application.utils.OSXAdapter
- setAutoUpdateForegroundTask(boolean) - Method in class org.jdesktop.application.TaskMonitor
-
True if the
foregroundTask
property should be automatically reset to the oldest Task in the queue when it finishes running. - setBounds(Rectangle) - Method in class org.jdesktop.application.session.WindowState
- setColumnWidths(int[]) - Method in class org.jdesktop.application.session.TableState
- setComponent(JComponent) - Method in class org.jdesktop.application.View
-
Sets the single main Component for this View.
- setDescription(String) - Method in class org.jdesktop.application.Task
-
Set the
description
property. - setDirectory(File) - Method in class org.jdesktop.application.LocalStorage
-
Sets the location of the local storage
- setDividerLocation(int) - Method in class org.jdesktop.application.session.SplitPaneState
- setEnabled(boolean) - Method in class org.jdesktop.application.ApplicationAction
-
If the proxy action is null and
enabledProperty
was specified, then set the value of the enabled property by invoking the correspondingset
method on our ApplicationActionMap'sactionsObject
. - setFileHandler(Object, Method) - Static method in class org.jdesktop.application.utils.OSXAdapter
- setForegroundTask(Task) - Method in class org.jdesktop.application.TaskMonitor
-
The TaskMonitor's PropertyChangeListeners are fired each time any property of the the
foregroundTask
changes. - setFrame(JFrame) - Method in class org.jdesktop.application.FrameView
-
Sets the JFrame use to show this View
- setFrameState(int) - Method in class org.jdesktop.application.session.WindowState
- setGraphicsConfigurationBounds(Rectangle) - Method in class org.jdesktop.application.session.WindowState
- setHandler(OSXAdapter) - Static method in class org.jdesktop.application.utils.OSXAdapter
- setInputBlocker(Task.InputBlocker) - Method in class org.jdesktop.application.Task
-
Set this task's InputBlocker.
- setLocalStorage(LocalStorage) - Method in class org.jdesktop.application.ApplicationContext
-
The shared
LocalStorage
object. - setMainFrame(JFrame) - Method in class org.jdesktop.application.SingleFrameApplication
-
Sets the JFrame use to show this application.
- setMenuBar(JMenuBar) - Method in class org.jdesktop.application.View
-
Sets the menu bar for this View.
- setMessage(String) - Method in class org.jdesktop.application.Task
-
Set the
message
property. - setOrientation(int) - Method in class org.jdesktop.application.session.SplitPaneState
- setPlatform(PlatformType) - Method in class org.jdesktop.application.ResourceManager
-
Defines the value of the special Application ResourceMap resource named "platform".
- setPlatform(PlatformType) - Method in class org.jdesktop.application.ResourceMap
- setPreferencesHandler(Object, Method) - Static method in class org.jdesktop.application.utils.OSXAdapter
- setProgress(float) - Method in class org.jdesktop.application.Task
-
A convenience method that sets the
progress
property topercentage * 100
. - setProgress(float, float, float) - Method in class org.jdesktop.application.Task
-
A convenience method that sets the
progress
property to the following ratio normalized to 0 .. - setProgress(int, int, int) - Method in class org.jdesktop.application.Task
-
A convenience method that sets the
progress
property to the following ratio normalized to 0 .. - setProxy(Action) - Method in class org.jdesktop.application.ApplicationAction
-
Set the proxy for this action.
- setProxySource(Object) - Method in class org.jdesktop.application.ApplicationAction
-
Set the value that becomes the ActionEvent source before the ActionEvent is passed along to the proxy Action.
- setQuitHandler(Object, Method) - Static method in class org.jdesktop.application.utils.OSXAdapter
- setResourceFolder(String) - Method in class org.jdesktop.application.ResourceManager
-
Sets resources subpackage name.
- setResourceManager(ResourceManager) - Method in class org.jdesktop.application.ApplicationContext
-
Change this application's
ResourceManager
. - setScreenCount(int) - Method in class org.jdesktop.application.session.WindowState
- setSelected(boolean) - Method in class org.jdesktop.application.ApplicationAction
-
If the proxy action is null and
selectedProperty
was specified, then set the value of the selected property by invoking the correspondingset
method on our ApplicationActionMap'sactionsObject
. - setSelectedIndex(int) - Method in class org.jdesktop.application.session.TabbedPaneState
- setSessionState(Component, Object) - Method in interface org.jdesktop.application.session.PropertySupport
-
Restore Component
c's
sessionState
from the specified object. - setSessionState(Component, Object) - Method in class org.jdesktop.application.session.SplitPaneProperty
-
Restore the
JSplitPane's
dividerLocation
property if itsorientation
has not changed. - setSessionState(Component, Object) - Method in class org.jdesktop.application.session.TabbedPaneProperty
-
Restore the
JTabbedPane's
selectedIndex
property if the number oftabs
has not changed. - setSessionState(Component, Object) - Method in class org.jdesktop.application.session.TableProperty
-
Restore the width of each resizable
TableColumn
, if the number of columns haven't changed. - setSessionState(Component, Object) - Method in class org.jdesktop.application.session.WindowProperty
-
Restore the
Window's
bounds if the dimensions of its screen (GraphicsConfiguration
) haven't changed, the number of screens hasn't changed, and theisLocationByPlatform
property, which indicates that native Window manager should pick the Window's location, is false. - setSessionStorage(SessionStorage) - Method in class org.jdesktop.application.ApplicationContext
-
The shared
SessionStorage
object. - setStatusBar(JComponent) - Method in class org.jdesktop.application.View
-
Sets the status bar for this View.
- setStorageLimit(long) - Method in class org.jdesktop.application.LocalStorage
-
Sets the limit of the lical storage
- setTabCount(int) - Method in class org.jdesktop.application.session.TabbedPaneState
- setTitle(String) - Method in class org.jdesktop.application.Task
-
Set the
title
property. - setToolBar(JToolBar) - Method in class org.jdesktop.application.View
-
Sets the only tool bar for this View.
- setToolBars(List<JToolBar>) - Method in class org.jdesktop.application.View
-
Sets the tool bars for this View
- setUserCanCancel(boolean) - Method in class org.jdesktop.application.Task
-
Sets the
userCanCancel
property. - show(JComponent) - Method in class org.jdesktop.application.SingleFrameApplication
-
Show the specified component in the
main frame
. - show(JDialog) - Method in class org.jdesktop.application.SingleFrameApplication
-
Initialize and show the JDialog.
- show(JFrame) - Method in class org.jdesktop.application.SingleFrameApplication
-
Initialize and show the secondary JFrame.
- show(View) - Method in class org.jdesktop.application.Application
-
Shows the application
View
- show(View) - Method in class org.jdesktop.application.SingleFrameApplication
- shutdown() - Method in class org.jdesktop.application.Application
-
Called when the application
exits
. - shutdown() - Method in class org.jdesktop.application.SingleFrameApplication
-
Save session state for the component hierarchy rooted by the mainFrame.
- shutdown() - Method in class org.jdesktop.application.TaskService
-
Initiates an orderly shutdown in which previously submitted tasks are executed, but no new tasks will be accepted.
- shutdownNow() - Method in class org.jdesktop.application.TaskService
-
Attempts to stop all actively executing tasks, halts the processing of waiting tasks, and returns a list of the tasks that were awaiting execution.
- SingleFrameApplication - Class in org.jdesktop.application
-
An application base class for simple GUIs with one primary JFrame.
- SingleFrameApplication() - Constructor for class org.jdesktop.application.SingleFrameApplication
- SOLARIS - org.jdesktop.application.utils.PlatformType
- SplitPaneProperty - Class in org.jdesktop.application.session
-
A
sessionState
property for JSplitPane. - SplitPaneProperty() - Constructor for class org.jdesktop.application.session.SplitPaneProperty
- SplitPaneState - Class in org.jdesktop.application.session
-
This Java Bean records the
dividerLocation
andorientation
properties of aJSplitPane
. - SplitPaneState() - Constructor for class org.jdesktop.application.session.SplitPaneState
- SplitPaneState(int, int) - Constructor for class org.jdesktop.application.session.SplitPaneState
- startup() - Method in class org.jdesktop.application.Application
-
Responsible for starting the application; for creating and showing the initial GUI.
- succeeded(TaskEvent<T>) - Method in class org.jdesktop.application.TaskListener.Adapter
- succeeded(TaskEvent<T>) - Method in interface org.jdesktop.application.TaskListener
-
Called after the Task's
succeeded
completion method is called. - succeeded(T) - Method in class org.jdesktop.application.Task
-
Called when this Task has successfully completed, i.e.
- supportsType(Class) - Method in class org.jdesktop.application.ResourceConverter
-
Checks whether
testType
can be converted with this converter. - SwingHelper - Class in org.jdesktop.application.utils
-
Utility class for Swing Application Framework (BSAF)
T
- TabbedPaneProperty - Class in org.jdesktop.application.session
-
A
sessionState
property for JTabbedPane. - TabbedPaneProperty() - Constructor for class org.jdesktop.application.session.TabbedPaneProperty
- TabbedPaneState - Class in org.jdesktop.application.session
-
This Java Bean record the
selectedIndex
andtabCount
properties of aJTabbedPane
. - TabbedPaneState() - Constructor for class org.jdesktop.application.session.TabbedPaneState
- TabbedPaneState(int, int) - Constructor for class org.jdesktop.application.session.TabbedPaneState
- TableProperty - Class in org.jdesktop.application.session
-
A
sessionState
property for JTable - TableProperty() - Constructor for class org.jdesktop.application.session.TableProperty
- TableState - Class in org.jdesktop.application.session
-
This Java Bean records the
columnWidths
for all of the columns in a JTable. - TableState() - Constructor for class org.jdesktop.application.session.TableState
- TableState(int[]) - Constructor for class org.jdesktop.application.session.TableState
- targetMethod - Variable in class org.jdesktop.application.utils.OSXAdapter
- targetObject - Variable in class org.jdesktop.application.utils.OSXAdapter
- Task<T,V> - Class in org.jdesktop.application
-
A type of
SwingWorker
that represents an application background task. - Task(Application) - Constructor for class org.jdesktop.application.Task
-
Construct a
Task
with an empty (""
) resource name prefix, whose ResourceMap is the value ofApplicationContext.getInstance().getResourceMap(this.getClass(), Task.class)
. - Task(Application, String) - Constructor for class org.jdesktop.application.Task
-
Deprecated.
- Task(Application, ResourceMap, String) - Constructor for class org.jdesktop.application.Task
-
Deprecated.
- Task.BlockingScope - Enum in org.jdesktop.application
-
Specifies to what extent the GUI should be blocked a Task is executed by a TaskService.
- Task.InputBlocker - Class in org.jdesktop.application
-
Specifies to what extent input to the Application's GUI should be blocked while this Task is being executed and provides a pair of methods,
block
andunblock
that do the work of blocking the GUI. - TaskEvent<T> - Class in org.jdesktop.application
-
An encapsulation of the value produced one of the
Task
execution methods:doInBackground()
,process
,done
. - TaskEvent(Task, T) - Constructor for class org.jdesktop.application.TaskEvent
-
Construct a
TaskEvent
. - TaskListener<T,V> - Interface in org.jdesktop.application
-
Listener used for observing
Task
execution. - TaskListener.Adapter<T,V> - Class in org.jdesktop.application
-
Convenience class that stubs all of the TaskListener interface methods.
- TaskMonitor - Class in org.jdesktop.application
-
This class is intended to serve as the model for GUI components, like status bars, that display the state of an application's background tasks.
- TaskMonitor(ApplicationContext) - Constructor for class org.jdesktop.application.TaskMonitor
-
Construct a TaskMonitor.
- taskService() - Method in annotation type org.jdesktop.application.Action
-
The parameter associates this action to a specific task service
- TaskService - Class in org.jdesktop.application
-
The service for executing tasks
- TaskService(String) - Constructor for class org.jdesktop.application.TaskService
-
Creates a new
TaskService
with default executor. - TaskService(String, ExecutorService) - Constructor for class org.jdesktop.application.TaskService
-
Creates a new
TaskService
- toString() - Method in class org.jdesktop.application.ApplicationAction
-
Returns a string representation of this ApplicationAction that should be useful for debugging.
- toString() - Method in exception org.jdesktop.application.ResourceConverter.ResourceConverterException
- toString() - Method in enum org.jdesktop.application.utils.PlatformType
- toString(Object) - Method in class org.jdesktop.application.ResourceConverter
-
Null safe toString operation.
- type - Variable in class org.jdesktop.application.ResourceConverter
U
- unblock() - Method in class org.jdesktop.application.Task.InputBlocker
-
Unblock input to the GUI by undoing whatever the
block
method did.
V
- value() - Method in annotation type org.jdesktop.application.Action.Parameter
- value() - Method in annotation type org.jdesktop.application.ProxyActions
- valueOf(String) - Static method in enum org.jdesktop.application.Task.BlockingScope
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.jdesktop.application.utils.PlatformType
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum org.jdesktop.application.Task.BlockingScope
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum org.jdesktop.application.utils.PlatformType
-
Returns an array containing the constants of this enum type, in the order they are declared.
- View - Class in org.jdesktop.application
-
A View encapsulates a top-level Application GUI component, like a JFrame or an Applet, and its main GUI elements: a menu bar, tool bar, component, and a status bar.
- View(Application) - Constructor for class org.jdesktop.application.View
-
Construct an empty View object for the specified Application.
W
- willExit(EventObject) - Method in interface org.jdesktop.application.Application.ExitListener
-
The method is called after the exit has been confirmed.
- WINDOW - org.jdesktop.application.Task.BlockingScope
-
Block a top level window while the task is executing, typically by showing a window-modal dialog.
- WindowProperty - Class in org.jdesktop.application.session
-
A
sessionState
property for Window. - WindowProperty() - Constructor for class org.jdesktop.application.session.WindowProperty
- WINDOWS - org.jdesktop.application.utils.PlatformType
- WindowState - Class in org.jdesktop.application.session
-
This Java Bean defines the
Window
state preserved across sessions: the Window'sbounds
, and the bounds of the Window'sGraphicsConfiguration
, i.e. - WindowState() - Constructor for class org.jdesktop.application.session.WindowState
- WindowState(Rectangle, Rectangle, int, int) - Constructor for class org.jdesktop.application.session.WindowState
All Classes All Packages