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 78d26e6 commit c036b38Copy full SHA for c036b38
src/org/codefx/libfx/nesting/property/NestedProperty.java
@@ -2,7 +2,6 @@
2
3
import javafx.beans.property.Property;
4
5
-import org.codefx.libfx.nesting.Nested;
6
import org.codefx.libfx.nesting.Nesting;
7
8
/**
@@ -21,6 +20,6 @@
21
20
* @param <T>
22
* the type of the value wrapped by the property
23
*/
24
-public interface NestedProperty<T> extends Nested, Property<T> {
+public interface NestedProperty<T> extends Property<T>, ReadOnlyNestedProperty<T> {
25
// no additional members defined
26
}
0 commit comments