Interface IWidgetListProperty<S extends Widget,E>
-
- Type Parameters:
S
- type of the source objectE
- type of the elements in the list
- All Superinterfaces:
IListProperty<S,E>
,IProperty
- All Known Implementing Classes:
WidgetListProperty
public interface IWidgetListProperty<S extends Widget,E> extends IListProperty<S,E>
IListProperty
for observing an SWT Widget- Since:
- 1.3
- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISWTObservableList<E>
observe(S widget)
Returns anISWTObservableList
observing this list property on the given widget-
Methods inherited from interface org.eclipse.core.databinding.property.list.IListProperty
getElementType, getList, listFactory, listFactory, observe, observeDetail, setList, updateList, values
-
-
-
-
Method Detail
-
observe
ISWTObservableList<E> observe(S widget)
Returns anISWTObservableList
observing this list property on the given widget- Specified by:
observe
in interfaceIListProperty<S extends Widget,E>
- Parameters:
widget
- the source widget- Returns:
- an observable list observing this list property on the given widget
-
-