View difference between Paste ID: UYqwaVif and qExeQbrz
SHOW: | | - or go back to the newest paste.
1-
public class Pralka extends Urzadzenie {
1+
public class Odkurzacz extends Urzadzenie {
2-
    private static int wybranyProgram = 0;
2+
    private boolean czyWlaczony = false;
3
4-
    public int ustawProgram(int program) {
4+
    public void on() {
5-
        if(program >= 1 && program <= 12) {
5+
        if (!czyWlaczony) {
6-
            wybranyProgram = program;
6+
            czyWlaczony = true;
7-
        } else {
7+
            this.wyswietlKomunikat("Odkurzacz włączony");
8-
            wybranyProgram = 0;
8+
9
    }
10-
        return wybranyProgram;
10+
11
    public void off() {
12
        if (czyWlaczony) {
13
            czyWlaczony = false;
14
            this.wyswietlKomunikat("Odkurzacz wyłączony");
15
        }
16
    }
17
}
18