public String toString()

in cafe/src/main/java/org/apache/camel/example/cafe/OrderItem.java [55:57]


    public String toString() {
        return ((this.iced) ? "iced " : "hot ") + this.shots + " shot " + this.type;
    }