]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.aeri.ui.redmine.core/src/org/simantics/aeri/redmine/core/internal/Activator.java
Experiment around with AERI in Simantics Products
[simantics/platform.git] / bundles / org.simantics.aeri.ui.redmine.core / src / org / simantics / aeri / redmine / core / internal / Activator.java
1 package org.simantics.aeri.redmine.core.internal;
2
3 import org.eclipse.epp.logging.aeri.core.SystemControl;
4 import org.osgi.framework.BundleActivator;
5 import org.osgi.framework.BundleContext;
6 import org.simantics.aeri.redmine.core.di.RedmineAERISettingsCreationFunction;
7 import org.simantics.aeri.redmine.core.settings.RedmineAERISettings;
8
9 public class Activator implements BundleActivator {
10
11     public static final String BUNDLE_ID = "org.simantics.aeri.redmine.core"; //$NON-NLS-1$
12     
13     @Override
14     public void start(BundleContext context) throws Exception {
15         SystemControl.getSystemContext().set(RedmineAERISettings.class.getName(), new RedmineAERISettingsCreationFunction());
16     }
17
18     @Override
19     public void stop(BundleContext context) throws Exception {
20         // TODO Auto-generated method stub
21
22     }
23
24 }