]> git.llucax.com Git - z.facultad/75.62/c2tp1.git/blob - src/Sorteo.java
MVC en 4.3
[z.facultad/75.62/c2tp1.git] / src / Sorteo.java
1
2 import java.util.*;
3 import java.lang.Thread;
4
5 public class Sorteo extends Observable
6 {
7         Random r = new Random ();
8         int n;
9
10         public Sorteo ()
11         {
12         }
13
14         public int getN()
15         {
16                 return n;
17         }
18
19         public void Go ()
20         {
21                 while (true) {
22                         /* Uso rango de 0 a 100 para que salga alguna vez :P */
23                         n = r.nextInt (100);
24                         setChanged ();
25                         notifyObservers ();
26                         try {
27                                 Thread.sleep (500);
28                         }
29                         catch (Exception e) {}
30                 }
31         }
32 }
33