EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.units.presentation]

COVERAGE SUMMARY FOR SOURCE FILE [UnitsEditorPlugin.java]

nameclass, %method, %block, %line, %
UnitsEditorPlugin.java0%   (0/2)0%   (0/6)0%   (0/22)0%   (0/11)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class UnitsEditorPlugin0%   (0/1)0%   (0/5)0%   (0/17)0%   (0/8)
<static initializer> 0%   (0/1)0%   (0/5)0%   (0/2)
UnitsEditorPlugin (): void 0%   (0/1)0%   (0/5)0%   (0/3)
access$0 (UnitsEditorPlugin$Implementation): void 0%   (0/1)0%   (0/3)0%   (0/1)
getPlugin (): UnitsEditorPlugin$Implementation 0%   (0/1)0%   (0/2)0%   (0/1)
getPluginResourceLocator (): ResourceLocator 0%   (0/1)0%   (0/2)0%   (0/1)
     
class UnitsEditorPlugin$Implementation0%   (0/1)0%   (0/1)0%   (0/5)0%   (0/3)
UnitsEditorPlugin$Implementation (): void 0%   (0/1)0%   (0/5)0%   (0/3)

1/**
2 * <copyright>
3 * </copyright>
4 *
5 * $Id$
6 */
7package de.uka.ipd.sdq.units.presentation;
8 
9import org.eclipse.emf.common.EMFPlugin;
10import org.eclipse.emf.common.ui.EclipseUIPlugin;
11import org.eclipse.emf.common.util.ResourceLocator;
12 
13/**
14 * This is the central singleton for the Units editor plugin.
15 * <!-- begin-user-doc -->
16 * <!-- end-user-doc -->
17 * @generated
18 */
19public final class UnitsEditorPlugin extends EMFPlugin {
20        /**
21         * <!-- begin-user-doc -->
22         * <!-- end-user-doc -->
23         * @generated
24         */
25        public static final String copyright = "Copyright 2007-2009, SDQ, IPD, U Karlsruhe";
26 
27        /**
28         * Keep track of the singleton.
29         * <!-- begin-user-doc -->
30         * <!-- end-user-doc -->
31         * @generated
32         */
33        public static final UnitsEditorPlugin INSTANCE = new UnitsEditorPlugin();
34        
35        /**
36         * Keep track of the singleton.
37         * <!-- begin-user-doc -->
38         * <!-- end-user-doc -->
39         * @generated
40         */
41        private static Implementation plugin;
42 
43        /**
44         * Create the instance.
45         * <!-- begin-user-doc -->
46         * <!-- end-user-doc -->
47         * @generated
48         */
49        public UnitsEditorPlugin() {
50                super
51                        (new ResourceLocator [] {
52                        });
53        }
54 
55        /**
56         * Returns the singleton instance of the Eclipse plugin.
57         * <!-- begin-user-doc -->
58         * <!-- end-user-doc -->
59         * @return the singleton instance.
60         * @generated
61         */
62        @Override
63        public ResourceLocator getPluginResourceLocator() {
64                return plugin;
65        }
66        
67        /**
68         * Returns the singleton instance of the Eclipse plugin.
69         * <!-- begin-user-doc -->
70         * <!-- end-user-doc -->
71         * @return the singleton instance.
72         * @generated
73         */
74        public static Implementation getPlugin() {
75                return plugin;
76        }
77        
78        /**
79         * The actual implementation of the Eclipse <b>Plugin</b>.
80         * <!-- begin-user-doc -->
81         * <!-- end-user-doc -->
82         * @generated
83         */
84        public static class Implementation extends EclipseUIPlugin {
85                /**
86                 * Creates an instance.
87                 * <!-- begin-user-doc -->
88                 * <!-- end-user-doc -->
89                 * @generated
90                 */
91                public Implementation() {
92                        super();
93        
94                        // Remember the static instance.
95                        //
96                        plugin = this;
97                }
98        }
99 
100}

[all classes][de.uka.ipd.sdq.units.presentation]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov