public void actionPerformed(ActionEvent e) {
JXTable table = UsuarioSearch.getInstance().getTable();
try {
Usuario user = (Usuario) table.getValueAt(table.getSelectedRow(),
-1);
Integer action = ConfirmationView.showDeleteConfirmation("Excluir este usu�rio?");
switch (action) {
case ConfirmViewAction.YES:
UsuarioDataServices.removeUsuario(user.getId());
((UsuarioTableModel) table.getModel()).removeItem(user);
// // Salva a lista atualizada no Cache
// ((UsuarioTableModel) UsuarioSearch.getInstance()
// .getTableModel()).saveCache(UsuarioSearch.getInstance()