Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a9f5b103737f95cda4e991a588f7cbbf23d3ac76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.eclipse.etrice.ui.structure;

import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;

public class StructureTestActivator extends Plugin implements BundleActivator {

	private static StructureTestActivator instance = null;
	
	public static StructureTestActivator getInstance() {
		return instance;
	}
	
	@Override
	public void start(BundleContext context) throws Exception {
		super.start(context);
		
		instance = this;
	}

}

Back to the top