]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/internal/IGraphExplorerContext.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / internal / IGraphExplorerContext.java
index 13888d00321cf502071547cfa4cb9149ee534447..b832f6c66e1e021fa2c7f02b00c835b7639a9a65 100644 (file)
@@ -1,64 +1,64 @@
-/*******************************************************************************\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.common.internal;\r
-\r
-import java.util.Deque;\r
-import java.util.List;\r
-\r
-import org.simantics.browsing.ui.DataSource;\r
-import org.simantics.browsing.ui.GraphExplorer;\r
-import org.simantics.browsing.ui.NodeQueryProcessor;\r
-import org.simantics.browsing.ui.PrimitiveQueryProcessor;\r
-import org.simantics.utils.datastructures.disposable.IDisposable;\r
-\r
-/**\r
- * An internal interface for supporting the implementation of\r
- * {@link GraphExplorer}. Contains methods for the interaction of GraphExplorer\r
- * and {@link GENodeQueryManager}, and {@link UpdateRunner}.\r
- * \r
- * <p>\r
- * The main purpose of this context class is to support switching of explorer\r
- * inputs in a proper way which disposes all the {@link GENodeQueryManager}'s\r
- * and any resource queries possibly hidden behind them.\r
- * </p>\r
- * \r
- * @author Tuukka Lehtonen\r
- */\r
-public interface IGraphExplorerContext extends IDisposable {\r
-\r
-    int queryIndent();\r
-    int queryIndent(int offset);\r
-\r
-    IGECache getCache();\r
-\r
-    <T> NodeQueryProcessor<T> getProcessor(Object o);\r
-    <T> PrimitiveQueryProcessor<T> getPrimitiveProcessor(Object o);\r
-    <T> DataSource<T> getDataSource(Class<T> clazz);\r
-\r
-    void update(UIElementReference ref);\r
-\r
-    Object getPropagateLock();\r
-    Object getPropagateListLock();\r
-\r
-    void setPropagating(boolean b);\r
-    boolean isPropagating();\r
-\r
-    void setScheduleList(List<Runnable> list);\r
-    List<Runnable> getScheduleList();\r
-\r
-    Deque<Integer> getActivity();\r
-    void setActivityInt(int i);\r
-    int getActivityInt();\r
-\r
-    void scheduleQueryUpdate(Runnable 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.common.internal;
+
+import java.util.Deque;
+import java.util.List;
+
+import org.simantics.browsing.ui.DataSource;
+import org.simantics.browsing.ui.GraphExplorer;
+import org.simantics.browsing.ui.NodeQueryProcessor;
+import org.simantics.browsing.ui.PrimitiveQueryProcessor;
+import org.simantics.utils.datastructures.disposable.IDisposable;
+
+/**
+ * An internal interface for supporting the implementation of
+ * {@link GraphExplorer}. Contains methods for the interaction of GraphExplorer
+ * and {@link GENodeQueryManager}, and {@link UpdateRunner}.
+ * 
+ * <p>
+ * The main purpose of this context class is to support switching of explorer
+ * inputs in a proper way which disposes all the {@link GENodeQueryManager}'s
+ * and any resource queries possibly hidden behind them.
+ * </p>
+ * 
+ * @author Tuukka Lehtonen
+ */
+public interface IGraphExplorerContext extends IDisposable {
+
+    int queryIndent();
+    int queryIndent(int offset);
+
+    IGECache getCache();
+
+    <T> NodeQueryProcessor<T> getProcessor(Object o);
+    <T> PrimitiveQueryProcessor<T> getPrimitiveProcessor(Object o);
+    <T> DataSource<T> getDataSource(Class<T> clazz);
+
+    void update(UIElementReference ref);
+
+    Object getPropagateLock();
+    Object getPropagateListLock();
+
+    void setPropagating(boolean b);
+    boolean isPropagating();
+
+    void setScheduleList(List<Runnable> list);
+    List<Runnable> getScheduleList();
+
+    Deque<Integer> getActivity();
+    void setActivityInt(int i);
+    int getActivityInt();
+
+    void scheduleQueryUpdate(Runnable r);
+
+}