Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2017-06-05 11:41:41 +0000
committerLakshmi Shanmugam2017-06-05 12:07:25 +0000
commite43fc81e0ae9c08b4304dded5de83251e2648b3d (patch)
treee5c9d48ed1c7c4f2519e50644432530bc91ffd9f /bundles/org.eclipse.swt/Eclipse SWT Accessibility
parent76ab83a5abec738b49eb0e8a4581a6aa12b928f4 (diff)
downloadeclipse.platform.swt-e43fc81e0ae9c08b4304dded5de83251e2648b3d.tar.gz
eclipse.platform.swt-e43fc81e0ae9c08b4304dded5de83251e2648b3d.tar.xz
eclipse.platform.swt-e43fc81e0ae9c08b4304dded5de83251e2648b3d.zip
Bug 517183 - Do the annual javadoc bash for 4.7
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Accessibility')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java2
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleListener.java8
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java1
3 files changed, 4 insertions, 7 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java
index 3327c593be..c97eaf8ace 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java
@@ -456,7 +456,6 @@ public class Accessible {
* @param type an <code>ACC</code> constant beginning with RELATION_* indicating the type of relation
* @param target the accessible that is the target for this relation
* @exception IllegalArgumentException ERROR_NULL_ARGUMENT - if the Accessible target is null
- *
* @since 3.6
*/
public void addRelation(int type, Accessible target) {
@@ -3083,7 +3082,6 @@ public class Accessible {
* @param type an <code>ACC</code> constant beginning with RELATION_* indicating the type of relation
* @param target the accessible that is the target for this relation
* @exception IllegalArgumentException ERROR_NULL_ARGUMENT - if the Accessible target is null
- *
* @since 3.6
*/
public void removeRelation(int type, Accessible target) {
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleListener.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleListener.java
index b8dc6a5906..a8b3119790 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleListener.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleListener.java
@@ -127,7 +127,7 @@ public interface AccessibleListener extends SWTEventListener {
public void getDescription(AccessibleEvent e);
/**
- * Static helper method to create a accessible listener for the
+ * Static helper method to create a <code>AccessibleListener</code> for the
* {@link #getName(AccessibleEvent e)}) method with a lambda expression.
*
* @param c the consumer of the event
@@ -144,7 +144,7 @@ public interface AccessibleListener extends SWTEventListener {
}
/**
- * Static helper method to create a accessible listener for the
+ * Static helper method to create a <code>AccessibleListener</code> for the
* {@link #getHelp(AccessibleEvent e)}) method with a lambda expression.
*
* @param c the consumer of the event
@@ -161,7 +161,7 @@ public interface AccessibleListener extends SWTEventListener {
}
/**
- * Static helper method to create a accessible listener for the
+ * Static helper method to create a <code>AccessibleListener</code> for the
* {@link #getKeyboardShortcut(AccessibleEvent e)}) method with a lambda expression.
*
* @param c the consumer of the event
@@ -178,7 +178,7 @@ public interface AccessibleListener extends SWTEventListener {
}
/**
- * Static helper method to create a accessible listener for the
+ * Static helper method to create a <code>AccessibleListener</code> for the
* {@link #getDescription(AccessibleEvent e)}) method with a lambda expression.
*
* @param c the consumer of the event
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java
index af6b3c5511..c208c0d8d8 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java
@@ -411,7 +411,6 @@ public class Accessible {
*
* @param type an <code>ACC</code> constant beginning with RELATION_* indicating the type of relation
* @param target the accessible that is the target for this relation
- *
* @exception IllegalArgumentException ERROR_NULL_ARGUMENT - if the Accessible target is null
* @since 3.6
*/

Back to the top