public class Widget{ public synchronized void doSomething(){ System.out.println("this is Widget doSomething!"); } } public class LoggingWidget extends Widget{ public synchronized void doSomething(){ System.out.println("this is LoggingWidget doSomething!"); } }