1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
public class DigitBox{
private Clignoteur cligne;
private boolean çaNeClignotePas;
public DigitBox() {
je fais la Digit Box qui regroupe les Digits etc...
çaNeClignotePas=true;
}//fin DigitBox
public void clignoter(){
if(çaNeClignotePas){
çaNeClignotePas=false;
cligne = new Clignoteur();
cligne.start();
}
else{
cligne.arret();
çaNeClignotePas=true;
}
}//fin clignoter
}//fin de class DigitBox
class Clignoteur extends Thread{
private boolean tantQuOnVeutClignoter
public clignoteur(){
creation du clignoteur...
tantQuOnVeutClignoter=true;
}//fin Clignoteur
public void run(){
while(tantQuOnVeutClignoter){
instruction pour clignoter
}
}//fin de run()
public void arret(){
tantQuOnVeutClignoter=false;
}//fin arret
}//fin de class Clignoteur |
Partager