summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2006-03-24 17:32:46 +0000
committerCarolyn MacLeod <carolyn>2006-03-24 17:32:46 +0000
commit12a54769e00a3569e18a0a6d730cd21bc5dbe352 (patch)
treed0ca90ebba1c205b11c5f4cb8527dab7e02b51fd
parentad80fde6da2a7cad7121a8ffffd3c813ca74d71f (diff)
downloadeclipse.platform.swt-12a54769e00a3569e18a0a6d730cd21bc5dbe352.tar.gz
eclipse.platform.swt-12a54769e00a3569e18a0a6d730cd21bc5dbe352.tar.xz
eclipse.platform.swt-12a54769e00a3569e18a0a6d730cd21bc5dbe352.zip
javadoc
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlListener.java4
2 files changed, 4 insertions, 4 deletions
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 7269b8520f..355ef7f29d 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
@@ -196,14 +196,14 @@ public abstract class AccessibleControlAdapter implements AccessibleControlListe
* of the control, or the state of a child of the control.
* The default behavior is to do nothing.
* <p>
- * Return a state constant (constant defined in ACC beginning with STATE_)
+ * Return a state mask (mask bit constants defined in ACC beginning with STATE_)
* that describes the current state of the specified control or child in the
* <code>detail</code> field of the event object.
* </p>
*
* @param e an event object containing the following fields:<ul>
* <li>childID [IN] - an identifier specifying the control or one of its children</li>
- * <li>detail [OUT] - a state constant describing the current state of the control or child</li>
+ * <li>detail [OUT] - a state mask describing the current state of the control or child</li>
* </ul>
*/
public void getState(AccessibleControlEvent e) {
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 12f49c9658..75bdacc345 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
@@ -183,14 +183,14 @@ public interface AccessibleControlListener extends SWTEventListener {
* Sent when an accessibility client requests the state
* of the control, or the state of a child of the control.
* <p>
- * Return a state constant (constant defined in ACC beginning with STATE_)
+ * Return a state mask (mask bit constants defined in ACC beginning with STATE_)
* that describes the current state of the specified control or child in the
* <code>detail</code> field of the event object.
* </p>
*
* @param e an event object containing the following fields:<ul>
* <li>childID [IN] - an identifier specifying the control or one of its children</li>
- * <li>detail [OUT] - a state constant describing the current state of the control or child</li>
+ * <li>detail [OUT] - a state mask describing the current state of the control or child</li>
* </ul>
*/
public void getState(AccessibleControlEvent e);