]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics/src/org/simantics/internal/startup/StartupExtensions.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics / src / org / simantics / internal / startup / StartupExtensions.java
index 03775c8ce38bdd2d028dbf22b9e843c47d820bee..562ca14ffd8d1645d39d22fa903acac14653831f 100644 (file)
@@ -1,53 +1,53 @@
-/*******************************************************************************\r
- * Copyright (c) 2015 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
- *     Semantum Oy - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.internal.startup;\r
-\r
-import org.eclipse.core.runtime.CoreException;\r
-import org.eclipse.core.runtime.IStatus;\r
-import org.eclipse.core.runtime.Status;\r
-import org.simantics.PlatformException;\r
-import org.simantics.internal.Activator;\r
-import org.simantics.startup.IStartup;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class StartupExtensions {\r
-\r
-    /**\r
-     * @return\r
-     */\r
-    public static StartupExtension[] getAllStartupExtensions() {\r
-        return Activator.getDefault().getStartupRegistry().getExtensions();\r
-    }\r
-\r
-    /**\r
-     * Consults all {@link IStartup} extensions retrieved from\r
-     * {@link #getAllStartupExtensions()} by invoking their\r
-     * {@link IStartup#preStartup()} method.\r
-     * \r
-     * @throws PlatformException\r
-     */\r
-    public static void consultStartupExtensions() throws PlatformException {\r
-        for (StartupExtension ext : getAllStartupExtensions()) {\r
-            try {\r
-                ext.newInstance().preStartup();\r
-            } catch (CoreException ex) {\r
-                Activator.getDefault().getLog().log(\r
-                        new Status(IStatus.ERROR, Activator.PLUGIN_ID,\r
-                                "Failed to instantiate startup extension class "\r
-                                        + ext.getClassName(), ex));\r
-            }\r
-        }\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2015 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:
+ *     Semantum Oy - initial API and implementation
+ *******************************************************************************/
+package org.simantics.internal.startup;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.simantics.PlatformException;
+import org.simantics.internal.Activator;
+import org.simantics.startup.IStartup;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class StartupExtensions {
+
+    /**
+     * @return
+     */
+    public static StartupExtension[] getAllStartupExtensions() {
+        return Activator.getDefault().getStartupRegistry().getExtensions();
+    }
+
+    /**
+     * Consults all {@link IStartup} extensions retrieved from
+     * {@link #getAllStartupExtensions()} by invoking their
+     * {@link IStartup#preStartup()} method.
+     * 
+     * @throws PlatformException
+     */
+    public static void consultStartupExtensions() throws PlatformException {
+        for (StartupExtension ext : getAllStartupExtensions()) {
+            try {
+                ext.newInstance().preStartup();
+            } catch (CoreException ex) {
+                Activator.getDefault().getLog().log(
+                        new Status(IStatus.ERROR, Activator.PLUGIN_ID,
+                                "Failed to instantiate startup extension class "
+                                        + ext.getClassName(), ex));
+            }
+        }
+    }
+
+}