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

COVERAGE SUMMARY FOR SOURCE FILE [ProbeSpecificationEditPlugin.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ProbeSpecificationEditPlugin0%   (0/1)0%   (0/5)0%   (0/29)0%   (0/11)
<static initializer> 0%   (0/1)0%   (0/5)0%   (0/2)
ProbeSpecificationEditPlugin (): void 0%   (0/1)0%   (0/17)0%   (0/6)
access$0 (ProbeSpecificationEditPlugin$Implementation): void 0%   (0/1)0%   (0/3)0%   (0/1)
getPlugin (): ProbeSpecificationEditPlugin$Implementation 0%   (0/1)0%   (0/2)0%   (0/1)
getPluginResourceLocator (): ResourceLocator 0%   (0/1)0%   (0/2)0%   (0/1)
     
class ProbeSpecificationEditPlugin$Implementation0%   (0/1)0%   (0/1)0%   (0/5)0%   (0/3)
ProbeSpecificationEditPlugin$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.probespec.provider;
8 
9import de.uka.ipd.sdq.identifier.provider.IdentifierEditPlugin;
10 
11import de.uka.ipd.sdq.pipesandfilters.provider.PipesandfiltersEditPlugin;
12 
13import org.eclipse.emf.common.EMFPlugin;
14 
15import org.eclipse.emf.common.util.ResourceLocator;
16 
17import org.eclipse.emf.ecore.provider.EcoreEditPlugin;
18 
19/**
20 * This is the central singleton for the ProbeSpecification edit plugin.
21 * <!-- begin-user-doc -->
22 * <!-- end-user-doc -->
23 * @generated
24 */
25public final class ProbeSpecificationEditPlugin extends EMFPlugin {
26        /**
27         * Keep track of the singleton.
28         * <!-- begin-user-doc -->
29         * <!-- end-user-doc -->
30         * @generated
31         */
32        public static final ProbeSpecificationEditPlugin INSTANCE = new ProbeSpecificationEditPlugin();
33 
34        /**
35         * Keep track of the singleton.
36         * <!-- begin-user-doc -->
37         * <!-- end-user-doc -->
38         * @generated
39         */
40        private static Implementation plugin;
41 
42        /**
43         * Create the instance.
44         * <!-- begin-user-doc -->
45         * <!-- end-user-doc -->
46         * @generated
47         */
48        public ProbeSpecificationEditPlugin() {
49                super
50                  (new ResourceLocator [] {
51                     EcoreEditPlugin.INSTANCE,
52                     IdentifierEditPlugin.INSTANCE,
53                     PipesandfiltersEditPlugin.INSTANCE,
54                   });
55        }
56 
57        /**
58         * Returns the singleton instance of the Eclipse plugin.
59         * <!-- begin-user-doc -->
60         * <!-- end-user-doc -->
61         * @return the singleton instance.
62         * @generated
63         */
64        @Override
65        public ResourceLocator getPluginResourceLocator() {
66                return plugin;
67        }
68 
69        /**
70         * Returns the singleton instance of the Eclipse plugin.
71         * <!-- begin-user-doc -->
72         * <!-- end-user-doc -->
73         * @return the singleton instance.
74         * @generated
75         */
76        public static Implementation getPlugin() {
77                return plugin;
78        }
79 
80        /**
81         * The actual implementation of the Eclipse <b>Plugin</b>.
82         * <!-- begin-user-doc -->
83         * <!-- end-user-doc -->
84         * @generated
85         */
86        public static class Implementation extends EclipsePlugin {
87                /**
88                 * Creates an instance.
89                 * <!-- begin-user-doc -->
90                 * <!-- end-user-doc -->
91                 * @generated
92                 */
93                public Implementation() {
94                        super();
95 
96                        // Remember the static instance.
97                        //
98                        plugin = this;
99                }
100        }
101 
102}

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