]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/impl/MouseListenerImpl.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.swt / src / org / simantics / browsing / ui / swt / widgets / impl / MouseListenerImpl.java
index c1f5fc7a9ecff734c30006762ab5e251ec3cf617..42f21acc093a616b02e3602a037716e728cbb653 100644 (file)
@@ -1,86 +1,86 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2012 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.swt.widgets.impl;\r
-\r
-import org.eclipse.jface.viewers.ISelection;\r
-import org.eclipse.swt.events.MouseEvent;\r
-import org.eclipse.swt.events.MouseListener;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.common.request.WriteRequest;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.management.ISessionContext;\r
-import org.simantics.utils.ReflectionUtils;\r
-import org.simantics.utils.ui.ISelectionUtils;\r
-\r
-abstract public class MouseListenerImpl<T> implements MouseListener, Widget {\r
-\r
-       private ISessionContext context;\r
-       private Object lastInput = null;\r
-       protected T single;     \r
-    final private Class<?> clazz;\r
-       \r
-       public MouseListenerImpl(ISessionContext context) {\r
-               this.context = context;\r
-        clazz = ReflectionUtils.getSingleParameterType(getClass());\r
-       }\r
-       \r
-       @Override\r
-       public void mouseDown(MouseEvent e) {\r
-       }\r
-       \r
-       @Override\r
-       public void mouseUp(MouseEvent e) {\r
-       }\r
-       \r
-       @Override\r
-       public void mouseDoubleClick(MouseEvent e) {\r
-               \r
-               final Object input = lastInput;\r
-               \r
-               \r
-               try {\r
-\r
-                       single = (T) ISelectionUtils.filterSingleSelection((ISelection)input, clazz);\r
-                       \r
-                       beforeApply(single);\r
-                       \r
-                       context.getSession().syncRequest(new WriteRequest() {\r
-\r
-                               @SuppressWarnings("unchecked")\r
-                @Override\r
-                               public void perform(WriteGraph graph) throws DatabaseException {\r
-\r
-//                                     T single = (T) ISelectionUtils.filterSingleSelection((ISelection)input, clazz);\r
-                                       doubleClick(graph, single);\r
-                                       \r
-                               }\r
-                               \r
-                       });\r
-               } catch (DatabaseException e1) {\r
-                       e1.printStackTrace();\r
-               }\r
-       }\r
-\r
-       @Override\r
-       public void setInput(ISessionContext context, Object parameter) {\r
-               this.context = context;\r
-               lastInput = parameter;\r
-       }\r
-       \r
-       public void beforeApply(T input) {\r
-               \r
-       }\r
-       \r
-       abstract public void doubleClick(WriteGraph graph, T input) throws DatabaseException;\r
-       \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2012 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.swt.widgets.impl;
+
+import org.eclipse.jface.viewers.ISelection;
+import org.eclipse.swt.events.MouseEvent;
+import org.eclipse.swt.events.MouseListener;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.common.request.WriteRequest;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.management.ISessionContext;
+import org.simantics.utils.ReflectionUtils;
+import org.simantics.utils.ui.ISelectionUtils;
+
+abstract public class MouseListenerImpl<T> implements MouseListener, Widget {
+
+       private ISessionContext context;
+       private Object lastInput = null;
+       protected T single;     
+    final private Class<?> clazz;
+       
+       public MouseListenerImpl(ISessionContext context) {
+               this.context = context;
+        clazz = ReflectionUtils.getSingleParameterType(getClass());
+       }
+       
+       @Override
+       public void mouseDown(MouseEvent e) {
+       }
+       
+       @Override
+       public void mouseUp(MouseEvent e) {
+       }
+       
+       @Override
+       public void mouseDoubleClick(MouseEvent e) {
+               
+               final Object input = lastInput;
+               
+               
+               try {
+
+                       single = (T) ISelectionUtils.filterSingleSelection((ISelection)input, clazz);
+                       
+                       beforeApply(single);
+                       
+                       context.getSession().syncRequest(new WriteRequest() {
+
+                               @SuppressWarnings("unchecked")
+                @Override
+                               public void perform(WriteGraph graph) throws DatabaseException {
+
+//                                     T single = (T) ISelectionUtils.filterSingleSelection((ISelection)input, clazz);
+                                       doubleClick(graph, single);
+                                       
+                               }
+                               
+                       });
+               } catch (DatabaseException e1) {
+                       e1.printStackTrace();
+               }
+       }
+
+       @Override
+       public void setInput(ISessionContext context, Object parameter) {
+               this.context = context;
+               lastInput = parameter;
+       }
+       
+       public void beforeApply(T input) {
+               
+       }
+       
+       abstract public void doubleClick(WriteGraph graph, T input) throws DatabaseException;
+       
+}
        
\ No newline at end of file
        
\ No newline at end of file