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

COVERAGE SUMMARY FOR SOURCE FILE [CompositeCommandsUtil.java]

nameclass, %method, %block, %line, %
CompositeCommandsUtil.java0%   (0/1)0%   (0/2)0%   (0/24)0%   (0/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class CompositeCommandsUtil0%   (0/1)0%   (0/2)0%   (0/24)0%   (0/9)
CompositeCommandsUtil (): void 0%   (0/1)0%   (0/3)0%   (0/1)
displayReorientationError (): CommandResult 0%   (0/1)0%   (0/21)0%   (0/8)

1/**
2 * 
3 */
4package de.uka.ipd.sdq.pcm.gmf.composite.edit.commands;
5 
6import org.eclipse.gmf.runtime.common.core.command.CommandResult;
7import org.eclipse.swt.SWT;
8import org.eclipse.swt.widgets.MessageBox;
9import org.eclipse.swt.widgets.Shell;
10import org.eclipse.ui.PlatformUI;
11 
12/**Utility functions for commands in composite package.
13 * @author groenda
14 * @generated not
15 */
16public class CompositeCommandsUtil {
17        
18        /**Notifies the user that re-orientation is not supported and cancels the current command.
19         * @return Result of cancel command.
20         */
21        public static CommandResult displayReorientationError() {
22                Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow()
23                .getShell();
24                MessageBox messageBox = new MessageBox(shell, SWT.OK | SWT.ICON_ERROR);
25                messageBox.setText("Notice");
26                messageBox
27                                .setMessage("Please delete the link and create a new one instead of reorienting it.");
28                messageBox.open();
29                return CommandResult.newCancelledCommandResult();
30        }
31        
32 
33}

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