Package | Description |
---|---|
org.codefx.libfx.nesting |
Provides functionality around nesting hierarchies - a term which is explained in all detail in the comment on
Nesting . |
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. |
NestingObserver.NestingObserverBuilder<O> |
NestingObserver.NestingObserverBuilder.whenInnerObservableChanges(BiConsumer<Boolean,Boolean> innerObservableChanges)
The specified method will be executed when the
innerObservable
changes. |
NestingObserver.NestingObserverBuilder<O> |
NestingObserver.NestingObserverBuilder.withNewInnerObservable(Consumer<? super O> newInnerObservableConsumer)
The specified method will be executed when the
innerObservable
changes and the new observable is present. |
NestingObserver.NestingObserverBuilder<O> |
NestingObserver.NestingObserverBuilder.withOldInnerObservable(Consumer<? super O> oldInnerObservableConsumer)
The specified method will be executed when the
innerObservable
changes and the old observable was present. |
This documentation is licensed under CC-BY 4.0, attributed to Nicolai Parlog from CodeFX.