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

COVERAGE SUMMARY FOR SOURCE FILE [MarkovEditPlugin.java]

nameclass, %method, %block, %line, %
MarkovEditPlugin.java0%   (0/2)0%   (0/6)0%   (0/22)0%   (0/11)

COVERAGE BREAKDOWN BY CLASS AND METHOD

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

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