/******************************************************************************* * Copyright (c) 2009, 2016 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; /** * This adapter class provides default implementations for the * methods in the AccessibleAttributeListener interface. *

* Classes that wish to deal with AccessibleAttribute events can * extend this class and override only the methods that they are * interested in. *

* * @see AccessibleAttributeListener * @see AccessibleAttributeEvent * @see AccessibleTextAttributeEvent * * @since 3.6 */ public class AccessibleAttributeAdapter implements AccessibleAttributeListener { /** * Returns attributes specific to this Accessible object. * * @param e an event object containing the following fields: */ @Override public void getAttributes(AccessibleAttributeEvent e) {} /** * Returns text attributes specific to this Accessible object. * * @param e an event object containing the following fields: */ @Override public void getTextAttributes(AccessibleTextAttributeEvent e) {} }