blob: 5a58948b0c979fb84f8bac81a9c940e93bdbe516 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.common.core.internal.command;
import org.eclipse.gmf.runtime.common.core.command.CommandResult;
/**
* Internal interface designating a command that allows the setting of the
* CommandResult
*
* @author wdiu, Wayne Diu
*/
public interface ICommandWithSettableResult {
/**
* Internal method to set the command result.
*
* @param result CommandResult to set
*/
public void internalSetResult(CommandResult result);
}