EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.pcm.gmf.repository.edit.commands]

COVERAGE SUMMARY FOR SOURCE FILE [CompositeComponentCreateCommand.java]

nameclass, %method, %block, %line, %
CompositeComponentCreateCommand.java0%   (0/1)0%   (0/5)0%   (0/87)0%   (0/27)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class CompositeComponentCreateCommand0%   (0/1)0%   (0/5)0%   (0/87)0%   (0/27)
CompositeComponentCreateCommand (CreateElementRequest): void 0%   (0/1)0%   (0/7)0%   (0/2)
canExecute (): boolean 0%   (0/1)0%   (0/2)0%   (0/1)
doConfigure (CompositeComponent, IProgressMonitor, IAdaptable): void 0%   (0/1)0%   (0/39)0%   (0/12)
doExecuteWithResult (IProgressMonitor, IAdaptable): CommandResult 0%   (0/1)0%   (0/25)0%   (0/7)
getElementToEdit (): EObject 0%   (0/1)0%   (0/14)0%   (0/5)

1/*
2 *Copyright 2007, IPD, SDQ, University of Karlsruhe
3 */
4package de.uka.ipd.sdq.pcm.gmf.repository.edit.commands;
5 
6import org.eclipse.core.commands.ExecutionException;
7import org.eclipse.core.runtime.IAdaptable;
8import org.eclipse.core.runtime.IProgressMonitor;
9import org.eclipse.emf.ecore.EObject;
10import org.eclipse.gmf.runtime.common.core.command.CommandResult;
11import org.eclipse.gmf.runtime.common.core.command.ICommand;
12import org.eclipse.gmf.runtime.emf.type.core.IElementType;
13import org.eclipse.gmf.runtime.emf.type.core.commands.EditElementCommand;
14import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest;
15import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;
16import org.eclipse.gmf.runtime.notation.View;
17 
18import de.uka.ipd.sdq.pcm.repository.CompositeComponent;
19import de.uka.ipd.sdq.pcm.repository.Repository;
20import de.uka.ipd.sdq.pcm.repository.RepositoryFactory;
21 
22/**
23 * @generated
24 */
25public class CompositeComponentCreateCommand extends EditElementCommand {
26 
27        /**
28         * @generated
29         */
30        public CompositeComponentCreateCommand(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                CompositeComponent newElement = RepositoryFactory.eINSTANCE
60                                .createCompositeComponent();
61 
62                Repository owner = (Repository) getElementToEdit();
63                owner.getComponents__Repository().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(CompositeComponent 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}

[all classes][de.uka.ipd.sdq.pcm.gmf.repository.edit.commands]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov