Uses of Interface
org.eclipse.core.databinding.property.list.IListProperty
Package
Description
Provides classes for binding observable objects, for example UI widgets and model objects.
Provides classes for observing JavaBeans(tm) objects.
Interfaces and classes for representing and observing properties of objects.
Provides classes that can be used to observe changes in SWT widgets.
Provides classes that can be used to observe the JFace Viewer framework.
-
Uses of IListProperty in org.eclipse.core.databinding
Modifier and TypeMethodDescriptionstatic IListProperty<DataBindingContext,
Binding> BindingProperties.bindings()
Returns anIListProperty
for observing the bindings of aDataBindingContext
.BindingProperties.models()
Returns anIListProperty
for observing the models of aValidationStatusProvider
.BindingProperties.targets()
Returns anIListProperty
for observing the targets of aValidationStatusProvider
.BindingProperties.validationStatusProviders()
Returns anIListProperty
for observing the validation status providers of aDataBindingContext
. -
Uses of IListProperty in org.eclipse.core.databinding.beans
Modifier and TypeInterfaceDescriptioninterface
IBeanListProperty<S,
E> AnIListProperty
extension interface with convenience methods for creating nested bean properties. -
Uses of IListProperty in org.eclipse.core.databinding.property
Modifier and TypeMethodDescriptionstatic <E> IListProperty<List<E>,
E> Returns a list property which takes the source object (aList
) as the property list. -
Uses of IListProperty in org.eclipse.core.databinding.property.list
Modifier and TypeClassDescriptionclass
class
ListProperty<S,
E> Abstract implementation of IListProperty.class
MultiListProperty<S,
E> A list property for observing multiple list properties in sequence in a combined list.class
SimpleListProperty<S,
E> Simplified abstract implementation of IListProperty.Modifier and TypeMethodDescriptionprotected abstract IListProperty<S,
E> DelegatingListProperty.doGetDelegate
(S source) Returns the property to delegate to for the specified source object.final 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.final <T> IListProperty<S,
T> ListProperty.values
(IValueProperty<? super E, T> detailValue) ModifierConstructorDescriptionMultiListProperty
(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
Modifier and TypeMethodDescription<E> IListProperty<S,
E> IValueProperty.list
(IListProperty<? super T, E> detailList) Returns the nested combination of this property and the specified detail list property.final <E> IListProperty<S,
E> ValueProperty.list
(IListProperty<? super T, E> detailList) Modifier and TypeMethodDescription<E> IListProperty<S,
E> IValueProperty.list
(IListProperty<? super T, E> detailList) Returns the nested combination of this property and the specified detail list property.final <E> IListProperty<S,
E> ValueProperty.list
(IListProperty<? super T, E> detailList) -
Uses of IListProperty in org.eclipse.jface.databinding.swt
Modifier and TypeInterfaceDescriptioninterface
IWidgetListProperty<S extends Widget,
E> IListProperty
for observing an SWT WidgetModifier and TypeClassDescriptionclass
WidgetListProperty<S extends Widget,
E> Abstract list property implementation forWidget
properties. -
Uses of IListProperty in org.eclipse.jface.databinding.viewers
Modifier and TypeInterfaceDescriptioninterface
IViewerListProperty<S,
E> IListProperty
for observing a JFace viewerModifier and TypeClassDescriptionclass
ViewerListProperty<S,
E> Abstract list property implementation forViewer
properties.Modifier and TypeMethodDescriptionstatic <E> void
ViewerSupport.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> void
ViewerSupport.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.typed
Modifier and TypeMethodDescriptionstatic <S extends ISelectionService,
E>
IListProperty<S,E> WorkbenchProperties.multipleSelection()
Returns a property for observing the elements of a structured selection as exposed byISelectionService
.static <S extends ISelectionService,
E>
IListProperty<S,E> WorkbenchProperties.multipleSelection
(Class<E> elementType) Returns a property for observing the elements of a structured selection as exposed byISelectionService
.static <S extends ISelectionService,
E>
IListProperty<S,E> WorkbenchProperties.multipleSelection
(String partId, boolean postSelection) Returns a property for observing the elements of a structured selection as exposed byISelectionService
.static <S extends ISelectionService,
E>
IListProperty<S,E> WorkbenchProperties.multipleSelection
(String partId, boolean postSelection, Class<E> elementType) Returns a property for observing the elements of a structured selection as exposed byISelectionService
.