class Crop{ String name; HashSet spn = new HashSet(); //species number -- unique HashSet geono = new HashSet(); HashSet id = new HashSet(); int wild, bred; //tally the # of species that were recorded as wild or bred (Breeder's Line) float x,y,z; Crop(){ name = ""; wild = 0; bred = 0; } String toString(){ println(name); println("# species:\t" + spn.size()); println("# geono: \t" + geono.size()); //of 3269 println("# accids: \t" + id.size()); println("Wild: \t" + wild); println("Bred: \t" + bred); return(""); } }