// IceCreamConfection: an ice cream-based treat that we can sell public class IceCreamWithNuts extends DecoratedConfection { public IceCreamWithNuts(IceCreamConfection icc) { super(icc); } @Override public String description() { return wrappedItem.description() + " with nuts"; } }