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

COVERAGE SUMMARY FOR SOURCE FILE [PcmEditorPlugin.java]

nameclass, %method, %block, %line, %
PcmEditorPlugin.java0%   (0/2)0%   (0/6)0%   (0/34)0%   (0/14)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PcmEditorPlugin0%   (0/1)0%   (0/5)0%   (0/29)0%   (0/11)
<static initializer> 0%   (0/1)0%   (0/5)0%   (0/2)
PcmEditorPlugin (): void 0%   (0/1)0%   (0/17)0%   (0/6)
access$0 (PcmEditorPlugin$Implementation): void 0%   (0/1)0%   (0/3)0%   (0/1)
getPlugin (): PcmEditorPlugin$Implementation 0%   (0/1)0%   (0/2)0%   (0/1)
getPluginResourceLocator (): ResourceLocator 0%   (0/1)0%   (0/2)0%   (0/1)
     
class PcmEditorPlugin$Implementation0%   (0/1)0%   (0/1)0%   (0/5)0%   (0/3)
PcmEditorPlugin$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.pcm.core.entity.presentation;
8 
9import org.eclipse.emf.common.EMFPlugin;
10import org.eclipse.emf.common.ui.EclipseUIPlugin;
11import org.eclipse.emf.common.util.ResourceLocator;
12 
13import de.uka.ipd.sdq.identifier.provider.IdentifierEditPlugin;
14import de.uka.ipd.sdq.probfunction.provider.ProbabilityFunctionEditPlugin;
15import de.uka.ipd.sdq.stoex.provider.StoexEditPlugin;
16 
17/**
18 * This is the central singleton for the Pcm editor plugin.
19 * <!-- begin-user-doc -->
20 * <!-- end-user-doc -->
21 * @generated
22 */
23public final class PcmEditorPlugin extends EMFPlugin {
24        /**
25         * Keep track of the singleton.
26         * <!-- begin-user-doc -->
27         * <!-- end-user-doc -->
28         * @generated
29         */
30        public static final PcmEditorPlugin INSTANCE = new PcmEditorPlugin();
31 
32        /**
33         * Keep track of the singleton.
34         * <!-- begin-user-doc -->
35         * <!-- end-user-doc -->
36         * @generated
37         */
38        private static Implementation plugin;
39 
40        /**
41         * Create the instance.
42         * <!-- begin-user-doc -->
43         * <!-- end-user-doc -->
44         * @generated
45         */
46        public PcmEditorPlugin() {
47                super
48                  (new ResourceLocator [] {
49                     IdentifierEditPlugin.INSTANCE,
50                     ProbabilityFunctionEditPlugin.INSTANCE,
51                     StoexEditPlugin.INSTANCE,
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        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 EclipseUIPlugin {
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.pcm.core.entity.presentation]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov