| | |
| | | */ |
| | | public void setProgressMessageFormatter(ProgressMessageFormatter formatter) { |
| | | this.formatter = formatter; |
| | | this.listenerDelegate = new ProgressUpdateListenerDelegate(formatter); |
| | | this.listenerDelegate = new ProgressUpdateListenerDelegate(); |
| | | } |
| | | |
| | | /** |
| | |
| | | abstract public void cancel(); |
| | | |
| | | /** |
| | | * Checks whether the operation has been aborted. If it has throws an |
| | | * ApplicationException. All the applications that support abort must |
| | | * provide their implementation as the default implementation is empty. |
| | | * |
| | | * @throws ApplicationException thrown if the application was aborted. |
| | | */ |
| | | public void checkAbort() throws ApplicationException |
| | | { |
| | | } |
| | | |
| | | /** |
| | | * Makes available a <code>UserInteraction</code> class that can be used |
| | | * by the application to interact with the user. If the user has requested |
| | | * a quiet session this method returns null. |