]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.issues.common/src/org/simantics/issues/common/InfoIssues.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.issues.common / src / org / simantics / issues / common / InfoIssues.java
index 971b3fe6aa3c6deee6c31b9c2c6de236dc425b4a..a036bb89e9c4f81da479687568026c206867b0bc 100644 (file)
@@ -1,44 +1,44 @@
-/*******************************************************************************\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.issues.common;\r
-\r
-import gnu.trove.set.hash.THashSet;\r
-\r
-import java.util.Set;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.request.BinaryRead;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.variable.Variable;\r
-\r
-public class InfoIssues extends BinaryRead<Resource, Boolean, Set<Variable>> {\r
-\r
-    public InfoIssues(Resource resource) {\r
-        super(resource, Boolean.FALSE);\r
-    }\r
-\r
-    public InfoIssues(Resource resource, boolean onlyUnresolved) {\r
-        super(resource, onlyUnresolved);\r
-    }\r
-\r
-    @Override\r
-    public Set<Variable> perform(ReadGraph graph) throws DatabaseException {\r
-        Set<Variable> result = new THashSet<Variable>();\r
-        for (Variable issue : graph.syncRequest(new AllVisibleIssues(parameter, parameter2))) {\r
-            if ("Info".equals(issue.getPossiblePropertyValue(graph, "severity")))\r
-                result.add(issue);\r
-        }\r
-        return result;\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.issues.common;
+
+import gnu.trove.set.hash.THashSet;
+
+import java.util.Set;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.request.BinaryRead;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.variable.Variable;
+
+public class InfoIssues extends BinaryRead<Resource, Boolean, Set<Variable>> {
+
+    public InfoIssues(Resource resource) {
+        super(resource, Boolean.FALSE);
+    }
+
+    public InfoIssues(Resource resource, boolean onlyUnresolved) {
+        super(resource, onlyUnresolved);
+    }
+
+    @Override
+    public Set<Variable> perform(ReadGraph graph) throws DatabaseException {
+        Set<Variable> result = new THashSet<Variable>();
+        for (Variable issue : graph.syncRequest(new AllVisibleIssues(parameter, parameter2))) {
+            if ("Info".equals(issue.getPossiblePropertyValue(graph, "severity")))
+                result.add(issue);
+        }
+        return result;
+    }
+
+}