Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-16 13:58:55 +0000
committerAlexander Kurtakov2019-02-16 13:58:55 +0000
commite8abc89326c91d3e63b64d1139f994f1a9ead648 (patch)
tree0b67f5c59d4d107abc53c4cf1777164e1f77860e /bundles/org.eclipse.swt/Eclipse SWT Accessibility
parent63e8925dc77db3b93ef521dc6cf2bd6ded7bab64 (diff)
downloadeclipse.platform.swt-e8abc89326c91d3e63b64d1139f994f1a9ead648.tar.gz
eclipse.platform.swt-e8abc89326c91d3e63b64d1139f994f1a9ead648.tar.xz
eclipse.platform.swt-e8abc89326c91d3e63b64d1139f994f1a9ead648.zip
Bug 543933 - Build javadocs with Java 11
Fix javadoc warnings catched by Java 11 tool with XDoclint:html. Change-Id: If1a13c413a4734eb5ee5a28d87f327c34494c30b Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Accessibility')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java19
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java5
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlListener.java7
3 files changed, 18 insertions, 13 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java
index f90902700b..3fe7f0d066 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java
@@ -368,10 +368,10 @@ public class ACC {
/**
* Send when an object's state has changed, for example enabled/disabled, pressed/released, or checked/unchecked.
* <p>
- * The eventData object is an array of 2 ints specifying the following:<ul>
+ * The eventData object is an array of 2 ints specifying the following:</p><ul>
* <li>state - the STATE_* constant identifying the state that changed</li>
* <li>newValue - either 1 or 0, indicating whether the state has changed to true or false</li>
- * </ul></p>
+ * </ul>
*
* @since 3.6
*/
@@ -404,10 +404,11 @@ public class ACC {
/**
* Send when an object's value has changed.
* <p>
- * The eventData object is an array of 2 Numbers specifying the following:<ul>
+ * The eventData object is an array of 2 Numbers specifying the following:</p>
+ * <ul>
* <li>oldValue - the object's old value</li>
* <li>newValue - the object's new value</li>
- * </ul></p>
+ * </ul>
*
* @since 3.6
*/
@@ -543,13 +544,14 @@ public class ACC {
/**
* Send when a table's data has changed.
* <p>
- * The eventData object is an array of 5 ints specifying the following:<ul>
+ * The eventData object is an array of 5 ints specifying the following:</p>
+ * <ul>
* <li>type - {@link ACC#INSERT} or {@link ACC#DELETE} - the type of change</li>
* <li>rowStart - the index of the first row that changed</li>
* <li>rowCount - the number of contiguous rows that changed, or 0 if no rows changed</li>
* <li>columnStart - the index of the first column that changed</li>
* <li>columnCount - the number of contiguous columns that changed, or 0 if no columns changed</li>
- * </ul></p>
+ * </ul>
*
* @since 3.6
*/
@@ -602,12 +604,13 @@ public class ACC {
/**
* Send when text was inserted or deleted.
* <p>
- * The eventData object is an array of 4 objects specifying the following:<ul>
+ * The eventData object is an array of 4 objects specifying the following:</p>
+ * <ul>
* <li>type - {@link ACC#INSERT} or {@link ACC#DELETE} - the type of change</li>
* <li>start - the index of the first character that changed</li>
* <li>end - the index of the last character that changed</li>
* <li>text - the text string that was inserted or deleted</li>
- * </ul></p>
+ * </ul>
*
* @since 3.6
*/
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java
index 7ea52a1e1e..b1de1ec4c5 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java
@@ -88,13 +88,14 @@ public abstract class AccessibleControlAdapter implements AccessibleControlListe
* for a child of the control by index or childID, or when a client
* requests the index of an accessible object in its parent.
* <p>
- * The childID field in the event object can be one of the following:<ul>
+ * The childID field in the event object can be one of the following:</p>
+ * <ul>
* <li>an integer child ID - return the accessible object for the specified child ID,
* or null if the specified child does not have its own accessible</li>
* <li>{@link ACC#CHILDID_CHILD_AT_INDEX} - return the accessible child object at the specified index,
* or null if this object has no children</li>
* <li>{@link ACC#CHILDID_CHILD_INDEX} - return the index of this accessible in its parent</li>
- * </ul></p>
+ * </ul>
*
* @param e an event object containing the following fields:<ul>
* <li>childID [IN] - an identifier specifying a child of the control, or one of the predefined CHILDID constants</li>
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlListener.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlListener.java
index 6aba030d72..e938a35adc 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlListener.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlListener.java
@@ -14,7 +14,7 @@
package org.eclipse.swt.accessibility;
-import org.eclipse.swt.internal.SWTEventListener;
+import org.eclipse.swt.internal.*;
/**
* Classes that implement this interface provide methods
@@ -85,13 +85,14 @@ public interface AccessibleControlListener extends SWTEventListener {
* for a child of the control by index or childID, or when a client
* requests the index of an accessible object in its parent.
* <p>
- * The childID field in the event object can be one of the following:<ul>
+ * The childID field in the event object can be one of the following:</p>
+ * <ul>
* <li>an integer child ID - return the accessible object for the specified child ID,
* or null if the specified child does not have its own accessible</li>
* <li>{@link ACC#CHILDID_CHILD_AT_INDEX} - return the accessible child object at the specified index,
* or null if this object has no children</li>
* <li>{@link ACC#CHILDID_CHILD_INDEX} - return the index of this accessible in its parent</li>
- * </ul></p>
+ * </ul>
*
* @param e an event object containing the following fields:<ul>
* <li>childID [IN] - an identifier specifying a child of the control, or one of the predefined CHILDID constants</li>

Back to the top