blob: bf15371b3a28f3b65c1644f6c53fc636c72d89b6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2004 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.wst.common.internal.emfworkbench.edit;
import org.eclipse.emf.common.command.BasicCommandStack;
import org.eclipse.emf.common.command.Command;
import org.eclipse.wst.common.internal.emfworkbench.integration.ComposedEditModel;
/**
* Insert the type's description here. Creation date: (05/21/01 9:31:02 PM)
*
* @author: Administrator
*/
public class WrappingCommandStack extends BasicCommandStack {
private ComposedEditModel editModel;
/**
* WrappingCommandStack constructor comment.
*/
public WrappingCommandStack(ComposedEditModel anEditModel) {
super();
editModel = anEditModel;
}
public void execute(Command command) {
ParentCommand parent = new ParentCommand(command, editModel);
super.execute(parent);
}
}