Ejemplo n.º 1
0
 public void hideBubble() {
     if (!answered) {
         setStatus(SolverStatus.UNSOLVED);
         if (bubble != null) bubble.update();
     }
     if (bubble != null) bubble.hideBubble(5000);
 }
Ejemplo n.º 2
0
 public void setStatus(String label, Icon icon) {
     setStatus(new SolverStatus(label, icon));
     if (bubble != null) bubble.update();
 }