]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.layer0.utils/src/org/simantics/layer0/utils/collections/TypeBasedList.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.layer0.utils / src / org / simantics / layer0 / utils / collections / TypeBasedList.java
index 548b0224006a2ce709910fa230dc4f918c07213d..3d4ce009e35034b209ebb2bef148127122360b1b 100644 (file)
@@ -1,39 +1,39 @@
-/*******************************************************************************\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.layer0.utils.collections;\r
-\r
-import java.util.Collection;\r
-\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.layer0.utils.operations.IOperation;\r
-import org.simantics.utils.datastructures.persistent.IContextMap;\r
-\r
-public class TypeBasedList implements IContextualList {\r
-\r
-       Resource relation;\r
-       \r
-       public TypeBasedList(Resource relation) {\r
-               this.relation = relation;\r
-       }\r
-\r
-       @Override\r
-       public void fill(ReadGraph g, IContextMap parameters, Collection<Resource> c) throws DatabaseException {\r
-               for(Resource type : g.getTypes((Resource)parameters.get(IOperation.SUBJECT))) {\r
-                   for(Resource object : g.getObjects(type, relation)) {\r
-                   ContextualListUtils.fill(g, object, parameters, c);\r
-                   }\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.layer0.utils.collections;
+
+import java.util.Collection;
+
+import org.simantics.db.Resource;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.layer0.utils.operations.IOperation;
+import org.simantics.utils.datastructures.persistent.IContextMap;
+
+public class TypeBasedList implements IContextualList {
+
+       Resource relation;
+       
+       public TypeBasedList(Resource relation) {
+               this.relation = relation;
+       }
+
+       @Override
+       public void fill(ReadGraph g, IContextMap parameters, Collection<Resource> c) throws DatabaseException {
+               for(Resource type : g.getTypes((Resource)parameters.get(IOperation.SUBJECT))) {
+                   for(Resource object : g.getObjects(type, relation)) {
+                   ContextualListUtils.fill(g, object, parameters, c);
+                   }
+               }
+       }
+
+}