Examples of Categoria


Examples of GestorEquipos.Categoria

    public Boolean modificarEquipo(Equipo eq, String[] s){
        String nombre_equipo = null;
        if (s[0] != null)
            nombre_equipo = s[0];           // Obtenemos el nombre del equipo
       
        Categoria cat = null;               // Obtenemos la categoria del equipo
        if (s[1] != null) {
            if (s[1].equals("Benjamin")){
                cat = Categoria.Benjamin;
            } else if(s[1].equals("Alevin")){
                cat = Categoria.Alevin;
View Full Code Here

Examples of br.edu.puc.campinas.si.pw.pucstore.model.Categoria

  }

  @Override
  public Categoria popularEntidade(ResultSet rs) throws Exception {
   
    Categoria cat = new Categoria();
    cat.setCodCategoria(rs.getInt("cod_categoria"));
    cat.setDescricao(rs.getString("descricao"));
    cat.setCategoriaMae(rs.getInt("categoria_mae"));
   
    return cat;
  }
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.