Name: Anonymous 2011-12-28 22:19
i check mine every night
interface ProstateExaminer {
void examine(Prostate prostate);
ProstateReport reportFindings();
}
class Person {
}
class Female inherits Person {
Uterus uterus;
};
class Male inherits Person {
Prostate prostate;
}
class Doctor inherits Person
implements ProstateExaminer {
void examine(Prostate prostate) {
findings = new ProstateReport("shits fucked bro");
}
ProstateReport reportFindings() {
return findings;
}
ProstateReport findings;
}