Package cl.rivendel.modelo

Examples of cl.rivendel.modelo.Jugador


    btnNuevo.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent arg0) {
        if (!txfJugador.getText().isEmpty()) {

          Jugador jugador = new Jugador();

          jugador.setNombre(txfJugador.getText());

          addJugador(jugador);

        }
      }
View Full Code Here


        jugadoresMesa = new LinkedList<Jugador>();
        mesa.setJugadores(jugadoresMesa);

        for (int j = 0; j < 3; j++) {

          Jugador jugador = jugadores.get(numeroElemento);
          jugadoresMesa.add(jugador);
          numeroElemento++;

        }

        mesas.add(mesa);

      }

      // se reparten los sobrantes
      if (sobras > 0) {

        for (int i = 0; i < totalMesas; i++) {
          mesa = mesas.get(i);

          jugadoresMesa = mesa.getJugadores();

          Jugador jugador = jugadores.get(numeroElemento);
          jugadoresMesa.add(jugador);
          numeroElemento++;
          if (numeroElemento == numeroJugadores) {
            break;
          }
View Full Code Here

    btnAgregar.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent arg0) {
        if (!txtJugador.getText().isEmpty()) {

          Jugador jugador = new Jugador();

          jugador.setNombre(txtJugador.getText());

          addJugador(jugador);

          txtJugador.setText("");
View Full Code Here

TOP

Related Classes of cl.rivendel.modelo.Jugador

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.