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

COVERAGE SUMMARY FOR SOURCE FILE [ContextEditorPlugin.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

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

1/**
2 * Copyright 2006, SDQ Group, University Karlsruhe (TH)
3 *
4 * $Id$
5 */
6package de.uka.ipd.sdq.context.computed_usage.presentation;
7 
8import org.eclipse.emf.common.EMFPlugin;
9import org.eclipse.emf.common.ui.EclipseUIPlugin;
10import org.eclipse.emf.common.util.ResourceLocator;
11 
12import de.uka.ipd.sdq.identifier.provider.IdentifierEditPlugin;
13import de.uka.ipd.sdq.pcm.core.provider.PalladioComponentModelEditPlugin;
14import de.uka.ipd.sdq.probfunction.provider.ProbabilityFunctionEditPlugin;
15import de.uka.ipd.sdq.stoex.provider.StoexEditPlugin;
16import de.uka.ipd.sdq.units.provider.UnitsEditPlugin;
17 
18/**
19 * This is the central singleton for the Context editor plugin.
20 * <!-- begin-user-doc -->
21 * <!-- end-user-doc -->
22 * @generated
23 */
24public final class ContextEditorPlugin extends EMFPlugin {
25        /**
26         * <!-- begin-user-doc -->
27         * <!-- end-user-doc -->
28         * @generated
29         */
30        public static final String copyright = "Copyright 2006, SDQ Group, University Karlsruhe (TH)";
31        
32        /**
33         * Keep track of the singleton.
34         * <!-- begin-user-doc -->
35         * <!-- end-user-doc -->
36         * @generated
37         */
38        public static final ContextEditorPlugin INSTANCE = new ContextEditorPlugin();
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 ContextEditorPlugin() {
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.uka.ipd.sdq.context.computed_usage.presentation]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov