Module javafx.base

Interface ObservableSet<E>

Type Parameters:
E - the set element type
All Superinterfaces:
Collection<E>, Iterable<E>, Observable, Set<E>
All Known Subinterfaces:
ObservableSetValue<E>, WritableSetValue<E>
All Known Implementing Classes:
ReadOnlySetProperty, ReadOnlySetPropertyBase, ReadOnlySetWrapper, SetBinding, SetExpression, SetProperty, SetPropertyBase, SimpleSetProperty

public interface ObservableSet<E> extends Set<E>, Observable
A set that allows observers to track changes when they occur. Implementations can be created using methods in FXCollections such as observableSet, or with a SimpleSetProperty.
Since:
JavaFX 2.1
See Also: