Interface ISetProperty<S,E>
- Type Parameters:
S
- type of the source objectE
- type of the elements in the set
- All Superinterfaces:
IProperty
- All Known Subinterfaces:
IBeanSetProperty<S,
,E> IViewerSetProperty<S,
E>
- All Known Implementing Classes:
DelegatingSetProperty
,SetProperty
,SimpleSetProperty
,UnionSetProperty
,ViewerSetProperty
- Since:
- 1.2
- See Also:
- Restriction:
- This interface is not intended to be implemented by clients.
Clients should instead subclass one of the classes that
implement this interface.
Authors of extensions to the databinding framework may extend this interface and indirectly implement it, but if doing so must also extend one of the framework classes. (Use an API problem filter to suppress the resulting warning.)
Direct implementers of this interface outside of the framework will be broken in future releases when methods are added to this interface.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the type of the elements in the collection ornull
if untypedReturns an unmodifiable Set with the current contents of the source's set propertyReturns an observable set observing this set property on the given property sourceReturns an observable set observing this set property on the given property source<U extends S>
IObservableSet<E>observeDetail
(IObservableValue<U> master) Returns an observable set on the master observable's realm which tracks this property of the current value ofmaster
.Returns a factory for creating observable sets tracking this property of a particular property source.setFactory
(Realm realm) Returns a factory for creating observable sets in the given realm, tracking this property of a particular property source.void
Updates the property on the source with the specified change.void
Updates the property on the source with the specified change.<T> IMapProperty<S,
E, T> values
(IValueProperty<? super E, T> detailValues) Returns the nested combination of this property and the specified detail value property.
-
Method Details
-
getElementType
Object getElementType()Returns the type of the elements in the collection ornull
if untyped- Returns:
- the type of the elements in the collection or
null
if untyped
-
getSet
Returns an unmodifiable Set with the current contents of the source's set property- Parameters:
source
- the property source (may be null)- Returns:
- an unmodifiable Set with the current contents of the source's set property
- Since:
- 1.3
-
setSet
Updates the property on the source with the specified change.Note: This method is made available to facilitate basic property access. However if the property source lacks property change notification, then observables on the source object may not be notified of the change. In most cases it is preferable to modify the source through an
IObservableSet
than through the property directly.- Parameters:
source
- the property source (may be null)set
- the new set- Since:
- 1.3
-
updateSet
Updates the property on the source with the specified change.Note: This method is made available to facilitate basic property access. However if the property source lacks property change notification, then observables on the source object may not be notified of the change. In most cases it is preferable to modify the source through an
IObservableSet
than through the property directly.- Parameters:
source
- the property source (may be null)diff
- a diff describing the change- Since:
- 1.3
-
observe
Returns an observable set observing this set property on the given property source- Parameters:
source
- the property source- Returns:
- an observable set observing this set property on the given property source
-
observe
Returns an observable set observing this set property on the given property source- Parameters:
realm
- the observable's realmsource
- the property source- Returns:
- an observable set observing this set property on the given property source
-
setFactory
IObservableFactory<S,IObservableSet<E>> setFactory()Returns a factory for creating observable sets tracking this property of a particular property source.- Returns:
- a factory for creating observable sets tracking this property of a particular property source.
-
setFactory
Returns a factory for creating observable sets in the given realm, tracking this property of a particular property source.- Parameters:
realm
- the realm- Returns:
- a factory for creating observable sets in the given realm, tracking this property of a particular property source.
-
observeDetail
Returns an observable set on the master observable's realm which tracks this property of the current value ofmaster
.- Parameters:
master
- the master observable- Returns:
- an observable set on the given realm which tracks this property
of the current value of
master
.
-
values
Returns the nested combination of this property and the specified detail value property. Note that because this property is a projection of value properties over a set, the only modifications supported are through theIObservableMap.put(Object, Object)
andMap.putAll(java.util.Map)
methods. In the latter case, this property does not put entries for keys not already in the master key set. Modifications made through the returned property are delegated to the detail property, using the corresponding set element from the master property as the source.- Parameters:
detailValues
- the detail property- Returns:
- the nested combination of the master set and detail value properties
-