01: package newprocess.diagram.edit.helpers;
02:
03: import org.eclipse.gmf.runtime.common.core.command.ICommand;
04: import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand;
05: import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest;
06: import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;
07: import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest;
08:
09: /**
10: * @generated
11: */
12: public class ProcessEditHelper extends New_processBaseEditHelper {
13: @Override
14: protected ICompositeCommand createCommand(IEditCommandRequest req) {
15: return super .createCommand(req);
16: }
17:
18: @Override
19: protected ICommand getConfigureCommand(ConfigureRequest req) {
20: return super .getConfigureCommand(req);
21: }
22:
23: @Override
24: protected ICommand getCreateCommand(CreateElementRequest req) {
25: // TODO Auto-generated method stub
26: return super.getCreateCommand(req);
27: }
28: }
|