]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.structural.ui/src/org/simantics/structural/ui/modelBrowser/contributions/LibraryViewpointContributor.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural.ui / src / org / simantics / structural / ui / modelBrowser / contributions / LibraryViewpointContributor.java
index 20c92daaf578f4f4742481e1a3a57a1c7844c3bc..af3386833fd93e6240f9dd889d6365c66d0f779f 100644 (file)
@@ -1,55 +1,55 @@
-/*******************************************************************************\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.structural.ui.modelBrowser.contributions;\r
-\r
-import java.util.ArrayList;\r
-import java.util.Collection;\r
-\r
-import org.simantics.browsing.ui.graph.contributor.viewpoint.ViewpointContributor;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.request.Read;\r
-import org.simantics.structural.ui.modelBrowser.nodes.AbstractNode;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- *\r
- * @param <T> input library node type\r
- */\r
-public abstract class LibraryViewpointContributor<T extends AbstractNode> extends ViewpointContributor<T> {\r
-\r
-    protected abstract Read<Collection<Resource>> getChildRequest(ReadGraph graph, T lib) throws DatabaseException;\r
-\r
-    @Override\r
-    public final Collection<?> getContribution(ReadGraph graph, T lib) throws DatabaseException {\r
-        ArrayList<AbstractNode> result = new ArrayList<AbstractNode>();\r
-        Read<Collection<Resource>> read = getChildRequest(graph, lib);\r
-        if (read != null) {\r
-            for (Resource r : graph.syncRequest(read)) {\r
-                try {\r
-                    AbstractNode n = graph.adapt(r, AbstractNode.class);\r
-                    result.add(n);\r
-                } catch (DatabaseException e) {\r
-                    e.printStackTrace();\r
-                }\r
-            }\r
-        }\r
-        return result;\r
-    }\r
-\r
-    @Override\r
-    public String getViewpointId() {\r
-        return "Standard";\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.structural.ui.modelBrowser.contributions;
+
+import java.util.ArrayList;
+import java.util.Collection;
+
+import org.simantics.browsing.ui.graph.contributor.viewpoint.ViewpointContributor;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.request.Read;
+import org.simantics.structural.ui.modelBrowser.nodes.AbstractNode;
+
+/**
+ * @author Tuukka Lehtonen
+ *
+ * @param <T> input library node type
+ */
+public abstract class LibraryViewpointContributor<T extends AbstractNode> extends ViewpointContributor<T> {
+
+    protected abstract Read<Collection<Resource>> getChildRequest(ReadGraph graph, T lib) throws DatabaseException;
+
+    @Override
+    public final Collection<?> getContribution(ReadGraph graph, T lib) throws DatabaseException {
+        ArrayList<AbstractNode> result = new ArrayList<AbstractNode>();
+        Read<Collection<Resource>> read = getChildRequest(graph, lib);
+        if (read != null) {
+            for (Resource r : graph.syncRequest(read)) {
+                try {
+                    AbstractNode n = graph.adapt(r, AbstractNode.class);
+                    result.add(n);
+                } catch (DatabaseException e) {
+                    e.printStackTrace();
+                }
+            }
+        }
+        return result;
+    }
+
+    @Override
+    public String getViewpointId() {
+        return "Standard";
+    }
+
+}