1 | package de.uka.ipd.sdq.pcmbench; |
2 | import org.eclipse.ui.plugin.AbstractUIPlugin; |
3 | import org.osgi.framework.BundleContext; |
4 | |
5 | |
6 | public class PCMBenchActivator extends AbstractUIPlugin { |
7 | |
8 | public final static String PLUGIN_ID = "de.uka.ipd.sdq.pcmbench"; |
9 | /* (non-Javadoc) |
10 | * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) |
11 | */ |
12 | @Override |
13 | public void start(BundleContext context) throws Exception { |
14 | // TODO Auto-generated method stub |
15 | super.start(context); |
16 | } |
17 | |
18 | public PCMBenchActivator() { |
19 | // TODO Auto-generated constructor stub |
20 | } |
21 | |
22 | } |