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

COVERAGE SUMMARY FOR SOURCE FILE [UnitsEditPlugin.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

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

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