/******************************************************************************* * Copyright (c) 2009, 2010 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.swt.accessibility; import org.eclipse.swt.internal.SWTEventListener; /** * Classes which implement this interface provide methods * that handle AccessibleAction events. *

* After creating an instance of a class that implements * this interface it can be added to an accessible using the * addAccessibleActionListener method and removed using * the removeAccessibleActionListener method. *

* * @see AccessibleActionAdapter * @see AccessibleActionEvent * * @since 3.6 */ public interface AccessibleActionListener extends SWTEventListener { /** * Returns the number of accessible actions available in this object. *

* If there are more than one, the first one (index 0) is considered the * "default" action of the object. *

* * @param e an event object containing the following fields: */ public void getActionCount(AccessibleActionEvent e); /** * Performs the specified action on the object. * * @param e an event object containing the following fields: */ public void doAction(AccessibleActionEvent e); /** * Returns a description of the specified action. * * @param e an event object containing the following fields: */ public void getDescription(AccessibleActionEvent e); /** * Returns a string representing one or more key bindings, if there * are any, associated with the specified action. *

* The returned string is of the following form: mnemonic;accelerator * for example: "C;CTRL+C" for the Copy item in a typical Edit menu. *

* * @param e an event object containing the following fields: */ public void getKeyBinding(AccessibleActionEvent e); /** * Returns the name of the specified action. *

* There is no need to implement this method for single action controls * since that would be redundant with AccessibleControlListener.getDefaultAction. *

* * @param e an event object containing the following fields: */ public void getName(AccessibleActionEvent e); }