Java SDK and Eclipse plugin for simulator.
[platform/upstream/iotivity.git] / service / simulator / java / eclipse-plugin / ServiceProviderPlugin / src / oic / simulator / serviceprovider / Activator.java
index 093fb78..f9816d3 100644 (file)
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2015 Samsung Electronics All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package oic.simulator.serviceprovider;
 
 import oic.simulator.serviceprovider.manager.ImageManager;
@@ -8,12 +24,12 @@ import org.eclipse.ui.plugin.AbstractUIPlugin;
 import org.osgi.framework.BundleContext;
 
 /**
- * The activator class controls the plug-in life cycle
+ * The activator class controls the plug-in life cycle.
  */
 public class Activator extends AbstractUIPlugin {
 
     // The plug-in ID
-    public static final String     PLUGIN_ID = "ServiceProviderPlugin"; //$NON-NLS-1$
+    public static final String     PLUGIN_ID = "ServiceProviderPlugin";
 
     // The shared instance
     private static Activator       plugin;
@@ -24,14 +40,18 @@ public class Activator extends AbstractUIPlugin {
 
     private static ImageManager    imageManager;
 
+    static {
+        System.loadLibrary("SimulatorManager");
+    }
+
     public Activator() {
     }
 
     public void start(BundleContext context) throws Exception {
         super.start(context);
         plugin = this;
-        setResourceManager(new ResourceManager());
         setLogManager(new LogManager());
+        setResourceManager(new ResourceManager());
         imageManager = ImageManager.getInstance();
     }