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

COVERAGE SUMMARY FOR SOURCE FILE [SensorFrameworkDialogPlugin.java]

nameclass, %method, %block, %line, %
SensorFrameworkDialogPlugin.java0%   (0/1)0%   (0/5)0%   (0/28)0%   (0/12)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SensorFrameworkDialogPlugin0%   (0/1)0%   (0/5)0%   (0/28)0%   (0/12)
<static initializer> 0%   (0/1)0%   (0/3)0%   (0/2)
SensorFrameworkDialogPlugin (): void 0%   (0/1)0%   (0/3)0%   (0/2)
log (int, String): void 0%   (0/1)0%   (0/10)0%   (0/2)
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.sensorframework.dialogs;
2import org.eclipse.core.runtime.Status;
3import org.eclipse.ui.plugin.AbstractUIPlugin;
4import org.osgi.framework.BundleContext;
5 
6 
7public class SensorFrameworkDialogPlugin extends AbstractUIPlugin {
8 
9        private static SensorFrameworkDialogPlugin plugin = null;
10 
11        // The plug-in ID
12        public static final String PLUGIN_ID = "de.uka.ipd.sdq.sensorframework.dialogs";
13        
14        public SensorFrameworkDialogPlugin() {
15                // TODO Auto-generated constructor stub
16        }
17        
18        /* (non-Javadoc)
19         * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
20         */
21        public void start(BundleContext context) throws Exception {
22                super.start(context);
23                plugin = this;
24        }
25 
26        /* (non-Javadoc)
27         * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
28         */
29        public void stop(BundleContext context) throws Exception {
30                plugin = null;
31                super.stop(context);
32        }        
33 
34        public static void log(int severity, String message) {
35                plugin.getLog().log(new Status(severity,PLUGIN_ID,message));
36        }
37        
38}

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