Package | Description |
---|---|
org.codefx.libfx.nesting |
Provides functionality around nesting hierarchies - a term which is explained in all detail in the comment on
Nesting . |
org.codefx.libfx.nesting.listener |
Contains nested listeners and builders for them.
|
org.codefx.libfx.nesting.property |
Contains the definition for
NestedProperty as well as its
implementations (a generic NestedObjectProperty and
its primitive type wrapping counterparts) and builders for them. |
Modifier and Type | Method and Description |
---|---|
static <O extends javafx.beans.Observable> |
NestingObserver.forNesting(Nesting<O> nesting)
Starts building a new
NestingObserver which observes the specified nesting. |
Modifier and Type | Method and Description |
---|---|
static NestedInvalidationListenerBuilder |
NestedInvalidationListenerBuilder.forNesting(Nesting<?> nesting)
Creates a new builder for the specified nesting.
|
static <T,O extends javafx.beans.value.ObservableValue<T>> |
NestedChangeListenerBuilder.forNesting(Nesting<O> nesting)
Creates a new builder for the specified nesting.
|
Modifier and Type | Method and Description |
---|---|
static NestedBooleanPropertyBuilder |
NestedBooleanPropertyBuilder.forNesting(Nesting<javafx.beans.property.BooleanProperty> nesting)
Creates a new builder which uses the specified nesting.
|
static NestedDoublePropertyBuilder |
NestedDoublePropertyBuilder.forNesting(Nesting<javafx.beans.property.DoubleProperty> nesting)
Creates a new builder which uses the specified nesting.
|
static NestedFloatPropertyBuilder |
NestedFloatPropertyBuilder.forNesting(Nesting<javafx.beans.property.FloatProperty> nesting)
Creates a new builder which uses the specified nesting.
|
static NestedIntegerPropertyBuilder |
NestedIntegerPropertyBuilder.forNesting(Nesting<javafx.beans.property.IntegerProperty> nesting)
Creates a new builder which uses the specified nesting.
|
static NestedLongPropertyBuilder |
NestedLongPropertyBuilder.forNesting(Nesting<javafx.beans.property.LongProperty> nesting)
Creates a new builder which uses the specified nesting.
|
static <T> NestedObjectPropertyBuilder<T> |
NestedObjectPropertyBuilder.forNesting(Nesting<javafx.beans.property.Property<T>> nesting)
Creates a new builder which uses the specified nesting.
|
static NestedStringPropertyBuilder |
NestedStringPropertyBuilder.forNesting(Nesting<javafx.beans.property.StringProperty> nesting)
Creates a new builder which uses the specified nesting.
|
This documentation is licensed under CC-BY 4.0, attributed to Nicolai Parlog from CodeFX.