1 /******************************************************************************* 2 * Copyright (c) 2004, 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 12 package org.eclipse.jface.bindings; 13 14 /** 15 * <p> 16 * An instance of <code>BindingManagerListener</code> can be used by clients to 17 * receive notification of changes to an instance of 18 * <code>BindingManager</code>. 19 * </p> 20 * <p> 21 * This interface may be implemented by clients. 22 * </p> 23 * 24 * @since 3.1 25 * @see BindingManager#addBindingManagerListener(IBindingManagerListener) 26 * @see org.eclipse.jface.bindings.BindingManager#addBindingManagerListener(IBindingManagerListener) 27 * @see BindingManagerEvent 28 */ 29 public interface IBindingManagerListener { 30 31 /** 32 * Notifies that attributes inside an instance of <code>BindingManager</code> have changed. 33 * Specific details are described in the <code>BindingManagerEvent</code>. Changes in the 34 * binding manager can cause the set of defined or active schemes or bindings to change. 35 * 36 * @param event 37 * the binding manager event. Guaranteed not to be <code>null</code>. 38 */ 39 void bindingManagerChanged(BindingManagerEvent event); 40 } 41