blob: 936264c719384d7a7032462bcc486b72763144c1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* 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:
* koegel
******************************************************************************/
package org.eclipse.emf.emfstore.internal.client.model.util;
import org.eclipse.emf.edit.domain.EditingDomain;
/**
* Command that can buffer a result for later retrieval.
*
* @author koegel
* @param <T> result type
* @param <U> parameter type
*/
public abstract class EMFStoreCommandWithParameterAndResult<T, U> extends AbstractEMFStoreCommand {
private T result;
private U parameter;
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.emfstore.internal.client.model.util.AbstractEMFStoreCommand#commandBody()
*/
@Override
protected void commandBody() {
result = doRun(parameter);
}
/**
* The actual action that is being executed.
*
* @param parameter the parameter
* @return the result
*/
protected abstract T doRun(U parameter);
/**
* Executes the command on the workspaces editing domain.
*
* @param parameter the parameter
* @return the result
* @deprecated Use run(boolean) instead
*/
@Deprecated
public T run(U parameter) {
return run(parameter, true);
}
/**
* Executes the command on the workspaces editing domain.
*
* @param parameter the parameter
* @param ignoreExceptions true if any thrown exception in the execution of the command should be ignored.
* @return the result
*/
public T run(U parameter, boolean ignoreExceptions) {
this.parameter = parameter;
super.aRun(ignoreExceptions);
return this.result;
}
/**
* Executes the command on the given editing domain.
*
* @param parameter the parameter
* @param ignoreExceptions true if any thrown exception in the execution of the command should be ignored.
* @param editingDomain the editing domain
* @return the result
*/
public T run(U parameter, boolean ignoreExceptions, EditingDomain editingDomain) {
this.parameter = parameter;
super.aRun(ignoreExceptions, editingDomain);
return this.result;
}
}