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