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