Biblioteca Java - Blame information for rev 4
Subversion Repositories:
Rev | Author | Line No. | Line |
---|---|---|---|
4 | mihai | 1 | package oop.controltemperatura; |
2 | |||
3 | |||
4 | public class Test { | ||
5 | public static void main(String[] args){ | ||
6 | AgregatIncalizre a1 = new AgregatIncalizre(); | ||
7 | AngregatRacire a2 = new AngregatRacire(); | ||
8 | SenzorTemperatura st = new SenzorTemperatura(); | ||
9 | Termostat tr = new Termostat(); | ||
10 | TermostatUI tui = new TermostatUI(tr); | ||
11 | tui.setVisible(true); | ||
12 | |||
13 | Controler c = new Controler(a1, a2, st, tr, tui); | ||
14 | c.control(); | ||
15 | |||
16 | } | ||
17 | } |