Package jadex.commons.gui.future
Class SwingResultListener<E>
- java.lang.Object
- 
- jadex.commons.gui.future.SwingResultListener<E>
 
- 
- All Implemented Interfaces:
- IFunctionalExceptionListener,- IFunctionalResultListener<E>,- IFutureCommandResultListener<E>,- IResultListener<E>,- IUndoneResultListener<E>
 
 public class SwingResultListener<E> extends java.lang.Object implements IUndoneResultListener<E>, IFutureCommandResultListener<E> Listener that performs notifications on swing thread..
- 
- 
Field SummaryFields Modifier and Type Field Description protected IResultListener<E>listenerThe delegation listener.protected booleanundoneFlag if undone methods should be used.
 - 
Constructor SummaryConstructors Constructor Description SwingResultListener(IFunctionalResultListener<E> listener)Create a new listener with functional interfaces.SwingResultListener(IFunctionalResultListener<E> listener, IFunctionalExceptionListener exceptionListener)Create a new listener with functional interfaces.SwingResultListener(IResultListener<E> listener)Create a new listener.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcommandAvailable(java.lang.Object command)Called when a command is available.voidcustomCommandAvailable(java.lang.Object command)Called when a command is available.voidcustomExceptionOccurred(java.lang.Exception exception)Called when an exception occurred.voidcustomResultAvailable(E result)Called when the result is available.voidexceptionOccurred(java.lang.Exception exception)Called when an exception occurred.voidexceptionOccurredIfUndone(java.lang.Exception exception)Called when an exception occurred.booleanisUndone()Get the undone.voidresultAvailable(E result)Called when the result is available.voidresultAvailableIfUndone(E result)Called when the result is available.
 
- 
- 
- 
Field Detail- 
listenerprotected IResultListener<E> listener The delegation listener.
 - 
undoneprotected boolean undone Flag if undone methods should be used.
 
- 
 - 
Constructor Detail- 
SwingResultListenerpublic SwingResultListener(IFunctionalResultListener<E> listener) Create a new listener with functional interfaces.- Parameters:
- listener- The listener.
- exceptionListener- The listener that is called on exceptions.
 
 - 
SwingResultListenerpublic SwingResultListener(IFunctionalResultListener<E> listener, IFunctionalExceptionListener exceptionListener) Create a new listener with functional interfaces.- Parameters:
- listener- The listener.
- exceptionListener- The listener that is called on exceptions.
 
 - 
SwingResultListenerpublic SwingResultListener(IResultListener<E> listener) Create a new listener.
 
- 
 - 
Method Detail- 
resultAvailablepublic final void resultAvailable(E result) Called when the result is available.- Specified by:
- resultAvailablein interface- IFunctionalResultListener<E>
- Parameters:
- result- The result.
 
 - 
exceptionOccurredpublic final void exceptionOccurred(java.lang.Exception exception) Called when an exception occurred.- Specified by:
- exceptionOccurredin interface- IFunctionalExceptionListener
- Parameters:
- exception- The exception.
 
 - 
customResultAvailablepublic void customResultAvailable(E result) Called when the result is available.- Parameters:
- result- The result.
 
 - 
customExceptionOccurredpublic void customExceptionOccurred(java.lang.Exception exception) Called when an exception occurred.- Parameters:
- exception- The exception.
 
 - 
commandAvailablepublic final void commandAvailable(java.lang.Object command) Called when a command is available.- Specified by:
- commandAvailablein interface- IFutureCommandResultListener<E>
 
 - 
customCommandAvailablepublic void customCommandAvailable(java.lang.Object command) Called when a command is available.
 - 
resultAvailableIfUndonepublic void resultAvailableIfUndone(E result) Called when the result is available.- Specified by:
- resultAvailableIfUndonein interface- IUndoneResultListener<E>
- Parameters:
- result- The result.
 
 - 
exceptionOccurredIfUndonepublic void exceptionOccurredIfUndone(java.lang.Exception exception) Called when an exception occurred.- Specified by:
- exceptionOccurredIfUndonein interface- IUndoneResultListener<E>
- Parameters:
- exception- The exception.
 
 - 
isUndonepublic boolean isUndone() Get the undone.- Returns:
- The undone.
 
 
- 
 
-