Skip to content
miguelperezcolom edited this page Sep 22, 2024 · 2 revisions

For deleting records from a crud you must override the method delete in the class implementing the Crud interface.

E.g.:

  @Override
  public void delete(List<LanguageRow> selection) {
    repo.removeAll(selection);
  }

Please note that you receive a list of the selected rows as the parameter.

Clone this wiki locally