Ver Mensaje Individual
  #6 (permalink)  
Antiguo 29/04/2011, 12:59
Avatar de RIVERMILLOS
RIVERMILLOS
 
Fecha de Ingreso: marzo-2010
Mensajes: 1.336
Antigüedad: 14 años, 8 meses
Puntos: 15
Respuesta: Como manipular array de Jbuttons de una clase en otra.?

ya lo probe y funciono como dices el problema creo que es como utilizo la clase.

Código java:
Ver original
  1. public void init(int time){
  2.         time=time*60000;    
  3.         timer = new Timer (time, new ActionListener()
  4.          {          
  5.                 public void actionPerformed(ActionEvent e)
  6.                 {
  7.                   if(ca==1){
  8.                   timer.stop();
  9.                   }
  10.                   ca++;
  11.                   while(true){
  12.                     try {
  13.                         rando=new Random();
  14.                         int x = rando.nextInt(5);
  15.                         int pc=pcs[x];
  16.                         Move move=new Move(red,pc,rando.nextBoolean());
  17.                         move.start();
  18.                         Thread.sleep(20000);
  19.                     }catch (InterruptedException ex) {
  20.                         Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
  21.                     }
  22.                   }
  23.  
  24.                  
  25.                 }
  26.                
  27.             });
  28.         timer.start();
  29.      }


Asi creo un objeto cada 20 segundo .... creo que es por eso pero no sabria que hacer en este caso.


saludos