Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiraj Modi2019-08-28 12:05:34 +0000
committerNiraj Modi2019-08-28 12:05:34 +0000
commita2d689a148ccd1a45e808eb8f89a54068666276e (patch)
tree63a614cc95f5c3c66b2386087d51e47c2146d3f8
parentc64a6883b55de79e4ee64e8d4f8e0e19f3d27d4f (diff)
downloadeclipse.platform.swt-a2d689a148ccd1a45e808eb8f89a54068666276e.tar.gz
eclipse.platform.swt-a2d689a148ccd1a45e808eb8f89a54068666276e.tar.xz
eclipse.platform.swt-a2d689a148ccd1a45e808eb8f89a54068666276e.zip
Bug 550499 - Do the Javadoc bash for 4.13
Change-Id: I133912f5931b333598f69b0718ba95f9bb863a39 Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/FileTransfer.java4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/ImageTransfer.java4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/FileTransfer.java4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/ImageTransfer.java4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/ImageLoader.java4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/ImageLoader.java2
6 files changed, 9 insertions, 13 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/FileTransfer.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/FileTransfer.java
index bdf0b8e1fa..bbb3596892 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/FileTransfer.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/FileTransfer.java
@@ -27,8 +27,8 @@ import org.eclipse.swt.internal.cocoa.*;
* below:</p>
*
* <pre><code>
- * File file1 = new File("C:\temp\file1");
- * File file2 = new File("C:\temp\file2");
+ * File file1 = new File("C:\\temp\\file1");
+ * File file2 = new File("C:\\temp\\file2");
* String[] fileData = new String[2];
* fileData[0] = file1.getAbsolutePath();
* fileData[1] = file2.getAbsolutePath();
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/ImageTransfer.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/ImageTransfer.java
index 4aa015162b..1ca1a20cce 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/ImageTransfer.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/ImageTransfer.java
@@ -27,8 +27,8 @@ import org.eclipse.swt.widgets.*;
* <p>An example of a java <code>ImageData</code> is shown below:</p>
*
* <pre><code>
- * Image image = new Image(display, "C:\temp\img1.gif");
- * ImageData imgData = image.getImageData();
+ * Image image = new Image(display, "C:\\temp\\img1.gif");
+ * ImageData imgData = image.getImageData();
* </code></pre>
*
* @see Transfer
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/FileTransfer.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/FileTransfer.java
index c95207eeef..a5682302ef 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/FileTransfer.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/FileTransfer.java
@@ -27,8 +27,8 @@ import org.eclipse.swt.internal.gtk.*;
* below:</p>
*
* <pre><code>
- * File file1 = new File("C:\temp\file1");
- * File file2 = new File("C:\temp\file2");
+ * File file1 = new File("C:\\temp\\file1");
+ * File file2 = new File("C:\\temp\\file2");
* String[] fileData = new String[2];
* fileData[0] = file1.getAbsolutePath();
* fileData[1] = file2.getAbsolutePath();
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/ImageTransfer.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/ImageTransfer.java
index f092e5d2fd..686d328ccf 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/ImageTransfer.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/ImageTransfer.java
@@ -27,8 +27,8 @@ import org.eclipse.swt.widgets.*;
* <p>An example of a java <code>ImageData</code> is shown below:</p>
*
* <pre><code>
- * Image image = new Image(display, "C:\temp\img1.gif");
- * ImageData imgData = image.getImageData();
+ * Image image = new Image(display, "C:\\temp\\img1.gif");
+ * ImageData imgData = image.getImageData();
* </code></pre>
*
* @see Transfer
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/ImageLoader.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/ImageLoader.java
index 248ccf1afd..df04ea1642 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/ImageLoader.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/ImageLoader.java
@@ -439,8 +439,6 @@ static long gdk_pixbuf_new_from_file(String filename) {
* <dd>JPEG file format</dd>
* <dt><code>IMAGE_PNG</code></dt>
* <dd>PNG file format</dd>
- * <dt><code>IMAGE_TIFF</code></dt>
- * <dd>TIFF file format</dd>
* </dl>
*
* @param stream the output stream to write the images to
@@ -587,8 +585,6 @@ public void save(OutputStream stream, int format) {
* <dd>JPEG file format</dd>
* <dt><code>IMAGE_PNG</code></dt>
* <dd>PNG file format</dd>
- * <dt><code>IMAGE_TIFF</code></dt>
- * <dd>TIFF file format</dd>
* </dl>
*
* @param filename the name of the file to write the images to
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/ImageLoader.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/ImageLoader.java
index 636ba6d032..bbe5ac8d51 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/ImageLoader.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/ImageLoader.java
@@ -43,7 +43,7 @@ import org.eclipse.swt.internal.image.*;
* </ul>
*
* <p>
- * NOTE: <code>ImageLoader</code> is implemented in Java on some platforms, which has
+ * NOTE: <code>ImageLoader</code> is implemented in Java on some platforms, which has
* certain performance implications. Performance and memory sensitive applications may
* benefit from using one of the constructors provided by <code>Image</code>, as these
* are implemented natively.</p>

Back to the top