We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56d4914 commit 652087bCopy full SHA for 652087b
src/main/java/rx/javafx/sources/CompositeObservable.java
@@ -16,6 +16,7 @@
16
package rx.javafx.sources;
17
18
import javafx.collections.FXCollections;
19
+import javafx.collections.ObservableList;
20
import javafx.collections.ObservableSet;
21
import rx.Observable;
22
import rx.observables.JavaFxObservable;
@@ -71,5 +72,7 @@ public void removeAll(Observable<T>... observables) {
71
72
public void clear() {
73
sources.clear();
74
}
-
75
+ public ObservableSet<Observable<T>> getBackingSet() {
76
+ return FXCollections.unmodifiableObservableSet(sources);
77
+ }
78
0 commit comments