]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.graph/src/org/simantics/browsing/ui/graph/contributor/viewpoint/ViewpointFactory.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.graph / src / org / simantics / browsing / ui / graph / contributor / viewpoint / ViewpointFactory.java
index c2c1487ae4a81cc8332b2289f4aa6fe51fef18ba..a114cd4f42cd2325a23cfe5b2e7675f98f451688 100644 (file)
@@ -1,68 +1,68 @@
-/*******************************************************************************\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.browsing.ui.graph.contributor.viewpoint;\r
-\r
-import java.util.Collection;\r
-\r
-import org.simantics.browsing.ui.BuiltinKeys;\r
-import org.simantics.browsing.ui.NodeContext;\r
-import org.simantics.browsing.ui.PrimitiveQueryUpdater;\r
-import org.simantics.browsing.ui.BuiltinKeys.ViewpointKey;\r
-import org.simantics.browsing.ui.content.Viewpoint;\r
-import org.simantics.browsing.ui.graph.impl.LazyViewpoint;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-\r
-/**\r
- * Extend and implement {@link #getChildren(ReadGraph, NodeContext)} to create a\r
- * viewpoint factory that reads from the graph database.\r
- * \r
- * @author Antti Villberg\r
- */\r
-public abstract class ViewpointFactory<T> implements org.simantics.browsing.ui.content.ViewpointFactory {\r
-\r
-    @Override\r
-    public Viewpoint create(PrimitiveQueryUpdater updater, NodeContext context, ViewpointKey key) {\r
-\r
-        return new LazyViewpoint(updater, context, key) {\r
-            @SuppressWarnings("unchecked")\r
-            @Override\r
-            public NodeContext[] children(ReadGraph graph) throws DatabaseException {\r
-\r
-                T input = (T) context.getConstant(BuiltinKeys.INPUT);\r
-\r
-                return toContextsWithInput(ViewpointFactory.this.\r
-                        children(graph, input));\r
-\r
-            }\r
-\r
-            @Override\r
-            public Boolean hasChildren(ReadGraph graph) throws DatabaseException {\r
-                return children(graph).length > 0;\r
-            }\r
-\r
-            @Override\r
-            public String toString() {\r
-                return ViewpointFactory.this.toString();\r
-            }\r
-\r
-            @Override\r
-            public Object getIdentity() {\r
-                return ViewpointFactory.this.getClass();\r
-            }\r
-        };\r
-\r
-    }\r
-\r
-    abstract protected Collection<?> children(ReadGraph g, T input) throws DatabaseException;\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.browsing.ui.graph.contributor.viewpoint;
+
+import java.util.Collection;
+
+import org.simantics.browsing.ui.BuiltinKeys;
+import org.simantics.browsing.ui.NodeContext;
+import org.simantics.browsing.ui.PrimitiveQueryUpdater;
+import org.simantics.browsing.ui.BuiltinKeys.ViewpointKey;
+import org.simantics.browsing.ui.content.Viewpoint;
+import org.simantics.browsing.ui.graph.impl.LazyViewpoint;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.exception.DatabaseException;
+
+/**
+ * Extend and implement {@link #getChildren(ReadGraph, NodeContext)} to create a
+ * viewpoint factory that reads from the graph database.
+ * 
+ * @author Antti Villberg
+ */
+public abstract class ViewpointFactory<T> implements org.simantics.browsing.ui.content.ViewpointFactory {
+
+    @Override
+    public Viewpoint create(PrimitiveQueryUpdater updater, NodeContext context, ViewpointKey key) {
+
+        return new LazyViewpoint(updater, context, key) {
+            @SuppressWarnings("unchecked")
+            @Override
+            public NodeContext[] children(ReadGraph graph) throws DatabaseException {
+
+                T input = (T) context.getConstant(BuiltinKeys.INPUT);
+
+                return toContextsWithInput(ViewpointFactory.this.
+                        children(graph, input));
+
+            }
+
+            @Override
+            public Boolean hasChildren(ReadGraph graph) throws DatabaseException {
+                return children(graph).length > 0;
+            }
+
+            @Override
+            public String toString() {
+                return ViewpointFactory.this.toString();
+            }
+
+            @Override
+            public Object getIdentity() {
+                return ViewpointFactory.this.getClass();
+            }
+        };
+
+    }
+
+    abstract protected Collection<?> children(ReadGraph g, T input) throws DatabaseException;
+
+}