]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.workbench/src/org/simantics/workbench/internal/contributions/GraphRequestStatusContribution.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.workbench / src / org / simantics / workbench / internal / contributions / GraphRequestStatusContribution.java
index 2652062f24362f4a2f55f2df59551bf722031935..1d1279a062fde2a845dcbb7cc5a7531dc4ece33e 100644 (file)
@@ -1,70 +1,70 @@
-/*******************************************************************************\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.workbench.internal.contributions;\r
-\r
-import org.eclipse.swt.widgets.Composite;\r
-import org.eclipse.swt.widgets.Control;\r
-import org.eclipse.ui.IWorkbenchWindow;\r
-import org.eclipse.ui.menus.WorkbenchWindowControlContribution;\r
-import org.simantics.db.management.ISessionContext;\r
-import org.simantics.db.management.ISessionContextChangedListener;\r
-import org.simantics.db.management.ISessionContextProvider;\r
-import org.simantics.db.management.SessionContextChangedEvent;\r
-import org.simantics.ui.SimanticsUI;\r
-import org.simantics.workbench.internal.Activator;\r
-\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class GraphRequestStatusContribution extends WorkbenchWindowControlContribution implements ISessionContextChangedListener {\r
-\r
-    GraphRequestStatusTrim  trim;\r
-    ISessionContextProvider contextProvider;\r
-\r
-    @Override\r
-    public String getId() {\r
-        return "org.simantics.workbench.db.monitor";\r
-    }\r
-\r
-    @Override\r
-    protected Control createControl(Composite parent) {\r
-        IWorkbenchWindow window = getWorkbenchWindow();\r
-        contextProvider = SimanticsUI.getSessionContextProvider(window);\r
-        contextProvider.addContextChangedListener(this);\r
-\r
-        trim = new GraphRequestStatusTrim(parent, Activator.getDefault().getPreferenceStore());\r
-        ISessionContext ctx = SimanticsUI.getSessionContext();\r
-        if (ctx != null) {\r
-            trim.attachToSession(ctx.getSession());\r
-        }\r
-        return trim;\r
-    }\r
-\r
-    @Override\r
-    public void dispose() {\r
-        contextProvider.removeContextChangedListener(this);\r
-        trim = null;\r
-        super.dispose();\r
-    }\r
-\r
-    @Override\r
-    public void sessionContextChanged(SessionContextChangedEvent event) {\r
-//        System.out.println("session changed for '" + event.getHandle() + "' from '" + event.getOldValue() + "' to '" + event.getNewValue() + "'");\r
-        GraphRequestStatusTrim trim = this.trim;\r
-        if (trim != null) {\r
-            ISessionContext ctx = event.getNewValue();\r
-            trim.attachToSession((ctx != null) ? ctx.getSession() : null);\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.workbench.internal.contributions;
+
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.ui.IWorkbenchWindow;
+import org.eclipse.ui.menus.WorkbenchWindowControlContribution;
+import org.simantics.db.management.ISessionContext;
+import org.simantics.db.management.ISessionContextChangedListener;
+import org.simantics.db.management.ISessionContextProvider;
+import org.simantics.db.management.SessionContextChangedEvent;
+import org.simantics.ui.SimanticsUI;
+import org.simantics.workbench.internal.Activator;
+
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class GraphRequestStatusContribution extends WorkbenchWindowControlContribution implements ISessionContextChangedListener {
+
+    GraphRequestStatusTrim  trim;
+    ISessionContextProvider contextProvider;
+
+    @Override
+    public String getId() {
+        return "org.simantics.workbench.db.monitor";
+    }
+
+    @Override
+    protected Control createControl(Composite parent) {
+        IWorkbenchWindow window = getWorkbenchWindow();
+        contextProvider = SimanticsUI.getSessionContextProvider(window);
+        contextProvider.addContextChangedListener(this);
+
+        trim = new GraphRequestStatusTrim(parent, Activator.getDefault().getPreferenceStore());
+        ISessionContext ctx = SimanticsUI.getSessionContext();
+        if (ctx != null) {
+            trim.attachToSession(ctx.getSession());
+        }
+        return trim;
+    }
+
+    @Override
+    public void dispose() {
+        contextProvider.removeContextChangedListener(this);
+        trim = null;
+        super.dispose();
+    }
+
+    @Override
+    public void sessionContextChanged(SessionContextChangedEvent event) {
+//        System.out.println("session changed for '" + event.getHandle() + "' from '" + event.getOldValue() + "' to '" + event.getNewValue() + "'");
+        GraphRequestStatusTrim trim = this.trim;
+        if (trim != null) {
+            ISessionContext ctx = event.getNewValue();
+            trim.attachToSession((ctx != null) ? ctx.getSession() : null);
+        }
+    }
+
+}