]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/diagramEditor/handlers/WorkbenchStructuralSelectionProvider.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / diagramEditor / handlers / WorkbenchStructuralSelectionProvider.java
index 4b46b9b2ac8fa9aa11cadc9978a50526039a8d37..b9323bec4dbe6cea8ec1064b4f1c0a476eef2a9a 100644 (file)
@@ -1,65 +1,65 @@
-/*******************************************************************************\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.modeling.ui.diagramEditor.handlers;\r
-\r
-import java.util.ArrayList;\r
-\r
-import org.eclipse.jface.viewers.IPostSelectionProvider;\r
-import org.eclipse.jface.viewers.ISelection;\r
-import org.eclipse.jface.viewers.StructuredSelection;\r
-import org.eclipse.ui.IWorkbenchPartSite;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.ResourceArray;\r
-import org.simantics.diagram.ui.WorkbenchSelectionProvider;\r
-import org.simantics.g2d.element.ElementHints;\r
-import org.simantics.g2d.element.IElement;\r
-import org.simantics.utils.threads.IThreadWorkQueue;\r
-\r
-/**\r
- * A canvas participant that listens to the #0 mouse selection and provides it\r
- * forward through the {@link IPostSelectionProvider} interface.\r
- * \r
- * @author Tuukka Lehtonen\r
- */\r
-public class WorkbenchStructuralSelectionProvider extends WorkbenchSelectionProvider {\r
-\r
-    ResourceArray                                   suffix;\r
-\r
-    public WorkbenchStructuralSelectionProvider(IThreadWorkQueue swt, ResourceArray appendToSelections) {\r
-        this(swt, null, appendToSelections);\r
-    }\r
-\r
-    public WorkbenchStructuralSelectionProvider(IThreadWorkQueue swt, IWorkbenchPartSite site, ResourceArray appendToSelections) {\r
-        super(swt, site);\r
-        this.suffix = appendToSelections;\r
-    }\r
-\r
-    protected ISelection constructAdaptableSelection(Iterable<?> selection) {\r
-        ArrayList<Object> objects = new ArrayList<Object>();\r
-        for (Object o : selection) {\r
-            if (o instanceof IElement) {\r
-                IElement e = (IElement) o;\r
-                Object object = e.getHint(ElementHints.KEY_OBJECT);\r
-                if (object instanceof Resource) {\r
-                    objects.add(suffix.prepended((Resource) object));\r
-                } else {\r
-                    objects.add(object);\r
-                    objects.add(suffix);\r
-                }\r
-            } else {\r
-                System.out.println("  unrecognized selection: " + o.getClass() + ": " + o);\r
-            }\r
-        }\r
-        return new StructuredSelection(objects);\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.modeling.ui.diagramEditor.handlers;
+
+import java.util.ArrayList;
+
+import org.eclipse.jface.viewers.IPostSelectionProvider;
+import org.eclipse.jface.viewers.ISelection;
+import org.eclipse.jface.viewers.StructuredSelection;
+import org.eclipse.ui.IWorkbenchPartSite;
+import org.simantics.db.Resource;
+import org.simantics.db.common.ResourceArray;
+import org.simantics.diagram.ui.WorkbenchSelectionProvider;
+import org.simantics.g2d.element.ElementHints;
+import org.simantics.g2d.element.IElement;
+import org.simantics.utils.threads.IThreadWorkQueue;
+
+/**
+ * A canvas participant that listens to the #0 mouse selection and provides it
+ * forward through the {@link IPostSelectionProvider} interface.
+ * 
+ * @author Tuukka Lehtonen
+ */
+public class WorkbenchStructuralSelectionProvider extends WorkbenchSelectionProvider {
+
+    ResourceArray                                   suffix;
+
+    public WorkbenchStructuralSelectionProvider(IThreadWorkQueue swt, ResourceArray appendToSelections) {
+        this(swt, null, appendToSelections);
+    }
+
+    public WorkbenchStructuralSelectionProvider(IThreadWorkQueue swt, IWorkbenchPartSite site, ResourceArray appendToSelections) {
+        super(swt, site);
+        this.suffix = appendToSelections;
+    }
+
+    protected ISelection constructAdaptableSelection(Iterable<?> selection) {
+        ArrayList<Object> objects = new ArrayList<Object>();
+        for (Object o : selection) {
+            if (o instanceof IElement) {
+                IElement e = (IElement) o;
+                Object object = e.getHint(ElementHints.KEY_OBJECT);
+                if (object instanceof Resource) {
+                    objects.add(suffix.prepended((Resource) object));
+                } else {
+                    objects.add(object);
+                    objects.add(suffix);
+                }
+            } else {
+                System.out.println("  unrecognized selection: " + o.getClass() + ": " + o);
+            }
+        }
+        return new StructuredSelection(objects);
+    }
+
+}