--- old/modules/javafx.base/src/main/java/javafx/beans/binding/ListExpression.java 2016-08-08 12:10:05.000000000 -0700 +++ new/modules/javafx.base/src/main/java/javafx/beans/binding/ListExpression.java 2016-08-08 12:10:05.000000000 -0700 @@ -70,6 +70,7 @@ * {@link javafx.beans.binding.ListBinding} is created that is bound to * the {@code ObservableListValue}. * + * @param the type of the wrapped {@code List} * @param value * The source {@code ObservableListValue} * @return A {@code ListExpression} that wraps the @@ -106,6 +107,7 @@ /** * The size of the list + * @return the size */ public int getSize() { return size(); @@ -119,6 +121,8 @@ /** * A boolean property that is {@code true}, if the list is empty. + * @return the {@code ReadOnlyBooleanProperty} + * */ public abstract ReadOnlyBooleanProperty emptyProperty();