--- old/functional/ControlsTests/test/javafx/scene/control/test/util/MultipleSelectionHelper.java 2016-12-09 13:28:08.390730150 +0300 +++ new/functional/ControlsTests/test/javafx/scene/control/test/util/MultipleSelectionHelper.java 2016-12-09 13:28:08.338729682 +0300 @@ -41,7 +41,7 @@ * @author Oleg Barbashov, Alexander Kirov */ public class MultipleSelectionHelper { - + public Point focus = new Point(-1, 0); public Point anchor = null; public boolean multiple = false; @@ -60,6 +60,14 @@ this.columns = columns; } + public void setColumnsNum(int columns) { + this.columns = columns; + } + + public void setRowsNum(int rows) { + this.rows = rows; + } + /** * ALARM: must be called before pushing key combination, from code, which * knows, how to understand, which area is visible now. And this visible @@ -585,13 +593,13 @@ this.begin = begin; this.end = end; } - + @Override public String toString() { return "Range : begin <" + begin + ">, end <" + end + ">."; } } - + public static class ListViewMultipleSelectionHelper extends MultipleSelectionHelper { public ListViewMultipleSelectionHelper(int columns, int rows) {