Package GestorEquipos

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

TOP

Related Classes of GestorEquipos.Categoria

Copyright © 2018 www.massapicom. 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.