private void recordatorioFecha()
{
timerFecha = new Timer();
// Cada 10 segundos actualizara la hora
timerFecha.schedule(new tareaRecordatoriaFecha(), 10000, 10000);
}
class tareaRecordatoriaFecha extends TimerTask
{
/** */
public void run()
{
if (estadoTimerFecha)
labelTuyo.setText(new java.util.Date().toString());
// Termino el timer
else
timerFecha.cancel();
}
}