Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Odkurzacz extends Urzadzenie {
- private boolean czyWlaczony = false;
- public void on() {
- if (!czyWlaczony) {
- czyWlaczony = true;
- this.wyswietlKomunikat("Odkurzacz włączony");
- }
- }
- public void off() {
- if (czyWlaczony) {
- czyWlaczony = false;
- this.wyswietlKomunikat("Odkurzacz wyłączony");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement