package com.thoughtworks.acceptance.someobjects.somemoreobjects; /** * * @author greg * @author $Author: $ (last edit) * @version $Revision: $ */ public class Fruit { private String color; private String shape; public Fruit(String color, String shape) { this.color = color; this.shape = shape; } public String getColor() { return color; } public String getShape() { return shape; } }