Examples of Ramo


Examples of br.com.sistelecom.entity.Ramo

    try{
      ps = conn.prepareStatement("select * from ramo");
      rs = ps.executeQuery();
      List<Ramo> list = new ArrayList<Ramo>();
      while(rs.next()) {
        list.add(new Ramo(rs.getInt(1), rs.getString(2)));
      }
      return list;
    } catch (Exception e) {
      e.printStackTrace();
    }
View Full Code Here

Examples of br.com.sistelecom.entity.Ramo

      rs = ps.executeQuery();
      if (!rs.next()) {
        throw new Exception("Não foi encontrado o ramo com esse id: " + id);
      }
     
      Ramo ramo = new Ramo();
      ramo.setIdRamo(id);
      ramo.setNomeRamo(rs.getString(2));
     
      return ramo;
    } catch (Exception e) {
      e.printStackTrace();
    }
View Full Code Here

Examples of br.com.sistelecom.entity.Ramo

 
  public void carregarRegistro(ActionEvent evento) {
    final String id = ((HtmlActionParameter)((HtmlAjaxCommandButton)evento.getSource()).getChildren().get(0)).getValue().toString();
    int idRamo = Integer.parseInt(id);

    final Ramo ramo = this.getDao().obterPorId(idRamo);

    this.getRamo().setIdRamo(ramo.getIdRamo());
    this.getRamo().setNomeRamo(ramo.getNomeRamo());
  }
View Full Code Here

Examples of br.com.sistelecom.entity.Ramo

 
  public void excluirRegistro(ActionEvent evento) {
    final String id = ((HtmlActionParameter)((HtmlAjaxCommandButton)evento.getSource()).getChildren().get(0)).getValue().toString();
    int idRamo = Integer.parseInt(id);
   
    final Ramo ramo = this.getDao().obterPorId(idRamo);
   
    try {
      if(ramo != null){
        this.getDao().excluir(ramo);
        this.listarTodos();
View Full Code Here

Examples of br.com.sistelecom.entity.Ramo

    }
    return true;
  }
 
  public void limpar() {
    this.ramo = new Ramo();
  }
View Full Code Here

Examples of br.com.sistelecom.entity.Ramo

  /**
   * @return the ramo
   */
  public Ramo getRamo() {
    if (this.ramo == null) {
      this.ramo = new Ramo();
    }
    return ramo;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.