]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.diagram.profile/src/org/simantics/diagram/profile/view/DirectProfileEntries.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.diagram.profile / src / org / simantics / diagram / profile / view / DirectProfileEntries.java
index fafabcbe3f2bfe9f16e6d8a7f6ab4df9b2625f86..3da411b0cec5be1fb89b9e2d8598e8a157139031 100644 (file)
@@ -1,42 +1,42 @@
-/*******************************************************************************\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.diagram.profile.view;\r
-\r
-import java.util.ArrayList;\r
-import java.util.List;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.request.UnaryRead;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.diagram.stubs.DiagramResource;\r
-import org.simantics.scenegraph.profile.ProfileUtils;\r
-\r
-public class DirectProfileEntries extends UnaryRead<ResourcePair, List<ResourcePair>> {\r
-\r
-       public DirectProfileEntries(ResourcePair resource) {\r
-               super(resource);\r
-       }\r
-\r
-       @Override\r
-       public List<ResourcePair> perform(ReadGraph graph) throws DatabaseException {\r
-               DiagramResource dr = DiagramResource.getInstance(graph);\r
-               ArrayList<ResourcePair> entries = new ArrayList<ResourcePair>();\r
-               Resource list = graph.getPossibleObject(parameter.getSecond(), dr.HasEntries);\r
-               if(list == null) return entries;\r
-               for(Resource entry : ProfileUtils.getProfileChildrenFromEntries(graph, list)) {\r
-                       entries.add(new ResourcePair(parameter.getFirst(), entry));\r
-               }\r
-               return entries;\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.diagram.profile.view;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.request.UnaryRead;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.diagram.stubs.DiagramResource;
+import org.simantics.scenegraph.profile.ProfileUtils;
+
+public class DirectProfileEntries extends UnaryRead<ResourcePair, List<ResourcePair>> {
+
+       public DirectProfileEntries(ResourcePair resource) {
+               super(resource);
+       }
+
+       @Override
+       public List<ResourcePair> perform(ReadGraph graph) throws DatabaseException {
+               DiagramResource dr = DiagramResource.getInstance(graph);
+               ArrayList<ResourcePair> entries = new ArrayList<ResourcePair>();
+               Resource list = graph.getPossibleObject(parameter.getSecond(), dr.HasEntries);
+               if(list == null) return entries;
+               for(Resource entry : ProfileUtils.getProfileChildrenFromEntries(graph, list)) {
+                       entries.add(new ResourcePair(parameter.getFirst(), entry));
+               }
+               return entries;
+       }
+
+}