]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/Activator.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / Activator.java
1 package vtk;
2
3 import org.osgi.framework.BundleActivator;
4 import org.osgi.framework.BundleContext;
5
6 public class Activator implements BundleActivator {
7     
8     @Override
9     public void start(BundleContext context) throws Exception {
10         vtkJavaDep.load();
11         
12     } 
13     
14     @Override
15     public void stop(BundleContext context) throws Exception {
16         
17     }
18
19 }