Skip to content

Commit 533dbb8

Browse files
author
Nicolai Parlog
committed
Fixed some comments.
1 parent 9624a1a commit 533dbb8

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <P> IntegerPropertyNestingBuilder(
3737
* Creates a nested property from this builder's settings. This method can be called arbitrarily often and each call
3838
* returns a new instance.
3939
*
40-
* @return a new {@link IntegerProperty} instance with no owning bean, no name and no default value
40+
* @return a new {@link IntegerProperty} instance with no owning bean and no name
4141
*/
4242
public IntegerProperty buildProperty() {
4343
Nesting<IntegerProperty> nesting = buildNesting();

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
* outer -> nested -> inner (which is also nested) <br>
1111
* level 0 -> level 1 -> ...
1212
* <p>
13-
* TODO: nomenclature: "observable" = "observable value"
13+
* TODO (doc): nomenclature: "observable" = "observable value"
1414
* <p>
15-
* TODO: fix names of all generics to some common schema like O(outer) and N(ested)
15+
* TODO (doc): fix names of all generics to some common schema like O(outer) and N(ested)
1616
* <p>
17-
* TODO examples; differences between builder types
17+
* TODO (doc): examples; differences between builder types
1818
* <p>
19-
* TODO comment about nulls (here?)
19+
* TODO (doc): comment about nulls (here?)
2020
*/
2121
public class Nestings {
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public <N> ObjectPropertyNestingBuilder<N> nest(NestingStep<T, Property<N>> nest
7373
* Creates a nested property from this builder's settings. This method can be called arbitrarily often and each call
7474
* returns a new instance.
7575
*
76-
* @return a new {@link NestedProperty} instance with no owning bean, no name and no default value
76+
* @return a new {@link NestedProperty} instance with no owning bean and no name
7777
*/
7878
public NestedProperty<T> buildProperty() {
7979
Nesting<Property<T>> nesting = buildNesting();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/**
2-
* TODO: documentation; primitive specializations of object builders and properties
2+
* TODO (doc): documentation; primitive specializations of object builders and properties
33
*/
44
package org.codefx.libfx.nesting.property;

test/org/codefx/libfx/nesting/property/AbstractNestedIntegerPropertyTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
import javafx.beans.property.SimpleIntegerProperty;
55

66
import org.codefx.libfx.nesting.Nesting;
7-
import org.codefx.libfx.nesting.property.NestedObjectProperty;
87

98
/**
10-
* Abstract superclass to tests for {@link NestedObjectProperty NestedObjectProperties} which only leaves the creation
9+
* Abstract superclass to tests for {@link NestedIntegerProperty NestedIntegerProperty} which only leaves the creation
1110
* of the tested properties (by {@link #createNestedPropertyFromNesting(Nesting)}) to the subclasses.
1211
*/
1312
public abstract class AbstractNestedIntegerPropertyTest extends AbstractNestedPropertyTest<Number, IntegerProperty> {

0 commit comments

Comments
 (0)