
public class Plant {
  String name;

  public Plant(String pname) { name = pname; }
  public String getName() { return name; }
}
