Beispiel #1
0
 public void stopBlink() {
   if (blinker != null) {
     blinker.stopit();
     blinker = null;
     lblTitle.setForeground(Color.BLACK);
   }
 }
Beispiel #2
0
 public synchronized void startBlink() {
   if (blinker == null) {
     blinker = new Blinker(500);
     blinker.start();
   }
 }