| 1 | /* |
| 2 | *Copyright 2007, SDQ, IPD, University of Karlsruhe |
| 3 | */ |
| 4 | package de.uka.ipd.sdq.pcm.gmf.usage.edit.commands; |
| 5 | |
| 6 | import org.eclipse.core.commands.ExecutionException; |
| 7 | import org.eclipse.core.runtime.IAdaptable; |
| 8 | import org.eclipse.core.runtime.IProgressMonitor; |
| 9 | import org.eclipse.emf.ecore.EObject; |
| 10 | import org.eclipse.gmf.runtime.common.core.command.CommandResult; |
| 11 | import org.eclipse.gmf.runtime.common.core.command.ICommand; |
| 12 | import org.eclipse.gmf.runtime.emf.type.core.IElementType; |
| 13 | import org.eclipse.gmf.runtime.emf.type.core.commands.EditElementCommand; |
| 14 | import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest; |
| 15 | import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest; |
| 16 | import org.eclipse.gmf.runtime.notation.View; |
| 17 | |
| 18 | import de.uka.ipd.sdq.pcm.usagemodel.EntryLevelSystemCall; |
| 19 | import de.uka.ipd.sdq.pcm.usagemodel.ScenarioBehaviour; |
| 20 | import de.uka.ipd.sdq.pcm.usagemodel.UsagemodelFactory; |
| 21 | |
| 22 | /** |
| 23 | * @generated |
| 24 | */ |
| 25 | public class EntryLevelSystemCallCreateCommand extends EditElementCommand { |
| 26 | |
| 27 | /** |
| 28 | * @generated |
| 29 | */ |
| 30 | public EntryLevelSystemCallCreateCommand(CreateElementRequest req) { |
| 31 | super(req.getLabel(), null, req); |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * @generated |
| 36 | */ |
| 37 | protected EObject getElementToEdit() { |
| 38 | EObject container = ((CreateElementRequest) getRequest()) |
| 39 | .getContainer(); |
| 40 | if (container instanceof View) { |
| 41 | container = ((View) container).getElement(); |
| 42 | } |
| 43 | return container; |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * @generated |
| 48 | */ |
| 49 | public boolean canExecute() { |
| 50 | return true; |
| 51 | |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * @generated |
| 56 | */ |
| 57 | protected CommandResult doExecuteWithResult(IProgressMonitor monitor, |
| 58 | IAdaptable info) throws ExecutionException { |
| 59 | EntryLevelSystemCall newElement = UsagemodelFactory.eINSTANCE |
| 60 | .createEntryLevelSystemCall(); |
| 61 | |
| 62 | ScenarioBehaviour owner = (ScenarioBehaviour) getElementToEdit(); |
| 63 | owner.getActions_ScenarioBehaviour().add(newElement); |
| 64 | |
| 65 | doConfigure(newElement, monitor, info); |
| 66 | |
| 67 | ((CreateElementRequest) getRequest()).setNewElement(newElement); |
| 68 | return CommandResult.newOKCommandResult(newElement); |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * @generated |
| 73 | */ |
| 74 | protected void doConfigure(EntryLevelSystemCall newElement, |
| 75 | IProgressMonitor monitor, IAdaptable info) |
| 76 | throws ExecutionException { |
| 77 | IElementType elementType = ((CreateElementRequest) getRequest()) |
| 78 | .getElementType(); |
| 79 | ConfigureRequest configureRequest = new ConfigureRequest( |
| 80 | getEditingDomain(), newElement, elementType); |
| 81 | configureRequest.setClientContext(((CreateElementRequest) getRequest()) |
| 82 | .getClientContext()); |
| 83 | configureRequest.addParameters(getRequest().getParameters()); |
| 84 | ICommand configureCommand = elementType |
| 85 | .getEditCommand(configureRequest); |
| 86 | if (configureCommand != null && configureCommand.canExecute()) { |
| 87 | configureCommand.execute(monitor, info); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | } |