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