package example4_2alternative; /** * This example splits the "main" and "Subject" classes * * It is not complete. */ public class Example { public static void main(String[] ignored) { WalkingSubject ex = new WalkingSubject(); PrintingObserver observer = new PrintingObserver(); ex.run(); } }