Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 99de52632bbfeeac2995f09e7322ae457e1d8719 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.etrice.core.ui;

import org.eclipse.etrice.core.ui.internal.RoomActivator;
import org.eclipse.etrice.core.ui.quickfix.QuickfixExtensionManager;
import org.osgi.framework.BundleContext;

public class RoomUiActivator extends RoomActivator {

	@Override
	public void start(BundleContext context) throws Exception {
		super.start(context);
		
		QuickfixExtensionManager.getInstance().loadQuickfixExtensions();
	}
}

Back to the top