blob: f2c2be6372fd9803587f2601db27568270b14a9a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.internal.command;
import org.eclipse.jpt.common.utility.command.Command;
import org.eclipse.jpt.common.utility.command.ExtendedCommandContext;
import org.eclipse.jpt.common.utility.exception.ExceptionHandler;
/**
* @see AbstractSafeCommandContext
*/
public class SafeExtendedCommandContext
extends AbstractSafeCommandContext<ExtendedCommandContext>
implements ExtendedCommandContext
{
/**
* <strong>NB:</strong> The default exception handler simply
* <em>ignores</em> any and all exceptions.
*/
public SafeExtendedCommandContext() {
this(DefaultExtendedCommandContext.instance());
}
/**
* <strong>NB:</strong> The default exception handler simply
* <em>ignores</em> any and all exceptions.
*/
public SafeExtendedCommandContext(ExtendedCommandContext commandContext) {
super(commandContext);
}
public SafeExtendedCommandContext(ExceptionHandler exceptionHandler) {
this(DefaultExtendedCommandContext.instance(), exceptionHandler);
}
public SafeExtendedCommandContext(ExtendedCommandContext commandContext, ExceptionHandler exceptionHandler) {
super(commandContext, exceptionHandler);
}
public void waitToExecute(Command command) throws InterruptedException {
try {
this.commandContext.waitToExecute(command);
} catch (Throwable ex) {
this.exceptionHandler.handleException(ex);
}
}
public boolean waitToExecute(Command command, long timeout) throws InterruptedException {
try {
return this.commandContext.waitToExecute(command, timeout);
} catch (Throwable ex) {
this.exceptionHandler.handleException(ex);
return true; // hmmm... seems like we get here only if the command executed
}
}
}