Package GestorEquipos

Examples of GestorEquipos.Equipo


     * @param equipo
     */
    public Equipo consultarEquipo(String[] s){
        String nombre = s[0];
        String cat = s[1];
        Equipo eq = null;

        /*if (s[1].equals("Benjamin")){
            cat = Categoria.Benjamin;
        } else if(s[1].equals("Alevin")){
            cat = Categoria.Alevin;
View Full Code Here


   * @param Estadisticas
   */
  public boolean consultarActa(Integer partidoSeleccionado){

            Integer idPartido = this.partidos[partido_activo].getIdPartido();
            Equipo local = EquipoBD.getIntance().getEquipo(partidos[partido_activo].getIdLocal());
            Equipo visitante = EquipoBD.getIntance().getEquipo(partidos[partido_activo].getIdVisitante());
            ArrayList <Juega> plantillaLocal = EquipoBD.getIntance().getJugadores_Asignados(local);
            ArrayList <Juega> plantillaVisit = EquipoBD.getIntance().getJugadores_Asignados(visitante);
           
            if(! plantillaLocal.isEmpty()){// Si se ha encontrado plantilla  <<---
                // MOSTRAR TODOS LOS JUGADORES ENCONTRADAS EN LA TABLA JUGADORES LOCALES
View Full Code Here

            Boolean estado = null;
            if(datos[3].equals("activo"))
                estado = true;
            else if (datos[3].equals("baja"))
                estado = false;
            Equipo eq = new Equipo(nombre, cat, gen,estado);   // Creamos el objeto
            try {
                eq = EquipoBD.getIntance().addEquipo(eq);       // Añadimos el objeto a la BD 
                equipos.add(eq);
                equipoActivo = 0;
            } catch (Exception e) {
View Full Code Here

                    estado = false;
            }    
            else
                estado = equipos.get(equipoActivo).getEstado();
           
            Equipo eq = new Equipo(nombre, cat, gen, estado);       // Crear el objeto
            eq.setIdEquipo(equipos.get(equipoActivo).getIdEquipo());
           
            try {
                 modificado = EquipoBD.getIntance().updateEquipo(eq);
                 equipos.set(equipoActivo, eq);
            } catch (Exception e) {
View Full Code Here

         */
       
        
        public void add_Jugador_Equipo(int dorsal, int pos_jug){
            
            Equipo equi = equipos.get(equipoActivo);
          
            Jugador juga = jug_libres.get(pos_jug);

            Juega  jueg = new Juega(dorsal, equi, juga);
                  
View Full Code Here

           
           
           // int idEquipo = equipos.get(equipoActivo).getIdEquipo();
            //Equipo equip = EquipoBD.getIntance().getEquipo(idEquipo);
              
            Equipo equip = equipos.get(equipoActivo);

            jug_libres = EquipoBD.getIntance().getJugadores_Libres(equip);

            jug_asignados = EquipoBD.getIntance().getJugadores_Asignados(equip);
             
View Full Code Here

TOP

Related Classes of GestorEquipos.Equipo

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.