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

COVERAGE SUMMARY FOR SOURCE FILE [CompletionsEditorPlugin.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

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

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

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