Package net.sf.jguiraffe.gui.cmd
Interface CommandQueueListener
-
- All Superinterfaces:
EventListener
public interface CommandQueueListener extends EventListener
Definition of an interface for listeners that want to be notified about changes in the state of a
object.CommandQueue
This interface defines one single method for processing event objects of type
CommandQueueEvent
. The event'sType
property can be used to determine what has happened.- Version:
- $Id: CommandQueueListener.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
- See Also:
CommandQueueImpl
,CommandQueueEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
commandQueueChanged(CommandQueueEvent e)
Notifies this listener about a change in the state of a command queue.
-
-
-
Method Detail
-
commandQueueChanged
void commandQueueChanged(CommandQueueEvent e)
Notifies this listener about a change in the state of a command queue.- Parameters:
e
- the event object describing the change
-
-