public class Demo { public static void main(String[] args) { SomeClass a = new SomeClass(); a.method1(); a.method2(); NewClass b = new NewClass(); b.method1(); // Trace this with BlueJ b.method2(); // Trace this with BlueJ } }