Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/05/2015, 02:26
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 9 años, 8 meses
Puntos: 182
Respuesta: actualizar un jtable en un tiempo "x"

Buenas,

No entiendo. Al principio comentas que te has creado una clase Timer con un metodo correr().

Sin embargo, luego en realidad utilizas el Timer Swing (javax.swing.Timer) que yo te habia recomendado y no el tuyo:
Código Java:
Ver original
  1. timer = new Timer(delay, action);
  2. timer.setInitialDelay(0);
  3. timer.start();

EDITO: ah OK ya lo he visto. Has creado una clase Timer que hacer de wrapper del Time de Swing.


Un saludo
__________________
If to err is human, then programmers are the most human of us