public class HomeTheaterUser { public static void main(String[] args) { // Δημιουργία των εξαρτημάτων του υποσυστήματος TheaterLights lights = new TheaterLights(); Projector projector = new Projector(); SoundSystem sound = new SoundSystem(); StreamingPlayer player = new StreamingPlayer(); // Δημιουργία της πρόσοψης HomeTheaterFacade homeTheater = new HomeTheaterFacade(lights, projector, sound, player); // Ο χρήστης με μία μόνο εντολή ξεκινάει την ταινία homeTheater.watchMovie("Inception"); // ... περνάει η ώρα και τελειώνει η ταινία ... // Ο χρήστης κλείνει τα πάντα με μία εντολή homeTheater.endMovie(); } }