Ejemplo n.º 1
0
 private Note getSelectedNote() {
   return tableModel.getNote(table.getSelectedRow());
 }
Ejemplo n.º 2
0
 private void updateControls() {
   Note note = tableModel.getNote(table.getSelectedRow());
   deleteNoteButton.setEnabled(note != null && note.isCustom());
 }