するとあら不思議、デコレーターパターンに大変身
public class Main { public static void main(String[] args) { Foo foo = new FooLogger(new FooImpl()); foo.foo(); foo.bar(); foo.baz(); } }