Exemple #1
0
 public void setGoldBlink(int dwell) {
   goldBlink = true;
   goldOn = true;
   goldTimer.stop();
   goldTimer.setInitialDelay(dwell);
   goldTimer.setDelay(dwell);
   goldTimer.start();
   goldLabel.setOpaque(true);
   colorGoldOn();
 }
Exemple #2
0
 public void setBlueBlink(int dwell) {
   blueBlink = true;
   blueOn = true;
   blueTimer.stop();
   blueTimer.setInitialDelay(dwell);
   blueTimer.setDelay(dwell);
   blueTimer.start();
   blueLabel.setOpaque(true);
   colorBlueOn();
 }