]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.ui/src/org/simantics/ui/workbench/editor/EditorAdapterDescriptorImpl.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / workbench / editor / EditorAdapterDescriptorImpl.java
index b324788203bbbe9dde13914817bc417aad201c7c..01437631f7720695ac6a0bb49dc2197694e2d543 100644 (file)
@@ -1,84 +1,84 @@
-/*******************************************************************************\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.ui.workbench.editor;\r
-\r
-import java.util.Arrays;\r
-import java.util.Collection;\r
-import java.util.Collections;\r
-\r
-\r
-public class EditorAdapterDescriptorImpl implements EditorAdapterDescriptor {\r
-\r
-    private final String                id;\r
-\r
-    private final String                groupId;\r
-\r
-    private final EditorAdapter adapter;\r
-\r
-    /**\r
-     * Null if there is no context limitation\r
-     */\r
-    private final String[]              inContexts;\r
-\r
-    public EditorAdapterDescriptorImpl(String id, String groupId, EditorAdapter adapter, String[] inContexts) {\r
-        this.id = id;\r
-        if (groupId != null && groupId.isEmpty())\r
-            groupId = null;\r
-        this.groupId = groupId;\r
-        this.adapter = adapter;\r
-        if (inContexts != null && inContexts.length == 0)\r
-            inContexts = null;\r
-        this.inContexts = inContexts;\r
-    }\r
-\r
-    @Override\r
-    public String getId() {\r
-        return id;\r
-    }\r
-\r
-    @Override\r
-    public String getGroupId() {\r
-        return groupId;\r
-    }\r
-\r
-    @Override\r
-    public EditorAdapter getAdapter() {\r
-        return adapter;\r
-    }\r
-\r
-    @Override\r
-    public Collection<String> getInContexts() {\r
-        if (inContexts == null)\r
-            return Collections.emptyList();\r
-        return Arrays.asList(inContexts);\r
-    }\r
-\r
-    @Override\r
-    public boolean isActive(Collection<?> activeContextIds) {\r
-        // null indicates perpetually active\r
-        if (inContexts == null)\r
-            return true;\r
-\r
-        for (Object o : inContexts)\r
-            if (activeContextIds.contains(o))\r
-                return true;\r
-        return false;\r
-    }\r
-    \r
-    @Override\r
-    public String toString() {\r
-        StringBuilder sb = new StringBuilder();\r
-        sb.append(EditorAdapterDescriptorImpl.class.getSimpleName()).append(" id=").append(id).append(" gId=").append(groupId);\r
-        return sb.toString();\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.ui.workbench.editor;
+
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.Collections;
+
+
+public class EditorAdapterDescriptorImpl implements EditorAdapterDescriptor {
+
+    private final String                id;
+
+    private final String                groupId;
+
+    private final EditorAdapter adapter;
+
+    /**
+     * Null if there is no context limitation
+     */
+    private final String[]              inContexts;
+
+    public EditorAdapterDescriptorImpl(String id, String groupId, EditorAdapter adapter, String[] inContexts) {
+        this.id = id;
+        if (groupId != null && groupId.isEmpty())
+            groupId = null;
+        this.groupId = groupId;
+        this.adapter = adapter;
+        if (inContexts != null && inContexts.length == 0)
+            inContexts = null;
+        this.inContexts = inContexts;
+    }
+
+    @Override
+    public String getId() {
+        return id;
+    }
+
+    @Override
+    public String getGroupId() {
+        return groupId;
+    }
+
+    @Override
+    public EditorAdapter getAdapter() {
+        return adapter;
+    }
+
+    @Override
+    public Collection<String> getInContexts() {
+        if (inContexts == null)
+            return Collections.emptyList();
+        return Arrays.asList(inContexts);
+    }
+
+    @Override
+    public boolean isActive(Collection<?> activeContextIds) {
+        // null indicates perpetually active
+        if (inContexts == null)
+            return true;
+
+        for (Object o : inContexts)
+            if (activeContextIds.contains(o))
+                return true;
+        return false;
+    }
+    
+    @Override
+    public String toString() {
+        StringBuilder sb = new StringBuilder();
+        sb.append(EditorAdapterDescriptorImpl.class.getSimpleName()).append(" id=").append(id).append(" gId=").append(groupId);
+        return sb.toString();
+    }
+
+}