All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jface.databinding.viewers.IViewerValueProperty Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2009, 2015 Matthew Hall 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:
 *     Matthew Hall - initial API and implementation (bug 264286)
 *******************************************************************************/

package org.eclipse.jface.databinding.viewers;

import org.eclipse.core.databinding.observable.value.IObservableValue;
import org.eclipse.core.databinding.property.value.IValueProperty;
import org.eclipse.jface.viewers.Viewer;

/**
 * {@link IValueProperty} for observing a JFace viewer
 *
 * @param 
 *            type of the source object
 * @param 
 *            type of the value of the property
 *
 * @since 1.3
 * @noimplement This interface is not intended to be implemented by clients.
 */
public interface IViewerValueProperty extends IValueProperty {
	/**
	 * Returns an {@link IViewerObservableValue} observing this value property
	 * on the given viewer
	 *
	 * @param viewer
	 *            the source viewer
	 * @return an observable value observing this value property on the given
	 *         viewer
	 */
	public IViewerObservableValue observe(Viewer viewer);

	/**
	 * This method is redeclared to trigger ambiguous method errors that are hidden
	 * by a suspected Eclipse compiler bug 536911. By triggering the bug in this way
	 * clients avoid a change of behavior when the bug is fixed. When the bug is
	 * fixed this redeclaration should be removed.
	 */
	@Override
	public IObservableValue observe(S viewer);

	/**
	 * Returns an {@link IViewerObservableValue} observing this value property
	 * on the given viewer, which delays notification of value changes until at
	 * least delay milliseconds have elapsed since that last change
	 * event, or until a FocusOut event is received from the viewer's control
	 * (whichever happens first).
	 * 

* This method is equivalent to * ViewersObservables.observeDelayedValue(delay, observe(viewer)). * * @param delay * the delay in milliseconds. * @param viewer * the source viewer * @return an observable value observing this value property on the given * viewer, and which delays change notifications for * delay milliseconds. */ public IViewerObservableValue observeDelayed(int delay, Viewer viewer); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy