public String helloDecorator() { return StringUtils.substringBefore(helloWorld.helloWorld(), " ") + " Decorator!"; }
@Override public String helloWorld() { return helloWorld.helloWorld(); }