Go to the documentation of this file.00001 package org.ros.model.ros.diagram.edit.helpers;
00002
00003 import org.eclipse.gmf.runtime.common.core.command.ICommand;
00004 import org.eclipse.core.runtime.NullProgressMonitor;
00005 import org.eclipse.emf.common.command.Command;
00006 import org.eclipse.emf.common.command.CompoundCommand;
00007 import org.eclipse.emf.common.util.URI;
00008 import org.eclipse.gmf.runtime.emf.type.core.commands.SetValueCommand;
00009 import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest;
00010 import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;
00011 import org.eclipse.gmf.runtime.emf.type.core.requests.SetRequest;
00012 import org.eclipse.gmf.tooling.runtime.edit.helpers.GeneratedEditHelperBase;
00013 import org.eclipse.swt.widgets.Display;
00014 import org.eclipse.ui.PlatformUI;
00015 import org.ros.model.ros.RosPackage;
00016 import org.eclipse.emf.ecore.resource.Resource;
00017 import org.eclipse.emf.ecore.resource.ResourceSet;
00018 import org.eclipse.emf.edit.command.AddCommand;
00019 import org.eclipse.emf.edit.command.CopyCommand;
00020 import org.eclipse.emf.edit.command.CreateCopyCommand;
00021 import org.eclipse.emf.edit.command.ReplaceCommand;
00022 import org.eclipse.emf.edit.command.SetCommand;
00023 import org.ros.model.ros.diagram.providers.RosElementTypes;
00024
00028 public class RosBaseEditHelper extends GeneratedEditHelperBase {
00029 @Override
00030 protected ICommand getConfigureCommand(ConfigureRequest req) {
00031
00032 return null;
00033 }
00034
00035 @Override
00036 protected ICommand getCreateCommand(CreateElementRequest req) {
00037
00038 return super.getCreateCommand(req);
00039 }
00040 }