Skip to content

Commit 218ca3e

Browse files
author
Nicolai Parlog
committed
Fixed two comments.
1 parent b0a5d5a commit 218ca3e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/org/codefx/libfx/nesting/ShallowNesting.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ final class ShallowNesting<O extends Observable> implements Nesting<O> {
2222
private final ReadOnlyProperty<Optional<O>> inner;
2323

2424
/**
25-
* Creates a new shallow nesting whose {@link #innerObservable} property always holds the specified outer
26-
* observable.
25+
* Creates a new shallow nesting whose {@link #innerObservableProperty() innerObservable} property always holds the
26+
* specified outer observable.
2727
*
2828
* @param outerObservable
2929
* the {@link Observable} on which this nesting depends

src/org/codefx/libfx/nesting/property/NestedProperty.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
* property's value changes to the new observable's value. Like all other value changes this one also results in calling
1414
* all change listeners. If the new observable is null, the property keeps its value and no change listener is called.
1515
* <h2>Inner Observable Holds Null</h2> It is possible that a nesting's inner observable holds null (see class comment
16-
* in {@link Nesting}). In that case the {@link NestedProperty#innerObservableNull() innerObservableNull} property is
17-
* true and changes made to this property's value can not be propagated to another property. If the inner observable
16+
* in {@link Nesting}). In that case the {@link NestedProperty#innerObservablePresent() innerObservablePresent} property
17+
* is true and changes made to this property's value can not be propagated to another property. If the inner observable
1818
* changes back to a non-null value, everything said above applies.
1919
*
2020
* @param <T>

0 commit comments

Comments
 (0)