blob: 98c5c5d7dee8289647107cfb7ab850bd5ba2ae6c [file] [log] [blame]
package org.eclipse.epf.library.edit.command;
import java.util.Map;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.edit.command.CopyCommand.Helper;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.epf.library.edit.navigator.PluginUIPackagesItemProvider;
import org.eclipse.epf.library.edit.util.ModelStructure;
import org.eclipse.epf.uma.MethodElement;
import org.eclipse.epf.uma.MethodPlugin;
import org.eclipse.epf.uma.VariabilityElement;
import org.eclipse.epf.uma.VariabilityType;
import org.eclipse.epf.uma.edit.command.MethodElementInitializeCopyCommand;
import org.eclipse.epf.uma.edit.domain.TraceableAdapterFactoryEditingDomain;
import org.eclipse.epf.uma.util.UmaUtil;
public class MethodPluginInitializeCopyCommand extends
MethodElementInitializeCopyCommand {
/**
* Creates a new instance.
*
* @param domain
* the editing domain
* @param owner
* the object being copied
* @param copyHelper
* a helper class that is used to keep track of copied objects
* and their associated copies
*/
public MethodPluginInitializeCopyCommand(EditingDomain domain,
EObject owner, Helper copyHelper) {
super(domain, owner, copyHelper);
}
/**
* @see org.eclipse.emf.edit.command.InitializeCopyCommand#doExecute()
*/
public void doExecute() {
super.doExecute();
}
}