public class ConcreteDecoratorA extends Decorator { private String addedState; public void operation() { super.operation(); addedState = "new state"; System.out.println("ConcreteDecoratorA operation()\bh"); } }