]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/request/PossibleActiveExperiment.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / request / PossibleActiveExperiment.java
index 6caca12c5fe20cb00572fdeb0674fe0d90f6fc4d..d9d668099f34ccf943d75c99d50e79124673b7f2 100644 (file)
@@ -1,54 +1,54 @@
-/*******************************************************************************\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.db.layer0.request;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.request.PossibleIndexRoot;\r
-import org.simantics.db.common.request.ResourceRead;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.layer0.Layer0;\r
-import org.simantics.simulation.ontology.SimulationResource;\r
-\r
-public class PossibleActiveExperiment extends ResourceRead<Resource> {\r
-\r
-    public PossibleActiveExperiment(Resource partOfModel) {\r
-        super(partOfModel);\r
-    }\r
-\r
-    @Override\r
-    public Resource perform(ReadGraph graph) throws DatabaseException {\r
-\r
-       Resource model = graph.sync(new PossibleIndexRoot(resource));\r
-       if(model == null) return null;\r
-       \r
-       Layer0 b = Layer0.getInstance(graph);\r
-        SimulationResource SIMU = SimulationResource.getInstance(graph);\r
-        Resource result = null;\r
-        for(Resource config : graph.getObjects(model, b.ConsistsOf)) {\r
-            if(graph.isInstanceOf(config, SIMU.Experiment)) {\r
-                for(Resource run : graph.getObjects(config, b.ConsistsOf)) {\r
-                    if(graph.isInstanceOf(run, SIMU.Run)) {\r
-                        if(graph.hasStatement(run, SIMU.IsActive)) {\r
-                            if(result != null) return null;\r
-                            result = run;\r
-                        }\r
-                    }\r
-                }\r
-            }\r
-        }\r
-\r
-        return result;\r
-\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.db.layer0.request;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.request.PossibleIndexRoot;
+import org.simantics.db.common.request.ResourceRead;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.layer0.Layer0;
+import org.simantics.simulation.ontology.SimulationResource;
+
+public class PossibleActiveExperiment extends ResourceRead<Resource> {
+
+    public PossibleActiveExperiment(Resource partOfModel) {
+        super(partOfModel);
+    }
+
+    @Override
+    public Resource perform(ReadGraph graph) throws DatabaseException {
+
+       Resource model = graph.sync(new PossibleIndexRoot(resource));
+       if(model == null) return null;
+       
+       Layer0 b = Layer0.getInstance(graph);
+        SimulationResource SIMU = SimulationResource.getInstance(graph);
+        Resource result = null;
+        for(Resource config : graph.getObjects(model, b.ConsistsOf)) {
+            if(graph.isInstanceOf(config, SIMU.Experiment)) {
+                for(Resource run : graph.getObjects(config, b.ConsistsOf)) {
+                    if(graph.isInstanceOf(run, SIMU.Run)) {
+                        if(graph.hasStatement(run, SIMU.IsActive)) {
+                            if(result != null) return null;
+                            result = run;
+                        }
+                    }
+                }
+            }
+        }
+
+        return result;
+
+    }
+
+}