]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/contribution/ViewpointContributionImpl.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.graph.impl / src / org / simantics / browsing / ui / graph / impl / contribution / ViewpointContributionImpl.java
index bf59ade74705a7cd805ef9f04c24137d3a4e5b86..3581440f0bf9e59ce1d7397901d6cc320a9cb8e4 100644 (file)
@@ -1,65 +1,65 @@
-/*******************************************************************************\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.impl.contribution;\r
-\r
-import java.util.Collection;\r
-\r
-import org.simantics.browsing.ui.NodeContext;\r
-import org.simantics.browsing.ui.PrimitiveQueryUpdater;\r
-import org.simantics.browsing.ui.BuiltinKeys.ViewpointContributionKey;\r
-import org.simantics.db.AsyncReadGraph;\r
-import org.simantics.db.procedure.Listener;\r
-import org.simantics.db.procedure.Procedure;\r
-import org.simantics.utils.ui.ErrorLogger;\r
-\r
-/**\r
- * Implement {@link #children(AsyncReadGraph)} and {@link #hasChildren(AsyncReadGraph)}.\r
- * \r
- * @author Tuukka Lehtonen\r
- */\r
-abstract public class ViewpointContributionImpl extends FinalViewpointContributionImpl {\r
-\r
-    public ViewpointContributionImpl(PrimitiveQueryUpdater updater,\r
-            NodeContext context, ViewpointContributionKey key) {\r
-        super(updater, context, key);\r
-    }\r
-\r
-    @Override\r
-    protected Procedure<Collection<NodeContext>> createProcedure() {\r
-\r
-        return new Listener<Collection<NodeContext>>() {\r
-\r
-            @Override\r
-            public void execute(Collection<NodeContext> result) {\r
-                replaceChildrenResult(result);\r
-            }\r
-\r
-            @Override\r
-            public boolean isDisposed() {\r
-                return updater.isDisposed();\r
-            }\r
-\r
-            public void exception(Throwable t) {\r
-                ErrorLogger.defaultLogError("LazyContributionImpl.childQuery failed, see exception for details.", t);\r
-            }\r
-\r
-            @Override\r
-            public String toString() {\r
-                return "LazyContributionImpl[" + System.identityHashCode(ViewpointContributionImpl.this) + "].childProcedure";\r
-            }\r
-\r
-        };\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.browsing.ui.graph.impl.contribution;
+
+import java.util.Collection;
+
+import org.simantics.browsing.ui.NodeContext;
+import org.simantics.browsing.ui.PrimitiveQueryUpdater;
+import org.simantics.browsing.ui.BuiltinKeys.ViewpointContributionKey;
+import org.simantics.db.AsyncReadGraph;
+import org.simantics.db.procedure.Listener;
+import org.simantics.db.procedure.Procedure;
+import org.simantics.utils.ui.ErrorLogger;
+
+/**
+ * Implement {@link #children(AsyncReadGraph)} and {@link #hasChildren(AsyncReadGraph)}.
+ * 
+ * @author Tuukka Lehtonen
+ */
+abstract public class ViewpointContributionImpl extends FinalViewpointContributionImpl {
+
+    public ViewpointContributionImpl(PrimitiveQueryUpdater updater,
+            NodeContext context, ViewpointContributionKey key) {
+        super(updater, context, key);
+    }
+
+    @Override
+    protected Procedure<Collection<NodeContext>> createProcedure() {
+
+        return new Listener<Collection<NodeContext>>() {
+
+            @Override
+            public void execute(Collection<NodeContext> result) {
+                replaceChildrenResult(result);
+            }
+
+            @Override
+            public boolean isDisposed() {
+                return updater.isDisposed();
+            }
+
+            public void exception(Throwable t) {
+                ErrorLogger.defaultLogError("LazyContributionImpl.childQuery failed, see exception for details.", t);
+            }
+
+            @Override
+            public String toString() {
+                return "LazyContributionImpl[" + System.identityHashCode(ViewpointContributionImpl.this) + "].childProcedure";
+            }
+
+        };
+
+    }
+
+
+}