]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser/model/Experiments.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / modelBrowser / model / Experiments.java
index 9a3a355af65eefc00e813f790ac37bd4d60a54e1..d5fc9523a438d26ea46d5d972e4e2bebc6082d81 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.modeling.ui.modelBrowser.model;\r
-\r
-import java.util.ArrayList;\r
-import java.util.Collection;\r
-\r
-import org.eclipse.jface.resource.ImageDescriptor;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.ResourceArray;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.modeling.ui.Activator;\r
-import org.simantics.simulation.ontology.SimulationResource;\r
-\r
-@Deprecated\r
-public class Experiments extends Node {\r
-\r
-    public Experiments(Resource resource) {\r
-        super(resource);\r
-    }\r
-\r
-    @Override\r
-    public Resource getResource() {\r
-        return resource;\r
-    }\r
-\r
-    @Override\r
-    public String getLabel(ReadGraph g) {\r
-        return "Experiments";\r
-    }\r
-\r
-    @Override\r
-    public Collection<?> getChildren(ReadGraph g) throws DatabaseException {\r
-       Layer0 b = Layer0.getInstance(g);\r
-        SimulationResource SIMU = SimulationResource.getInstance(g);\r
-        Collection<INode> ret = new ArrayList<INode>();\r
-        for (Resource r : g.getObjects(resource, b.ConsistsOf)) {\r
-            if (g.isInstanceOf(r, SIMU.Experiment)) {\r
-                INode node = g.adapt(r, INode.class);\r
-                if (node instanceof IPathNode)\r
-                    ((IPathNode) node).setPath(new ResourceArray(resource));\r
-                ret.add(node);\r
-            }\r
-        }\r
-        return ret;\r
-    }\r
-\r
-    @Override\r
-    public ImageDescriptor getImage(ReadGraph g) {\r
-        return Activator.EXPERIMENTS_ICON;\r
-    }\r
-\r
-    @SuppressWarnings("rawtypes")\r
-    @Override\r
-    public Object getAdapter(Class adapter) {\r
-        // deny adaptability, prevent showing of properties this way.\r
-        return null;\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.modelBrowser.model;
+
+import java.util.ArrayList;
+import java.util.Collection;
+
+import org.eclipse.jface.resource.ImageDescriptor;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.ResourceArray;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.layer0.Layer0;
+import org.simantics.modeling.ui.Activator;
+import org.simantics.simulation.ontology.SimulationResource;
+
+@Deprecated
+public class Experiments extends Node {
+
+    public Experiments(Resource resource) {
+        super(resource);
+    }
+
+    @Override
+    public Resource getResource() {
+        return resource;
+    }
+
+    @Override
+    public String getLabel(ReadGraph g) {
+        return "Experiments";
+    }
+
+    @Override
+    public Collection<?> getChildren(ReadGraph g) throws DatabaseException {
+       Layer0 b = Layer0.getInstance(g);
+        SimulationResource SIMU = SimulationResource.getInstance(g);
+        Collection<INode> ret = new ArrayList<INode>();
+        for (Resource r : g.getObjects(resource, b.ConsistsOf)) {
+            if (g.isInstanceOf(r, SIMU.Experiment)) {
+                INode node = g.adapt(r, INode.class);
+                if (node instanceof IPathNode)
+                    ((IPathNode) node).setPath(new ResourceArray(resource));
+                ret.add(node);
+            }
+        }
+        return ret;
+    }
+
+    @Override
+    public ImageDescriptor getImage(ReadGraph g) {
+        return Activator.EXPERIMENTS_ICON;
+    }
+
+    @SuppressWarnings("rawtypes")
+    @Override
+    public Object getAdapter(Class adapter) {
+        // deny adaptability, prevent showing of properties this way.
+        return null;
+    }
+
 }
\ No newline at end of file