blob: 909b376167d99fbb11a3af7e15d95b9b645f1314 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.jface.internal.databinding.provisional;
import org.eclipse.jface.internal.databinding.provisional.validation.ValidationError;
/**
* A default implementation for an IBindingListener event handler.
*
* @since 1.0
* @deprecated use {@link org.eclipse.jface.databinding.BindingAdapter} instead
*/
public class BindingAdapter implements IBindingListener {
public ValidationError bindingEvent(BindingEvent e) {
return null;
}
}