|
 |
|
|
Uses of Interface org.eclipse.core.databinding.observable.list.IObservableList
Methods in
org.eclipse.core.databinding with parameters of type
IObservableList
|
Binding
|
DataBindingContext.
bindList
(
IObservableList targetObservableList,
IObservableList modelObservableList)
Creates a
Binding to synchronize the values of two
observable lists . |
Binding
|
DataBindingContext.
bindList
(
IObservableList targetObservableList,
IObservableList modelObservableList,
UpdateListStrategy targetToModel,
UpdateListStrategy modelToTarget)
Creates a
Binding to synchronize the values of two
observable lists . |
protected
UpdateListStrategy
|
DataBindingContext.
createModelToTargetUpdateListStrategy
(
IObservableList modelObservableList,
IObservableList targetObservableList)
|
protected
UpdateListStrategy
|
DataBindingContext.
createTargetToModelUpdateListStrategy
(
IObservableList targetObservableList,
IObservableList modelObservableList)
|
protected
IStatus
|
UpdateListStrategy.
doAdd
(
IObservableList observableList,
Object element,
int index)
Adds the given element at the given index to the given observable list. |
protected
IStatus
|
UpdateListStrategy.
doMove
(
IObservableList observableList,
int oldIndex,
int newIndex)
Moves the element in the observable list located at the given old index
to the given new index. |
protected
IStatus
|
UpdateListStrategy.
doRemove
(
IObservableList observableList,
int index)
Removes the element at the given index from the given observable list. |
protected
IStatus
|
UpdateListStrategy.
doReplace
(
IObservableList observableList,
int index,
Object element)
Replaces the element in the observable list located at the given index to
with the given element. |
protected void
|
UpdateListStrategy.
fillDefaults
(
IObservableList source,
IObservableList destination)
|
Methods in
org.eclipse.core.databinding.beans that return
IObservableList
|
static
IObservableList
|
BeansObservables.
observeDetailList
(
IObservableValue master,
String propertyName,
Class propertyType)
Helper method for
MasterDetailObservables.detailList(master, listFactory(master.getRealm(), propertyName, propertyType), propertyType)
|
static
IObservableList
|
PojoObservables.
observeDetailList
(
IObservableValue master,
String propertyName,
Class propertyType)
Helper method for
MasterDetailObservables.detailList(master, listFactory(master.getRealm(), propertyName, propertyType), propertyType)
|
static
IObservableList
|
BeansObservables.
observeDetailList
(
Realm realm,
IObservableValue master,
String propertyName,
Class propertyType)
Deprecated. Use
BeansObservables.observeDetailList(IObservableValue, String, Class)
instead
|
static
IObservableList
|
PojoObservables.
observeDetailList
(
Realm realm,
IObservableValue master,
String propertyName,
Class propertyType)
Deprecated. Use
PojoObservables.observeDetailList(IObservableValue, String, Class)
instead
|
static
IObservableList
|
BeansObservables.
observeList
(
Object bean,
String propertyName)
Returns an observable list in the default realm tracking the
collection-typed named property of the given bean object. |
static
IObservableList
|
PojoObservables.
observeList
(
Object pojo,
String propertyName)
Returns an observable list in the default realm tracking the
collection-typed named property of the given pojo object. |
static
IObservableList
|
BeansObservables.
observeList
(
Object bean,
String propertyName,
Class elementType)
Returns an observable list in the default realm tracking the
collection-typed named property of the given bean object. |
static
IObservableList
|
PojoObservables.
observeList
(
Object pojo,
String propertyName,
Class elementType)
Returns an observable list in the default realm tracking the
collection-typed named property of the given bean object. |
static
IObservableList
|
BeansObservables.
observeList
(
Realm realm,
Object bean,
String propertyName)
Returns an observable list in the given realm tracking the
collection-typed named property of the given bean object. |
static
IObservableList
|
PojoObservables.
observeList
(
Realm realm,
Object pojo,
String propertyName)
Returns an observable list in the given realm tracking the
collection-typed named property of the given pojo object. |
static
IObservableList
|
BeansObservables.
observeList
(
Realm realm,
Object bean,
String propertyName,
Class elementType)
Returns an observable list in the given realm tracking the
collection-typed named property of the given bean object. |
static
IObservableList
|
PojoObservables.
observeList
(
Realm realm,
Object pojo,
String propertyName,
Class elementType)
Returns an observable list in the given realm tracking the
collection-typed named property of the given bean object. |
Methods in
org.eclipse.core.databinding.observable that return
IObservableList
|
static
IObservableList
|
Observables.
emptyObservableList
()
Returns an empty observable list. |
static
IObservableList
|
Observables.
emptyObservableList
(
Object elementType)
Returns an empty observable list of the given element type. |
static
IObservableList
|
Observables.
emptyObservableList
(
Realm realm)
Returns an empty observable list belonging to the given realm. |
static
IObservableList
|
Observables.
emptyObservableList
(
Realm realm,
Object elementType)
Returns an empty observable list of the given element type and belonging
to the given realm. |
static
IObservableList
|
Observables.
proxyObservableList
(
IObservableList target)
Returns an observable list that contains the same elements as the given
list, and fires the same events as the given list, but can be disposed of
without disposing of the wrapped list. |
static
IObservableList
|
Observables.
staticObservableList
(
List list)
Returns an observable list backed by the given list. |
static
IObservableList
|
Observables.
staticObservableList
(
List list,
Object elementType)
Returns an observable list of the given element type, backed by the given
list. |
static
IObservableList
|
Observables.
staticObservableList
(
Realm realm,
List list)
Returns an observable list belonging to the given realm, backed by the
given list. |
static
IObservableList
|
Observables.
staticObservableList
(
Realm realm,
List list,
Object elementType)
Returns an observable list of the given element type and belonging to the
given realm, backed by the given list. |
static
IObservableList
|
Observables.
unmodifiableObservableList
(
IObservableList list)
Returns an unmodifiable observable list backed by the given observable
list. |
Guidelines for using Eclipse APIs.
Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.
|
|
|