--- old/modules/javafx.controls/src/main/java/javafx/scene/control/MultipleSelectionModel.java 2017-03-09 14:44:24.558173678 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/MultipleSelectionModel.java 2017-03-09 14:44:24.446173676 -0800 @@ -118,6 +118,7 @@ * ObservableList will be updated by the selection model to always reflect * changes in selection. This can be observed by adding a * {@link ListChangeListener} to the returned ObservableList. + * @return the list of selected indices */ public abstract ObservableList getSelectedIndices(); @@ -126,6 +127,7 @@ * ObservableList will be updated further by the selection model to always reflect * changes in selection. This can be observed by adding a * {@link ListChangeListener} to the returned ObservableList. + * @return the list of selected items */ public abstract ObservableList getSelectedItems(); @@ -141,6 +143,8 @@ * *

The last valid value given will become the selected index / selected * item. + * @param index the selected index + * @param indices the selected indices */ public abstract void selectIndices(int index, int... indices); @@ -148,7 +152,7 @@ *

Selects all indices from the given start index to the item before the * given end index. This means that the selection is inclusive of the start * index, and exclusive of the end index. This method will work regardless - * of whether start < end or start > end: the only constant is that the + * of whether start < end or start > end: the only constant is that the * index before the given end index will become the selected index. * *

If there is already one or more indices selected in this model, calling