You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SelectAllRowsShiftFirst.java 398B

123456789101112131415
  1. package com.vaadin.tests.components.table;
  2. public class SelectAllRowsShiftFirst extends SelectAllRows {
  3. @Override
  4. protected String getTestDescription() {
  5. return "Selecting all rows does not work by pressing shift and selecting the first row, and then press shift then select last row";
  6. }
  7. @Override
  8. protected Integer getTicketNumber() {
  9. return 13483;
  10. }
  11. }