]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.ui/src/org/simantics/ui/dnd/NoImageDragSourceEffect.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / dnd / NoImageDragSourceEffect.java
index d402ef99297e6be49d1b6800e2861bbe2e4f6e17..650e8053d6e248d46bda36b5bd86da9c52df91fe 100644 (file)
@@ -1,36 +1,36 @@
-/*******************************************************************************\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.ui.dnd;\r
-\r
-import org.eclipse.swt.dnd.DragSourceEffect;\r
-import org.eclipse.swt.dnd.DragSourceEvent;\r
-import org.eclipse.swt.widgets.Control;\r
-\r
-/**\r
- * An SWT {@link DragSourceEffect} implementation that prevents SWT DnD\r
- * operations from showing screenshots of the dragged data. Useful when SWT is\r
- * used with AWT which tends to cause unwanted visual effects during drags.\r
- * \r
- * @author Tuukka Lehtonen\r
- */\r
-public class NoImageDragSourceEffect extends DragSourceEffect {\r
-\r
-    public NoImageDragSourceEffect(Control control) {\r
-        super(control);\r
-    }\r
-\r
-    @Override\r
-    public void dragStart(DragSourceEvent event) {\r
-        event.image = null;\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.ui.dnd;
+
+import org.eclipse.swt.dnd.DragSourceEffect;
+import org.eclipse.swt.dnd.DragSourceEvent;
+import org.eclipse.swt.widgets.Control;
+
+/**
+ * An SWT {@link DragSourceEffect} implementation that prevents SWT DnD
+ * operations from showing screenshots of the dragged data. Useful when SWT is
+ * used with AWT which tends to cause unwanted visual effects during drags.
+ * 
+ * @author Tuukka Lehtonen
+ */
+public class NoImageDragSourceEffect extends DragSourceEffect {
+
+    public NoImageDragSourceEffect(Control control) {
+        super(control);
+    }
+
+    @Override
+    public void dragStart(DragSourceEvent event) {
+        event.image = null;
+    }
+
+}