Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-02-21 06:14:17 +0000
committerAlexander Kurtakov2017-02-21 06:14:17 +0000
commit39b7853d7f96da18ea54bb0b2cfb7cedc605fe35 (patch)
tree54438152d9cb6c2f775915c80bd202e186864fcc /bundles/org.eclipse.swt/Eclipse SWT Accessibility/common
parent4d4522bad0b98609f9f910eabad52bd7a6fb0812 (diff)
downloadeclipse.platform.swt-39b7853d7f96da18ea54bb0b2cfb7cedc605fe35.tar.gz
eclipse.platform.swt-39b7853d7f96da18ea54bb0b2cfb7cedc605fe35.tar.xz
eclipse.platform.swt-39b7853d7f96da18ea54bb0b2cfb7cedc605fe35.zip
Bug 511181 - [api] Provide helper methods to use lambda expressions for
AccessibleListener methods Properly name the getDescription helper method to be getDescriptionAdapter. Change-Id: Id0cd2c9344ffe4b63a47a7412411a568f9dab399 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Accessibility/common')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleListener.java4
1 files changed, 2 insertions, 2 deletions
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 fe92e3ad1c..b8dc6a5906 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * Copyright (c) 2000, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -185,7 +185,7 @@ public interface AccessibleListener extends SWTEventListener {
* @return AccessibleListener
* @since 3.106
*/
- public static AccessibleListener getDescription(Consumer<AccessibleEvent> c) {
+ public static AccessibleListener getDescriptionAdapter(Consumer<AccessibleEvent> c) {
return new AccessibleAdapter() {
@Override
public void getDescription(AccessibleEvent e) {

Back to the top