@Override public void setRelacionado4(String id, String nome) { try { int idg = Integer.parseInt(id); Grupo g = new Grupo(); g.setId(idg); controlePermissao.popularTabela(jTable1, g, true); } catch (Exception e) { System.err.println("Erro em setRelacionado3: " + e); } }
@Override public void setRelacionado3(String id, String nome) { try { int idusuario = Integer.parseInt(id); Usuario u = new Usuario(); u.setId(idusuario); controlePermissao.popularTabela(jTable1, u, true); } catch (Exception e) { System.err.println("Erro em setRelacionado3: " + e); } } // GEN-LAST:event_btBuscarGrupoActionPerformed
@Override public void setRelacionado2(String id, String nome) { try { btBuscarGrupo.setEnabled(false); qftfIdGrupo.setText("0"); qftfIdUsuario.setText(id); jftfNomeUsuario.setText(nome); int idusuario = Integer.parseInt(id); Usuario u = new Usuario(); u.setId(idusuario); controlePermissao.popularTabela(jTable1, u, false); } catch (Exception e) { System.err.println("Erro em setRelacionado2: " + e); } }
@Override public void setRelacionado1(String id, String nome) { try { btBuscarUsuario.setEnabled(false); qftfIdUsuario.setText("0"); qftfIdGrupo.setText(id); jftfNomeGrupo.setText(nome); int idg = Integer.parseInt(id); Grupo g = new Grupo(); g.setId(idg); controlePermissao.popularTabela(jTable1, g, false); } catch (Exception e) { System.err.println("Erro em setRelacionado1: " + e); } }