< prev index next >

functional/ControlsTests/test/javafx/scene/control/test/util/MultipleSelectionHelper.java

Print this page

        

@@ -58,10 +58,18 @@
     public MultipleSelectionHelper(int columns, int rows) {
         this.rows = rows;
         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
      * area must be passed as argument.
      *
< prev index next >