package uk.ac.leeds.ccg.andyt.projects.genesis.society.persons; import java.util.Calendar; import uk.ac.leeds.ccg.andyt.projects.genesis.society.environment.Environment; import uk.ac.leeds.ccg.andyt.projects.genesis.society.environment.Location; import uk.ac.leeds.ccg.andyt.projects.genesis.society.organisations.Family; import uk.ac.leeds.ccg.andyt.projects.genesis.society.organisations.Household; import uk.ac.leeds.ccg.andyt.projects.genesis.society.environment.Time; public class Male extends Person { public Male() { } // public Male( // Environment _Environment, // Object _ID, // Calendar _Calendar_Birth) { // this._Environment = _Environment; // this._ID = _ID; // this._Calendar_Birth = _Calendar_Birth; // this._Family = new Family(this); // this._Household = new Household(); // this._Household._Add_Person(this); // } public Male( Environment _Environment, Object _ID, Time _Time_Birth) { this._Environment = _Environment; this._ID = _ID; this._Time_Birth = new Time(_Time_Birth); this._Family = new Family(this); this._Household = new Household(); this._Household._Add_Person(this); } // public Male( // Environment _Environment, // Object _ID, // Calendar _Calendar_Birth, // Household _Household) { // this._Environment = _Environment; // this._ID = _ID; // this._Calendar_Birth = _Calendar_Birth; // this._Family = new Family(this); // this._Household = _Household; // this._Household._Add_Person(this); // } public Male( Environment _Environment, Object _ID, Time _Time_Birth, Household _Household) { this._Environment = _Environment; this._ID = _ID; this._Time_Birth = new Time(_Time_Birth); this._Family = new Family(this); this._Household = _Household; this._Household._Add_Person(this); this._Location = _Household._Location; } public Male( Environment _Environment, Object _ID, Time _Time_Birth, Household _Household, Location _Location) { this._Environment = _Environment; this._ID = _ID; this._Time_Birth = new Time(_Time_Birth); this._Family = new Family(this); this._Household = _Household; this._Household._Add_Person(this); this._Location = _Location; } public int get_Gender() { return 1; } }