Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Pazderski2019-05-18 17:05:03 +0000
committerPaul Pazderski2019-06-14 22:34:53 +0000
commit7051049221c9d3b99ff179f167fa09a6e02138ee (patch)
tree21704e08b4c470f16f4fece637154f86fce96cc8 /bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common
parenta1b9b9e1accf9dfece07675d7919a6f4e6561891 (diff)
downloadeclipse.platform.swt-7051049221c9d3b99ff179f167fa09a6e02138ee.tar.gz
eclipse.platform.swt-7051049221c9d3b99ff179f167fa09a6e02138ee.tar.xz
eclipse.platform.swt-7051049221c9d3b99ff179f167fa09a6e02138ee.zip
Bug 547304 - [cleanup] Fix wrong space/tab indentation
This change fixes space or mixed tab/space indentations in all Java files. This also includes two or three space indentations and even fix most stray single spaces in indentations. The change includes only whitespace formatting and no code changes. Change-Id: Ib7b260691acee06845cc580dd8cb859de0da8bf1
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java50
1 files changed, 25 insertions, 25 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java
index fc328e1df0..3b287c5b09 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java
@@ -31,25 +31,25 @@ public class DragSourceEvent extends TypedEvent {
* @see DND#DROP_LINK
* @see DND#DROP_TARGET_MOVE
*/
- public int detail;
+ public int detail;
- /**
- * In dragStart, the doit field determines if the drag and drop operation
- * should proceed; in dragFinished, the doit field indicates whether
- * the operation was performed successfully.
- * <p>
- * In dragStart:</p>
- * <p>Flag to determine if the drag and drop operation should proceed.
- * The application can set this value to false to prevent the drag from starting.
- * Set to true by default.</p>
- * <p>In dragSetData:</p>
- * <p>This will be set to true when the call to dragSetData is made. Set it to
- * false to cancel the drag.</p>
- * <p>In dragFinished:</p>
- * <p>Flag to indicate if the operation was performed successfully.
- * True if the operation was performed successfully.</p>
- */
- public boolean doit;
+ /**
+ * In dragStart, the doit field determines if the drag and drop operation
+ * should proceed; in dragFinished, the doit field indicates whether
+ * the operation was performed successfully.
+ * <p>
+ * In dragStart:</p>
+ * <p>Flag to determine if the drag and drop operation should proceed.
+ * The application can set this value to false to prevent the drag from starting.
+ * Set to true by default.</p>
+ * <p>In dragSetData:</p>
+ * <p>This will be set to true when the call to dragSetData is made. Set it to
+ * false to cancel the drag.</p>
+ * <p>In dragFinished:</p>
+ * <p>Flag to indicate if the operation was performed successfully.
+ * True if the operation was performed successfully.</p>
+ */
+ public boolean doit;
/**
* In dragStart, the x coordinate (relative to the control) of the
@@ -57,19 +57,19 @@ public class DragSourceEvent extends TypedEvent {
*
* @since 3.2
*/
- public int x;
- /**
+ public int x;
+ /**
* In dragStart, the y coordinate (relative to the control) of the
* position the mouse went down to start the drag.
*
* @since 3.2
*/
- public int y;
+ public int y;
- /**
+ /**
* The type of data requested.
* Data provided in the data field must be of the same type.
- */
+ */
public TransferData dataType;
/**
@@ -86,13 +86,13 @@ public class DragSourceEvent extends TypedEvent {
*
* @since 3.5
*/
- public int offsetX;
+ public int offsetX;
/**
* In dragStart, the y offset (relative to the image) where the drag source image will be displayed.
*
* @since 3.5
*/
- public int offsetY;
+ public int offsetY;
static final long serialVersionUID = 3257002142513770808L;

Back to the top