Uses of Interface
net.sf.jguiraffe.gui.cmd.CommandQueue
-
Packages that use CommandQueue Package Description net.sf.jguiraffe.gui.app In this package the main application class can be found.net.sf.jguiraffe.gui.builder The main package of the builder.net.sf.jguiraffe.gui.cmd This package contains the implementation of the Command pattern. -
-
Uses of CommandQueue in net.sf.jguiraffe.gui.app
Methods in net.sf.jguiraffe.gui.app that return CommandQueue Modifier and Type Method Description protected CommandQueue
Application. createCommandQueue(ApplicationContext appCtx)
Creates and initializes the application's command queue.CommandQueue
Application. getCommandQueue()
Returns a reference to the command queue that is used for executing commands in another thread.CommandQueue
ApplicationBuilderData. getCommandQueue()
Returns theCommandQueue
.Methods in net.sf.jguiraffe.gui.app with parameters of type CommandQueue Modifier and Type Method Description void
Application. setCommandQueue(CommandQueue q)
Sets the command queue that is used for executing commands.void
ApplicationBuilderData. setCommandQueue(CommandQueue commandQueue)
Sets theCommandQueue
. -
Uses of CommandQueue in net.sf.jguiraffe.gui.builder
Methods in net.sf.jguiraffe.gui.builder that return CommandQueue Modifier and Type Method Description CommandQueue
BuilderData. getCommandQueue()
Returns a reference to the globalCommandQueue
object. -
Uses of CommandQueue in net.sf.jguiraffe.gui.cmd
Classes in net.sf.jguiraffe.gui.cmd that implement CommandQueue Modifier and Type Class Description class
CommandQueueImpl
A command queue implementation for GUI applications.Methods in net.sf.jguiraffe.gui.cmd that return CommandQueue Modifier and Type Method Description CommandQueue
CommandQueueEvent. getCommandQueue()
Returns theCommandQueue
that caused this event.Methods in net.sf.jguiraffe.gui.cmd with parameters of type CommandQueue Modifier and Type Method Description void
ScheduleAware. commandScheduled(CommandQueue queue)
Notifies this object that it was passed to aCommandQueue
for execution.Constructors in net.sf.jguiraffe.gui.cmd with parameters of type CommandQueue Constructor Description CommandQueueEvent(CommandQueue q, Command c, CommandQueueEvent.Type t)
Creates a new instance ofCommandQueueEvent
and fully initializes it.
-