]> gerrit.simantics Code Review - simantics/platform.git/blob - Activator.java
38f3c3bd1527d7e1332f3bab392c6d338029923a
[simantics/platform.git] / Activator.java
1 package org.simantics.lz4.bundle;
2
3 import net.jpountz.util.Native;
4
5 import org.osgi.framework.BundleActivator;
6 import org.osgi.framework.BundleContext;
7
8 public class Activator implements BundleActivator {
9
10     public static final String PLUGIN_ID = "org.simantics.lz4";
11     
12     @Override
13     public void start(BundleContext context) throws Exception {
14         Native.load();
15     }
16
17     @Override
18     public void stop(BundleContext context) throws Exception {
19         
20     }
21
22 }