Пример #1
0
 private void removeEditor(ValueEditor<O> editor) {
   int index = currentEditors.indexOf(editor);
   if (index == -1) {
     return;
   }
   currentEditors.remove(editor);
   tableField.removeRow(index);
 }