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

COVERAGE SUMMARY FOR SOURCE FILE [Activator.java]

nameclass, %method, %block, %line, %
Activator.java0%   (0/1)0%   (0/4)0%   (0/17)0%   (0/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class Activator0%   (0/1)0%   (0/4)0%   (0/17)0%   (0/9)
Activator (): void 0%   (0/1)0%   (0/3)0%   (0/2)
getDefault (): Activator 0%   (0/1)0%   (0/2)0%   (0/1)
start (BundleContext): void 0%   (0/1)0%   (0/6)0%   (0/3)
stop (BundleContext): void 0%   (0/1)0%   (0/6)0%   (0/3)

1package de.uka.ipd.sdq.dsexplore.analysis.lqn;
2 
3import org.eclipse.core.runtime.Plugin;
4import org.osgi.framework.BundleContext;
5 
6/**
7 * The activator class controls the plug-in life cycle
8 */
9public class Activator extends Plugin {
10 
11        // The plug-in ID
12        public static final String PLUGIN_ID = "de.uka.ipd.sdq.dsexplore.analysis.lqnsolver";
13 
14        // The shared instance
15        private static Activator plugin;
16        
17        /**
18         * The constructor
19         */
20        public Activator() {
21        }
22 
23        /*
24         * (non-Javadoc)
25         * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
26         */
27        @Override
28        public void start(BundleContext context) throws Exception {
29                super.start(context);
30                plugin = this;
31        }
32 
33        /*
34         * (non-Javadoc)
35         * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
36         */
37        @Override
38        public void stop(BundleContext context) throws Exception {
39                plugin = null;
40                super.stop(context);
41        }
42 
43        /**
44         * Returns the shared instance
45         *
46         * @return the shared instance
47         */
48        public static Activator getDefault() {
49                return plugin;
50        }
51 
52}

[all classes][de.uka.ipd.sdq.dsexplore.analysis.lqn]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov