Uses of Interface
org.eclipse.core.databinding.property.list.IListProperty
-
Packages that use IListProperty Package Description 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.property Interfaces and classes for representing and observing properties of objects.org.eclipse.core.databinding.property.list org.eclipse.core.databinding.property.value org.eclipse.jface.databinding.swt Provides classes that can be used to observe changes in SWT widgets.org.eclipse.jface.databinding.viewers Provides classes that can be used to observe the JFace Viewer framework.org.eclipse.ui.databinding APIs for Workbench properties and observables for use with data binding -
-
Uses of IListProperty in org.eclipse.core.databinding
Methods in org.eclipse.core.databinding that return IListProperty Modifier and Type Method Description static IListProperty<DataBindingContext,Binding>BindingProperties. bindings()Returns anIListPropertyfor observing the bindings of aDataBindingContext.static IListProperty<ValidationStatusProvider,IObservable>BindingProperties. models()Returns anIListPropertyfor observing the models of aValidationStatusProvider.static IListProperty<ValidationStatusProvider,IObservable>BindingProperties. targets()Returns anIListPropertyfor observing the targets of aValidationStatusProvider.static IListProperty<DataBindingContext,ValidationStatusProvider>BindingProperties. validationStatusProviders()Returns anIListPropertyfor observing the validation status providers of aDataBindingContext. -
Uses of IListProperty in org.eclipse.core.databinding.beans
Subinterfaces of IListProperty in org.eclipse.core.databinding.beans Modifier and Type Interface Description interfaceIBeanListProperty<S,E>AnIListPropertyextension interface with convenience methods for creating nested bean properties. -
Uses of IListProperty in org.eclipse.core.databinding.property
Methods in org.eclipse.core.databinding.property that return IListProperty Modifier and Type Method Description static <E> IListProperty<List<E>,E>Properties. selfList(Object elementType)Returns a list property which takes the source object (aList) as the property list. -
Uses of IListProperty in org.eclipse.core.databinding.property.list
Classes in org.eclipse.core.databinding.property.list that implement IListProperty Modifier and Type Class Description classDelegatingListProperty<S,E>classListProperty<S,E>Abstract implementation of IListProperty.classMultiListProperty<S,E>A list property for observing multiple list properties in sequence in a combined list.classSimpleListProperty<S,E>Simplified abstract implementation of IListProperty.Methods in org.eclipse.core.databinding.property.list that return IListProperty Modifier and Type Method Description protected abstract IListProperty<S,E>DelegatingListProperty. doGetDelegate(S source)Returns the property to delegate to for the specified source object.IListProperty<S,E>DelegatingListProperty. getDelegate(S source)Returns the property to delegate to for the specified source object.<T> IListProperty<S,T>IListProperty. values(IValueProperty<? super E,T> detailValue)Returns the nested combination of this property and the specified detail value property.<T> IListProperty<S,T>ListProperty. values(IValueProperty<? super E,T> detailValue)Constructors in org.eclipse.core.databinding.property.list with parameters of type IListProperty Constructor Description MultiListProperty(IListProperty<S,E>... properties)Constructs a MultiListProperty for observing the specified list properties in sequenceMultiListProperty(IListProperty<S,E>[] properties, Object elementType)Constructs a MultiListProperty for observing the specified list properties in sequence. -
Uses of IListProperty in org.eclipse.core.databinding.property.value
Methods in org.eclipse.core.databinding.property.value that return IListProperty Modifier and Type Method Description <E> IListProperty<S,E>IValueProperty. list(IListProperty<? super T,E> detailList)Returns the nested combination of this property and the specified detail list property.<E> IListProperty<S,E>ValueProperty. list(IListProperty<? super T,E> detailList)Methods in org.eclipse.core.databinding.property.value with parameters of type IListProperty Modifier and Type Method Description <E> IListProperty<S,E>IValueProperty. list(IListProperty<? super T,E> detailList)Returns the nested combination of this property and the specified detail list property.<E> IListProperty<S,E>ValueProperty. list(IListProperty<? super T,E> detailList) -
Uses of IListProperty in org.eclipse.jface.databinding.swt
Subinterfaces of IListProperty in org.eclipse.jface.databinding.swt Modifier and Type Interface Description interfaceIWidgetListProperty<S extends Widget,E>IListPropertyfor observing an SWT WidgetClasses in org.eclipse.jface.databinding.swt that implement IListProperty Modifier and Type Class Description classWidgetListProperty<S extends Widget,E>Abstract list property implementation forWidgetproperties. -
Uses of IListProperty in org.eclipse.jface.databinding.viewers
Subinterfaces of IListProperty in org.eclipse.jface.databinding.viewers Modifier and Type Interface Description interfaceIViewerListProperty<S,E>IListPropertyfor observing a JFace viewerClasses in org.eclipse.jface.databinding.viewers that implement IListProperty Modifier and Type Class Description classViewerListProperty<S,E>Abstract list property implementation forViewerproperties.Methods in org.eclipse.jface.databinding.viewers with parameters of type IListProperty Modifier and Type Method Description static <E> voidViewerSupport. bind(AbstractTreeViewer viewer, E input, IListProperty<? super E,? extends E> childrenProperty, IValueProperty<? super E,?> labelProperty)Binds the viewer to the specified input, using the specified children property to generate child nodes, and the specified label property to generate labels.static <E> voidViewerSupport. bind(AbstractTreeViewer viewer, E input, IListProperty<? super E,? extends E> childrenProperty, IValueProperty<? super E,?>... labelProperties)Binds the viewer to the specified input, using the specified children property to generate child nodes, and the specified label properties to generate labels. -
Uses of IListProperty in org.eclipse.ui.databinding
Methods in org.eclipse.ui.databinding that return IListProperty Modifier and Type Method Description static IListPropertyWorkbenchProperties. multipleSelection()Deprecated.Returns a property for observing the elements of a structured selection as exposed byISelectionService.static IListPropertyWorkbenchProperties. multipleSelection(String partId, boolean postSelection)Deprecated.Returns a property for observing the elements of a structured selection as exposed byISelectionService.
-