--- old/modules/javafx.controls/src/main/java/javafx/scene/control/TablePositionBase.java 2017-03-09 14:44:34.406173852 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/TablePositionBase.java 2017-03-09 14:44:34.286173850 -0800 @@ -89,6 +89,7 @@ /** * The row that this TablePosition represents in the TableView. + * @return the row that this TablePosition represents in the TableView */ public int getRow() { return row; @@ -97,11 +98,14 @@ /** * The column index that this TablePosition represents in the TableView. It * is -1 if the TableView or TableColumn instances are null. + * @return the column index that this TablePosition represents in the + * TableView */ public abstract int getColumn(); /** * The TableColumn that this TablePosition represents in the TableView. + * @return the TableColumn that this TablePosition represents in the TableView */ public TC getTableColumn() { return tableColumnRef.get();