blob: 5a824c1647eceddccea0212ab6d18070bef09483 [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;
/**
* Command that can buffer a result for later retrieval.
*
* @author koegel
* @param <T> result type
*/
public abstract class EMFStoreCommandWithResult<T> extends AbstractEMFStoreCommand {
private T result;
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.emfstore.internal.client.model.util.AbstractEMFStoreCommand#commandBody()
*/
@Override
protected void commandBody() {
result = doRun();
}
/**
* The actual action that is being executed.
*
* @return the result
*/
protected abstract T doRun();
/**
* Executes the command on the workspaces editing domain.
*
* @return the result
* @deprecated Use run(boolean) instead
*/
@Deprecated
public T run() {
return this.run(true);
}
/**
* Executes the command on the workspaces editing domain.
*
* @param ignoreExceptions true if any thrown exception in the execution of the command should be ignored.
* @return the result
*/
public T run(boolean ignoreExceptions) {
super.aRun(ignoreExceptions);
return this.result;
}
}