blob: 8657f23e860407f8d9642a87e2fdc300147f137d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 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.databinding.swt;
import org.eclipse.core.databinding.observable.value.IObservableValue;
/**
* {@link IObservableValue} observing an SWT widget.
*
* @param <T>
* type of the value of the property
* @since 1.1
*
*/
public interface ISWTObservableValue<T> extends ISWTObservable,
IObservableValue<T> {
}