blob: 9dce334351472193c3f520e11e7361941309ec31 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Matthew Hall 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:
* Matthew Hall - initial API and implementation (bug 194734)
* Matthew Hall - bug 195222
******************************************************************************/
package org.eclipse.core.databinding.property.value;
import org.eclipse.core.databinding.observable.Realm;
import org.eclipse.core.databinding.observable.list.IObservableList;
import org.eclipse.core.databinding.observable.map.IObservableMap;
import org.eclipse.core.databinding.observable.masterdetail.IObservableFactory;
import org.eclipse.core.databinding.observable.set.IObservableSet;
import org.eclipse.core.databinding.observable.value.IObservableValue;
import org.eclipse.core.databinding.property.IProperty;
import org.eclipse.core.databinding.property.list.IListProperty;
import org.eclipse.core.databinding.property.map.IMapProperty;
import org.eclipse.core.databinding.property.set.ISetProperty;
/**
* Interface for value-typed properties
*
* @since 1.2
* @noimplement This interface is not intended to be implemented by clients.
* Clients should instead subclass one of the classes that
* implement this interface. Note that direct implementers of this
* interface outside of the framework will be broken in future
* releases when methods are added to this interface.
* @see ValueProperty
* @see SimpleValueProperty
*/
public interface IValueProperty extends IProperty {
/**
* Returns the value type of the property, or <code>null</code> if untyped.
*
* @return the value type of the property, or <code>null</code> if untyped.
*/
public Object getValueType();
/**
* Returns an observable value observing this value property on the given
* property source.
*
* @param source
* the property source
* @return an observable value observing this value property on the given
* property source
*/
public IObservableValue observe(Object source);
/**
* Returns an observable value observing this value property on the given
* property source
*
* @param realm
* the observable's realm
* @param source
* the property source
* @return an observable value observing this value property on the given
* property source
*/
public IObservableValue observe(Realm realm, Object source);
/**
* Returns a factory for creating observable values tracking this property
* of a particular property source.
*
* @return a factory for creating observable values tracking this property
* of a particular property source.
*/
public IObservableFactory valueFactory();
/**
* Returns a factory for creating observable values in the given realm,
* tracking this property of a particular property source.
*
* @param realm
* the realm
*
* @return a factory for creating observable values in the given realm,
* tracking this property of a particular property source.
*/
public IObservableFactory valueFactory(Realm realm);
/**
* Returns an observable value on the master observable's realm which tracks
* this property on the current value of <code>master</code>.
*
* @param master
* the master observable
* @return an observable value which tracks this property of the current
* value of <code>master</code>.
*/
public IObservableValue observeDetail(IObservableValue master);
/**
* Returns an observable list on the master observable's realm which tracks
* this property on each element of <code>master</code>.
*
* @param master
* the master observable
* @return an observable list which tracks this property on each element of
* the master observable.
*/
public IObservableList observeDetail(IObservableList master);
/**
* Returns an observable map on the master observable's realm where the
* map's key set is the specified master set, and where each key maps to the
* current property value for each element.
*
* @param master
* the master observable
* @return an observable map that tracks the current value of this property
* for the elements in the given set.
*/
public IObservableMap observeDetail(IObservableSet master);
/**
* Returns an observable map on the master observable's realm where the
* map's key set is the same as the master observable map, and where each
* value is the property value of the corresponding value in the master
* observable map.
*
* @param master
* the master observable
* @return an observable map on the master observable's realm which tracks
* the current value of this property for the elements in the given
* map's values collection
*/
public IObservableMap observeDetail(IObservableMap master);
/**
* Returns the nested combination of this property and the specified detail
* value property. Value modifications made through the returned property
* are delegated to the detail property, using the value of this property as
* the source.
*
* @param detailValue
* the detail property
* @return the nested combination of the master and detail properties
*/
public IValueProperty value(IValueProperty detailValue);
/**
* Returns the nested combination of this property and the specified detail
* list property. List modifications made through the returned property are
* delegated to the detail property, using the value of the master property
* as the source.
*
* @param detailList
* the detail property
* @return the nested combination of the master value and detail list
* properties
*/
public IListProperty list(IListProperty detailList);
/**
* Returns the nested combination of this property and the specified detail
* set property. Set modifications made through the returned property are
* delegated to the detail property, using the value of the master property
* as the source.
*
* @param detailSet
* the detail property
* @return the nested combination of the master value and detail set
* properties
*/
public ISetProperty set(ISetProperty detailSet);
/**
* Returns the nested combination of this property and the specified detail
* map property. Map modifications made through the returned property are
* delegated to the detail property, using the value of the master property
* as the source.
*
* @param detailMap
* the detail property
* @return the nested combination of the master value and detial map
* properties
*/
public IMapProperty map(IMapProperty detailMap);
}