Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2018-08-31 11:19:14 +0000
committerLakshmi Shanmugam2018-08-31 11:50:01 +0000
commitc65415f18384a4c4b53dfdcb0b73925bf431e6e5 (patch)
tree9619cc3a3442e6171e4d315de07365db4c600b29
parenta9fc6df1c9aab16aff65be6d0234d93ebebbe7de (diff)
downloadeclipse.platform.swt-c65415f18384a4c4b53dfdcb0b73925bf431e6e5.tar.gz
eclipse.platform.swt-c65415f18384a4c4b53dfdcb0b73925bf431e6e5.tar.xz
eclipse.platform.swt-c65415f18384a4c4b53dfdcb0b73925bf431e6e5.zip
Bug 538345 - Do the Javadoc bash for 4.9
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java3
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java12
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java6
3 files changed, 11 insertions, 10 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java
index 9a3203012c..54fdeaab02 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java
@@ -28,7 +28,7 @@ import org.eclipse.swt.internal.cocoa.*;
* </p>
* <dl>
* <dt><b>Styles:</b></dt>
- * <dd>DATE, TIME, CALENDAR, SHORT, MEDIUM, LONG, DROP_DOWN</dd>
+ * <dd>DATE, TIME, CALENDAR, SHORT, MEDIUM, LONG, DROP_DOWN, CALENDAR_WEEKNUMBERS</dd>
* <dt><b>Events:</b></dt>
* <dd>DefaultSelection, Selection</dd>
* </dl>
@@ -86,6 +86,7 @@ public class DateTime extends Composite {
* @see SWT#DATE
* @see SWT#TIME
* @see SWT#CALENDAR
+ * @see SWT#CALENDAR_WEEKNUMBERS
* @see SWT#SHORT
* @see SWT#MEDIUM
* @see SWT#LONG
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
index c61a49e486..eb3d6fe8ed 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
@@ -863,12 +863,12 @@ public class SWT {
* The SWT zoom change event type (value is 55).
*
* <p>
- * This event is sent on <code>Shell</code> when the SWT zoom has changed. SWT
- * zoom changes when the system DPI or scale factor changes dynamically.
+ * This event is sent on <code>Shell</code> when the SWT zoom has changed. The SWT
+ * zoom changes when the operating system DPI or scale factor changes dynamically.
* </p>
* <p>
- * Note: This operation is a hint and is not supported on platforms that do not
- * have this concept. Currently supported on Windows10 only.
+ * Note that this is a <em>HINT</em> and is not sent on platforms that do not
+ * support dynamic DPI changes. This event is currently sent on Windows 10 only.
* </p>
*
* @see org.eclipse.swt.widgets.Widget#addListener
@@ -2201,7 +2201,7 @@ public class SWT {
public static final int CALENDAR = 1 << 10;
/**
- * Style constant for displaying the week numbers.
+ * Style constant for displaying week numbers in the calendar.
* <br>Note that this is a <em>HINT</em> and is supported on Windows & GTK platforms only.
* <p><b>Used By:</b><ul>
* <li><code>DateTime</code></li>
@@ -2388,7 +2388,7 @@ public class SWT {
public static final char SPACE = ' ';
/**
- * keyboard and/or mouse event mask indicating that the ALT_GR key
+ * Keyboard and/or mouse event mask indicating that the ALT_GR key
* was pushed on the keyboard when the event was generated
* (value is 1 &lt;&lt 15).
*
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
index 6eb0372d5a..08ae9b3a15 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
@@ -3705,9 +3705,9 @@ int untranslateOffset(int offset) {
* @exception SWTException <ul>
* <li>ERROR_GRAPHIC_DISPOSED - if the receiver has been disposed</li>
* </ul>
- *
- * @noreference This method is not intended to be referenced by clients.
- *
+ *
+ * @noreference This method is not intended to be referenced by clients.
+ *
* DO NOT USE This might be removed in 4.8
* @since 3.107
*/

Back to the top