Eclipse Platform
Release 3.4

Uses of Interface
org.eclipse.core.databinding.observable.set.IObservableSet

Packages that use IObservableSet
org.eclipse.core.databinding Provides classes for binding observable objects, for example UI widgets and model objects.  
org.eclipse.core.databinding.beans Provides classes for observing JavaBeans(tm) objects.  
org.eclipse.core.databinding.observable Provides the core APIs for observing changes in objects.  
org.eclipse.core.databinding.observable.map Provides classes that can be used to observe changes in maps.  
org.eclipse.core.databinding.observable.masterdetail Provides classes that can be used to observe a detail of a master object.  
org.eclipse.core.databinding.observable.set Provides classes that can be used to observe changes in sets.  
org.eclipse.core.databinding.validation Provides the core APIs for validation.  
org.eclipse.jface.databinding.viewers Provides classes that can be used to observe the JFace Viewer framework.  
 

Uses of IObservableSet in org.eclipse.core.databinding
 

Methods in org.eclipse.core.databinding with parameters of type IObservableSet
 Binding DataBindingContext.bindSet(IObservableSet targetObservableSet, IObservableSet modelObservableSet, UpdateSetStrategy targetToModel, UpdateSetStrategy modelToTarget)
          Creates a Binding to synchronize the values of two observable sets.
protected  UpdateSetStrategy DataBindingContext.createTargetToModelUpdateSetStrategy(IObservableSet targetObservableSet, IObservableSet modelObservableSet)
           
protected  UpdateSetStrategy DataBindingContext.createModelToTargetUpdateSetStrategy(IObservableSet modelObservableSet, IObservableSet targetObservableSet)
           
protected  void UpdateSetStrategy.fillDefaults(IObservableSet source, IObservableSet destination)
           
protected  IStatus UpdateSetStrategy.doAdd(IObservableSet observableSet, Object element)
          Adds the given element at the given index to the given observable list.
protected  IStatus UpdateSetStrategy.doRemove(IObservableSet observableSet, Object element)
          Removes the element at the given index from the given observable list.
 

Constructors in org.eclipse.core.databinding with parameters of type IObservableSet
SetBinding(IObservableSet target, IObservableSet model, UpdateSetStrategy targetToModelStrategy, UpdateSetStrategy modelToTargetStrategy)
           
 

Uses of IObservableSet in org.eclipse.core.databinding.beans
 

Methods in org.eclipse.core.databinding.beans that return IObservableSet
static IObservableSet PojoObservables.observeSet(Realm realm, Object pojo, String propertyName)
          Returns an observable set in the given realm tracking the collection-typed named property of the given pojo object.
static IObservableSet PojoObservables.observeSet(Realm realm, Object pojo, String propertyName, Class elementType)
           
static IObservableSet PojoObservables.observeDetailSet(Realm realm, IObservableValue master, String propertyName, Class propertyType)
          Helper method for MasterDetailObservables.detailSet(master, setFactory(realm, propertyName), propertyType)
static IObservableSet BeansObservables.observeSet(Realm realm, Object bean, String propertyName)
          Returns an observable set in the given realm tracking the collection-typed named property of the given bean object
static IObservableSet BeansObservables.observeDetailSet(Realm realm, IObservableValue master, String propertyName, Class propertyType)
          Helper method for MasterDetailObservables.detailSet(master, setFactory(realm, propertyName), propertyType)
static IObservableSet BeansObservables.observeSet(Realm realm, Object bean, String propertyName, Class elementType)
           
 

Methods in org.eclipse.core.databinding.beans with parameters of type IObservableSet
static IObservableMap PojoObservables.observeMap(IObservableSet domain, Class pojoClass, String propertyName)
          Returns an observable map in the default realm tracking the current values of the named property for the pojos in the given set.
static IObservableMap[] PojoObservables.observeMaps(IObservableSet domain, Class pojoClass, String[] propertyNames)
          Returns an array of observable maps in the default realm tracking the current values of the named propertys for the pojos in the given set.
static IObservableMap BeansObservables.observeMap(IObservableSet domain, Class beanClass, String propertyName)
          Returns an observable map in the default realm tracking the current values of the named property for the beans in the given set.
static IObservableMap[] BeansObservables.observeMaps(IObservableSet domain, Class beanClass, String[] propertyNames)
          Returns an array of observable maps in the default realm tracking the current values of the named propertys for the beans in the given set.
 

Uses of IObservableSet in org.eclipse.core.databinding.observable
 

Methods in org.eclipse.core.databinding.observable that return IObservableSet
static IObservableSet Observables.unmodifiableObservableSet(IObservableSet set)
          Returns an unmodifiable observable set backed by the given observable set.
static IObservableSet Observables.emptyObservableSet()
          Returns an empty observable set.
static IObservableSet Observables.emptyObservableSet(Object elementType)
          Returns an empty observable set of the given element type.
