]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.fastlz/src/org/simantics/fastlz/bundle/Activator.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.fastlz / src / org / simantics / fastlz / bundle / Activator.java
index 0feca01d012c4f5bb1586de5f73b1345e8da6db7..b4f6ca9ad547c79fb01e97079bd5b406cec6d43c 100644 (file)
@@ -1,58 +1,58 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.fastlz.bundle;\r
-\r
-import java.io.File;\r
-import java.io.FileNotFoundException;\r
-import java.net.URL;\r
-import java.net.URLDecoder;\r
-\r
-import org.eclipse.core.runtime.FileLocator;\r
-import org.eclipse.core.runtime.IPath;\r
-import org.eclipse.core.runtime.Path;\r
-import org.osgi.framework.BundleActivator;\r
-import org.osgi.framework.BundleContext;\r
-import org.simantics.fastlz.FastLZ;\r
-import org.simantics.fastlz.impl.FastLZConfig;\r
-import org.simantics.fastlz.impl.OS;\r
-\r
-/**\r
- * An OSGi bundle activator for that guarantees the FastLZ library is\r
- * initialized after this bundle is properly activated.\r
- */\r
-public class Activator implements BundleActivator {\r
-\r
-    @Override\r
-    public void start(BundleContext context) throws Exception {\r
-        // Make sure that the FastLZ native library gets initialized properly.\r
-        FastLZConfig.attemptStaticInitialization = false;\r
-        IPath path = new Path("/" + OS.resolveLibName());\r
-        URL libURL = FileLocator.find(context.getBundle(), path, null);\r
-        if (libURL == null) {\r
-            // Fallback for the where org.simantics.fastlz is checked out in the\r
-            // development environment.\r
-            path = new Path("/bin/" + OS.resolveLibName());\r
-            libURL = FileLocator.find(context.getBundle(), path, null);\r
-            if (libURL == null)\r
-                throw new FileNotFoundException(path + " not found in bundle " + context.getBundle().getSymbolicName());\r
-        }\r
-        URL fileURL = FileLocator.toFileURL(libURL);\r
-        File filePath = new File(URLDecoder.decode(fileURL.getPath(), "UTF-8"));\r
-        FastLZ.initialize(filePath);\r
-        \r
-    }\r
-\r
-    @Override\r
-    public void stop(BundleContext context) throws Exception {\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.fastlz.bundle;
+
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.net.URL;
+import java.net.URLDecoder;
+
+import org.eclipse.core.runtime.FileLocator;
+import org.eclipse.core.runtime.IPath;
+import org.eclipse.core.runtime.Path;
+import org.osgi.framework.BundleActivator;
+import org.osgi.framework.BundleContext;
+import org.simantics.fastlz.FastLZ;
+import org.simantics.fastlz.impl.FastLZConfig;
+import org.simantics.fastlz.impl.OS;
+
+/**
+ * An OSGi bundle activator for that guarantees the FastLZ library is
+ * initialized after this bundle is properly activated.
+ */
+public class Activator implements BundleActivator {
+
+    @Override
+    public void start(BundleContext context) throws Exception {
+        // Make sure that the FastLZ native library gets initialized properly.
+        FastLZConfig.attemptStaticInitialization = false;
+        IPath path = new Path("/" + OS.resolveLibName());
+        URL libURL = FileLocator.find(context.getBundle(), path, null);
+        if (libURL == null) {
+            // Fallback for the where org.simantics.fastlz is checked out in the
+            // development environment.
+            path = new Path("/bin/" + OS.resolveLibName());
+            libURL = FileLocator.find(context.getBundle(), path, null);
+            if (libURL == null)
+                throw new FileNotFoundException(path + " not found in bundle " + context.getBundle().getSymbolicName());
+        }
+        URL fileURL = FileLocator.toFileURL(libURL);
+        File filePath = new File(URLDecoder.decode(fileURL.getPath(), "UTF-8"));
+        FastLZ.initialize(filePath);
+        
+    }
+
+    @Override
+    public void stop(BundleContext context) throws Exception {
+    }
+
+}