EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.fzi.se.quality.presentation]

COVERAGE SUMMARY FOR SOURCE FILE [QualityEditorPlugin.java]

nameclass, %method, %block, %line, %
QualityEditorPlugin.java0%   (0/2)0%   (0/6)0%   (0/42)0%   (0/16)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class QualityEditorPlugin0%   (0/1)0%   (0/5)0%   (0/37)0%   (0/13)
<static initializer> 0%   (0/1)0%   (0/5)0%   (0/2)
QualityEditorPlugin (): void 0%   (0/1)0%   (0/25)0%   (0/8)
access$0 (QualityEditorPlugin$Implementation): void 0%   (0/1)0%   (0/3)0%   (0/1)
getPlugin (): QualityEditorPlugin$Implementation 0%   (0/1)0%   (0/2)0%   (0/1)
getPluginResourceLocator (): ResourceLocator 0%   (0/1)0%   (0/2)0%   (0/1)
     
class QualityEditorPlugin$Implementation0%   (0/1)0%   (0/1)0%   (0/5)0%   (0/3)
QualityEditorPlugin$Implementation (): void 0%   (0/1)0%   (0/5)0%   (0/3)

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

[all classes][de.fzi.se.quality.presentation]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov