]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.project/src/org/simantics/project/features/registry/IProjectFeatureExtension.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.project / src / org / simantics / project / features / registry / IProjectFeatureExtension.java
index 00b39ef121970a0ef933248b73ef1aea046a3f27..011def283bcfad6765211f3ee294b5c7a61cfa57 100644 (file)
@@ -1,71 +1,71 @@
-/*******************************************************************************\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.project.features.registry;\r
-\r
-import java.util.Collection;\r
-\r
-import org.eclipse.core.runtime.CoreException;\r
-import org.simantics.project.features.IProjectFeature;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public interface IProjectFeatureExtension {\r
-\r
-    /**\r
-     * @return id of this extension\r
-     */\r
-    String getId();\r
-\r
-    /**\r
-     * @return label of this extension\r
-     */\r
-    String getLabel();\r
-\r
-    /**\r
-     * @return description of this extension\r
-     */\r
-    String getDescription();\r
-\r
-    /**\r
-     * Informs whether this project feature should be published to users in UI's\r
-     * that visualize user selectable project features in some manner.\r
-     * \r
-     * For example top level project features should always be published in\r
-     * order to give Simantics Project Manager users the possibility to select\r
-     * the feature to be used in their project.\r
-     * \r
-     * @return <code>true</code> if the extension is published\r
-     */\r
-    boolean isPublished();\r
-\r
-    /**\r
-     * @return\r
-     */\r
-    Collection<ProjectFeatureReference> requires();\r
-\r
-    /**\r
-     * @return\r
-     */\r
-    Collection<InjectedDependency> injections();\r
-\r
-    /**\r
-     * @return\r
-     */\r
-    Collection<GroupReference> installGroups();\r
-\r
-    /**\r
-     * @return a new instance of the IProjectFeature described by this extension\r
-     */\r
-    IProjectFeature newInstance() throws CoreException;\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.project.features.registry;
+
+import java.util.Collection;
+
+import org.eclipse.core.runtime.CoreException;
+import org.simantics.project.features.IProjectFeature;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public interface IProjectFeatureExtension {
+
+    /**
+     * @return id of this extension
+     */
+    String getId();
+
+    /**
+     * @return label of this extension
+     */
+    String getLabel();
+
+    /**
+     * @return description of this extension
+     */
+    String getDescription();
+
+    /**
+     * Informs whether this project feature should be published to users in UI's
+     * that visualize user selectable project features in some manner.
+     * 
+     * For example top level project features should always be published in
+     * order to give Simantics Project Manager users the possibility to select
+     * the feature to be used in their project.
+     * 
+     * @return <code>true</code> if the extension is published
+     */
+    boolean isPublished();
+
+    /**
+     * @return
+     */
+    Collection<ProjectFeatureReference> requires();
+
+    /**
+     * @return
+     */
+    Collection<InjectedDependency> injections();
+
+    /**
+     * @return
+     */
+    Collection<GroupReference> installGroups();
+
+    /**
+     * @return a new instance of the IProjectFeature described by this extension
+     */
+    IProjectFeature newInstance() throws CoreException;
+
+}