/**
* @author Suzanne Balik, 19 Apr 2003
*/
public class Patient {
private String name;
private String symptoms;
public Patient(String name, String symptoms) {
this.name = name;
this.symptoms = symptoms;
}
public String toString() {
return name + "\t" + symptoms;
}
}