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 [PalladioComponentModelEditorPlugin.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PalladioComponentModelEditorPlugin0%   (0/1)0%   (0/5)0%   (0/29)0%   (0/11)
<static initializer> 0%   (0/1)0%   (0/5)0%   (0/2)
PalladioComponentModelEditorPlugin (): void 0%   (0/1)0%   (0/17)0%   (0/6)
access$0 (PalladioComponentModelEditorPlugin$Implementation): void 0%   (0/1)0%   (0/3)0%   (0/1)
getPlugin (): PalladioComponentModelEditorPlugin$Implementation 0%   (0/1)0%   (0/2)0%   (0/1)
getPluginResourceLocator (): ResourceLocator 0%   (0/1)0%   (0/2)0%   (0/1)
     
class PalladioComponentModelEditorPlugin$Implementation0%   (0/1)0%   (0/1)0%   (0/5)0%   (0/3)
PalladioComponentModelEditorPlugin$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 PalladioComponentModel editor plugin.
19 * <!-- begin-user-doc -->
20 * <!-- end-user-doc -->
21 * @generated
22 */
23public final class PalladioComponentModelEditorPlugin extends EMFPlugin {
24        /**
25         * <!-- begin-user-doc -->
26         * <!-- end-user-doc -->
27         * @generated
28         */
29        public static final String copyright = "Copyright 2007 by SDQ, IPD, University of Karlsruhe, Germany";
30        
31        /**
32         * Keep track of the singleton.
33         * <!-- begin-user-doc -->
34         * <!-- end-user-doc -->
35         * @generated
36         */
37        public static final PalladioComponentModelEditorPlugin INSTANCE = new PalladioComponentModelEditorPlugin();
38        
39        /**
40         * Keep track of the singleton.
41         * <!-- begin-user-doc -->
42         * <!-- end-user-doc -->
43         * @generated
44         */
45        private static Implementation plugin;
46 
47        /**
48         * Create the instance.
49         * <!-- begin-user-doc -->
50         * <!-- end-user-doc -->
51         * @generated
52         */
53        public PalladioComponentModelEditorPlugin() {
54                super
55                        (new ResourceLocator [] {
56                                IdentifierEditPlugin.INSTANCE,
57                                ProbabilityFunctionEditPlugin.INSTANCE,
58                                StoexEditPlugin.INSTANCE,
59                        });
60        }
61 
62        /**
63         * Returns the singleton instance of the Eclipse plugin.
64         * <!-- begin-user-doc -->
65         * <!-- end-user-doc -->
66         * @return the singleton instance.
67         * @generated
68         */
69        @Override
70        public ResourceLocator getPluginResourceLocator() {
71                return plugin;
72        }
73        
74        /**
75         * Returns the singleton instance of the Eclipse plugin.
76         * <!-- begin-user-doc -->
77         * <!-- end-user-doc -->
78         * @return the singleton instance.
79         * @generated
80         */
81        public static Implementation getPlugin() {
82                return plugin;
83        }
84        
85        /**
86         * The actual implementation of the Eclipse <b>Plugin</b>.
87         * <!-- begin-user-doc -->
88         * <!-- end-user-doc -->
89         * @generated
90         */
91        public static class Implementation extends EclipseUIPlugin {
92                /**
93                 * Creates an instance.
94                 * <!-- begin-user-doc -->
95                 * <!-- end-user-doc -->
96                 * @generated
97                 */
98                public Implementation() {
99                        super();
100        
101                        // Remember the static instance.
102                        //
103                        plugin = this;
104                }
105        }
106 
107}

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