static IObservableSet Observables.emptyObservableSet(Realm realm)
          Returns an empty observable set belonging to the given realm.
static IObservableSet Observables.emptyObservableSet(Realm realm, Object elementType)
          Returns an empty observable set of the given element type and belonging to the given realm.
static IObservableSet Observables.staticObservableSet(Set set)
          Returns an observable set backed by the given set.
static IObservableSet Observables.staticObservableSet(Set set, Object elementType)
          Returns an observable set of the given element type, backed by the given set.
static IObservableSet Observables.staticObservableSet(Realm realm, Set set)
          Returns an observable set belonging to the given realm, backed by the given set.
static IObservableSet Observables.staticObservableSet(Realm realm, Set set, Object elementType)
          Returns an observable set of the given element type and belonging to the given realm, backed by the given set.
static IObservableSet Observables.proxyObservableSet(IObservableSet target)
          Returns an observable set that contains the same elements as the given set, and fires the same events as the given set, but can be disposed of without disposing of the wrapped set.
 

Methods in org.eclipse.core.databinding.observable with parameters of type IObservableSet
static IObservableSet Observables.unmodifiableObservableSet(IObservableSet set)
          Returns an unmodifiable observable set backed by the given observable set.
static IObservableSet Observables.proxyObservableSet(IObservableSet target)
          Returns an observable set that contains the same elements as the given set, and fires the same events as the given set, but can be disposed of without disposing of the wrapped set.
 

Uses of IObservableSet in org.eclipse.core.databinding.observable.map
 

Constructors in org.eclipse.core.databinding.observable.map with parameters of type IObservableSet
ComputedObservableMap(IObservableSet keySet)
           
 

Uses of IObservableSet in org.eclipse.core.databinding.observable.masterdetail
 

Methods in org.eclipse.core.databinding.observable.masterdetail that return IObservableSet
static IObservableSet MasterDetailObservables.detailSet(IObservableValue master, IObservableFactory detailFactory, Object detailElementType)
          Creates a detail observable set from a master observable value and a factory.
 

Uses of IObservableSet in org.eclipse.core.databinding.observable.set
 

Classes in org.eclipse.core.databinding.observable.set that implement IObservableSet
 class AbstractObservableSet
          Abstract implementation of IObservableSet.
 class ListToSetAdapter
          Observable set backed by an observable list.
 class MappedSet
           This class is thread safe.
 class ObservableSet
          Abstract implementation of IObservableSet.
 class UnionSet
          Represents a set consisting of the union of elements from one or more other sets.
 class WritableSet
          Mutable (writable) implementation of IObservableSet.
 

Methods in org.eclipse.core.databinding.observable.set that return IObservableSet
 IObservableSet SetChangeEvent.getObservableSet()
          Returns the observable set from which this event originated.
 

Constructors in org.eclipse.core.databinding.observable.set with parameters of type IObservableSet
SetChangeEvent(IObservableSet source, SetDiff diff)
          Creates a new set change event.
UnionSet(IObservableSet[] childSets)
           
MappedSet(IObservableSet input, IObservableMap map)
           
 

Uses of IObservableSet in org.eclipse.core.databinding.validation
 

Methods in org.eclipse.core.databinding.validation that return IObservableSet
 IObservableSet MultiValidator.observeValidatedSet(IObservableSet target)
          Returns a wrapper IObservableSet which stays in sync with the given target observable only when the validation status is valid.
 

Methods in org.eclipse.core.databinding.validation with parameters of type IObservableSet
 IObservableSet MultiValidator.observeValidatedSet(IObservableSet target)
          Returns a wrapper IObservableSet which stays in sync with the given target observable only when the validation status is valid.
 

Uses of IObservableSet in org.eclipse.jface.databinding.viewers
 

Subinterfaces of IObservableSet in org.eclipse.jface.databinding.viewers
 interface IViewerObservableSet
          IObservableSet observing a JFace Viewer.
 

Methods in org.eclipse.jface.databinding.viewers that return IObservableSet
 IObservableSet ObservableSetTreeContentProvider.getKnownElements()
          Returns the set of elements known to this content provider.
 IObservableSet ObservableSetContentProvider.getKnownElements()
          Returns the set of elements known to this content provider.
 IObservableSet ObservableListContentProvider.getKnownElements()
          Returns the set of elements known to this content provider.
 IObservableSet ObservableListTreeContentProvider.getKnownElements()
          Returns the set of elements known to this content provider.
static IObservableSet ViewersObservables.observeCheckedElements(ICheckable checkable, Object elementType)
          Returns an observable set that tracks the checked elements of the given ICheckable.
 

Constructors in org.eclipse.jface.databinding.viewers with parameters of type IObservableSet
ListeningLabelProvider(IObservableSet itemsThatNeedLabels)
           
 


Eclipse Platform
Release 3.4

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.