Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

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)
          Creates a Binding to synchronize the values of two observable sets.
  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. createModelToTargetUpdateSetStrategy ( IObservableSet modelObservableSet, IObservableSet targetObservableSet)
           
protected   UpdateSetStrategy DataBindingContext. createTargetToModelUpdateSetStrategy ( IObservableSet targetObservableSet, IObservableSet modelObservableSet)
           
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.
protected  void UpdateSetStrategy. fillDefaults ( IObservableSet source, IObservableSet destination)
           
 

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 BeansObservables. observeDetailSet ( IObservableValue master, String propertyName, Class propertyType)
          Helper method for MasterDetailObservables.detailSet(master, setFactory(master.getRealm(), propertyName), propertyType)
static  IObservableSet PojoObservables. observeDetailSet ( IObservableValue master, String propertyName, Class propertyType)
          Helper method for MasterDetailObservables.detailSet(master, setFactory(master.getRealm(), propertyName), propertyType)
static  IObservableSet BeansObservables. observeDetailSet ( Realm realm, IObservableValue master, String propertyName, Class propertyType)
          Deprecated. Use BeansObservables.observeDetailSet(IObservableValue, String, Class) instead.
static  IObservableSet PojoObservables. observeDetailSet ( Realm realm, IObservableValue master, String propertyName, Class propertyType)
          Deprecated. Use PojoObservables.observeDetailSet(IObservableValue, String, Class) instead.
static  IObservableSet BeansObservables. observeSet ( Object bean, String propertyName)
          Returns an observable set in the default realm tracking the collection-typed named property of the given bean object
static  IObservableSet PojoObservables. observeSet ( Object pojo, String propertyName)
          Returns an observable set in the default realm tracking the collection-typed named property of the given pojo object.
static  IObservableSet BeansObservables. observeSet ( Object bean, String propertyName, Class elementType)
          Returns an observable set in the current default realm tracking the collection-typed named property of the given bean object.
static  IObservableSet PojoObservables. observeSet ( Object pojo, String propertyName, Class elementType)
          Returns an observable set in the default realm, tracking the collection-typed named property of the given pojo object.
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 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 BeansObservables. observeSet ( Realm realm, Object bean, String propertyName, Class elementType)
          Returns an observable set in the given realm tracking the collection-typed named property of the given bean object.
static  IObservableSet PojoObservables. observeSet ( Realm realm, Object pojo, String propertyName, Class elementType)
          Returns an observable set in the given realm tracking the collection-typed named property of the given pojo object.
 

Methods in org.eclipse.core.databinding.beans with parameters of type IObservableSet
static  IObservableMap BeansObservables. observeMap ( IObservableSet domain, Class beanClass, String propertyName)
          Returns an observable map in the given observable set's realm tracking the current values of the named property for the beans in the given set.
static  IObservableMap PojoObservables. observeMap ( IObservableSet domain, Class pojoClass, String propertyName)
          Returns an observable map in the given observable set's realm tracking the current values of the named property for the pojos in the given set.
static  IObservableMap BeansObservables. observeMap ( IObservableSet domain, String propertyName)
          Returns an observable map in the given observable set's realm tracking the current values of the named property for the beans in the given set.
static  IObservableMap PojoObservables. observeMap ( IObservableSet domain, String propertyName)
          Returns an observable map in the given observable set's 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 given observable set's realm tracking the current values of the named properties for the beans in the given set.
static  IObservableMap[] PojoObservables. observeMaps ( IObservableSet domain, Class pojoClass, String[] propertyNames)
          Returns an array of observable maps in the given observable set's realm tracking the current values of the named propertys for the pojos in the given set.
static  IObservableMap[] BeansObservables. observeMaps ( IObservableSet domain, String[] propertyNames)
          Returns an array of observable maps in the given observable set's realm tracking the current values of the named properties for the beans in the given set.
static  IObservableMap[] PojoObservables. observeMaps ( IObservableSet domain, String[] propertyNames)
          Returns an array of observable maps in the given observable set's realm tracking the current values of the named properties 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. 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. 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.
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. 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. unmodifiableObservableSet ( IObservableSet set)
          Returns an unmodifiable observable set backed by the given observable set.
 

Methods in org.eclipse.core.databinding.observable with parameters of type IObservableSet
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.
static  IObservableSet Observables. unmodifiableObservableSet ( IObservableSet set)
          Returns an unmodifiable observable set backed by the given observable 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)
           
ComputedObservableMap ( IObservableSet keySet, Object valueType)
           
 

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 ComputedSet
          A lazily calculated set that automatically computes and registers listeners on its dependencies as long as all of its dependencies are IObservable objects.
 class DecoratingObservableSet
          An observable set which decorates another observable set.
 class ListToSetAdapter
          Observable set backed by an observable list.
 class MappedSet
          Deprecated. This class is deprecated.
 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
DecoratingObservableSet ( IObservableSet decorated, boolean disposeDecoratedOnDispose)
          Constructs a DecoratingObservableSet which decorates the given observable.
MappedSet ( IObservableSet input, IObservableMap map)
          Deprecated.  
SetChangeEvent ( IObservableSet source, SetDiff diff)
          Creates a new set change event.
UnionSet ( IObservableSet[] childSets)
           
UnionSet ( IObservableSet[] childSets, Object elementType)
           
 

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 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.
  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. getRealizedElements ()
          Returns the set of known elements which have been realized in the viewer.
  IObservableSet ObservableListTreeContentProvider. getRealizedElements ()
          Returns the set of known elements which have been realized in the viewer.
  IObservableSet ObservableSetTreeContentProvider. getRealizedElements ()
          Returns the set of known elements which have been realized in the viewer.
  IObservableSet ObservableSetContentProvider. getRealizedElements ()
          Returns the set of known elements which have been realized in the viewer.
  IObservableSet ViewerSetProperty. observe ( Object source)
           
  IObservableSet ViewerSetProperty. observe ( Realm realm, Object source)
           
static  IObservableSet ViewersObservables. observeCheckedElements ( ICheckable checkable, Object elementType)
          Returns an observable set that tracks the checked elements of the given ICheckable.
 

Methods in org.eclipse.jface.databinding.viewers with parameters of type IObservableSet
static void ViewerSupport. bind ( StructuredViewer viewer, IObservableSet input, org.eclipse.core.databinding.property.value.IValueProperty labelProperty)
          Binds the viewer to the specified input, using the specified label property to generate labels.
static void ViewerSupport. bind ( StructuredViewer viewer, IObservableSet input, org.eclipse.core.databinding.property.value.IValueProperty[] labelProperties)
          Binds the viewer to the specified input, using the specified label properties to generate labels.
 

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


Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

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


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire