1 | /* |
2 | * Copyright 2007, IPD, SDQ, University of Karlsruhe |
3 | */ |
4 | package de.uka.ipd.sdq.pcm.gmf.repository.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.repository.EventGroup; |
19 | import de.uka.ipd.sdq.pcm.repository.EventType; |
20 | import de.uka.ipd.sdq.pcm.repository.RepositoryFactory; |
21 | |
22 | /** |
23 | * @generated |
24 | */ |
25 | public class EventTypeCreateCommand extends EditElementCommand { |
26 | |
27 | /** |
28 | * @generated |
29 | */ |
30 | public EventTypeCreateCommand(CreateElementRequest req) { |
31 | super(req.getLabel(), null, req); |
32 | } |
33 | |
34 | /** |
35 | * FIXME: replace with setElementToEdit() |
36 | * @generated |
37 | */ |
38 | protected EObject getElementToEdit() { |
39 | EObject container = ((CreateElementRequest) getRequest()) |
40 | .getContainer(); |
41 | if (container instanceof View) { |
42 | container = ((View) container).getElement(); |
43 | } |
44 | return container; |
45 | } |
46 | |
47 | /** |
48 | * @generated |
49 | */ |
50 | public boolean canExecute() { |
51 | return true; |
52 | |
53 | } |
54 | |
55 | /** |
56 | * @generated |
57 | */ |
58 | protected CommandResult doExecuteWithResult(IProgressMonitor monitor, |
59 | IAdaptable info) throws ExecutionException { |
60 | EventType newElement = RepositoryFactory.eINSTANCE.createEventType(); |
61 | |
62 | EventGroup owner = (EventGroup) getElementToEdit(); |
63 | owner.getEventTypes__EventGroup().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(EventType newElement, IProgressMonitor monitor, |
75 | IAdaptable info) throws ExecutionException { |
76 | IElementType elementType = ((CreateElementRequest) getRequest()) |
77 | .getElementType(); |
78 | ConfigureRequest configureRequest = new ConfigureRequest( |
79 | getEditingDomain(), newElement, elementType); |
80 | configureRequest.setClientContext(((CreateElementRequest) getRequest()) |
81 | .getClientContext()); |
82 | configureRequest.addParameters(getRequest().getParameters()); |
83 | ICommand configureCommand = elementType |
84 | .getEditCommand(configureRequest); |
85 | if (configureCommand != null && configureCommand.canExecute()) { |
86 | configureCommand.execute(monitor, info); |
87 | } |
88 | } |
89 | |
90 | } |