Biblioteca Java - Blame information for rev 25
Subversion Repositories:
Rev | Author | Line No. | Line |
---|---|---|---|
25 | mihai | 1 | public class Main { |
2 | private static final int noOfThreads = 4; | ||
3 | private static final int processorLoad = 1000000; | ||
4 | |||
5 | public static void main(String args[]) { | ||
6 | Window win = new Window(noOfThreads); | ||
7 | for (int i = 0; i < noOfThreads; i++) { | ||
8 | Fir f = new Fir(i, i + 2, processorLoad); | ||
9 | f.addObserver(win); | ||
10 | } | ||
11 | } | ||
12 | } |