PSE 2000 Group 4

Uses of Class
jobmatch.data.CountryBDO

Packages that use CountryBDO
jobmatch.business.entity   
jobmatch.data   
 

Uses of CountryBDO in jobmatch.business.entity
 

Subclasses of CountryBDO in jobmatch.business.entity
 class Country
          Country Business Object
 

Uses of CountryBDO in jobmatch.data
 

Methods in jobmatch.data that return CountryBDO
 CountryBDO CandidateBDO.getNationalityBDO()
          Get BDO-wrapped Nationality of the CandidateDO
 CountryBDO AdressBDO.getCountryBDO()
          Get BDO-wrapped Country of the AdressDO
static CountryBDO CountryBDO.createVirgin()
          Like the class CountryDO, this class acts as a factory.
static CountryBDO CountryBDO.createExisting(CountryDO DO)
          The createExisting method is used to create a CountryBDO from a CountryDO that was returned by the CountryQuery class.
static CountryBDO[] CountryBDO.getBDOarray()
          The getBDOarray method performs a database query to return an array of CountryBDO objects representing all the rows in the Country table.
 CountryBDO PersonalProfileBDO.getNationalityBDO()
          Get BDO-wrapped Nationality of the PersonalProfileDO
 CountryBDO[] CountryQuery.getBDOArray()
          Return array of BDOs constructed from ResultSet returned by query.
 CountryBDO CountryQuery.getNextBDO()
          Return successive BDOs from array built from ResultSet returned by query.
 CountryBDO PersonBDO.getNationalityBDO()
          Get BDO-wrapped Nationality of the PersonDO
 

Methods in jobmatch.data with parameters of type CountryBDO
 void CandidateBDO.setNationality(CountryBDO Nationality)
          Set Nationality of the CandidateDO
 void AdressBDO.setCountry(CountryBDO Country)
          Set Country of the AdressDO
 void PersonalProfileBDO.setNationality(CountryBDO Nationality)
          Set Nationality of the PersonalProfileDO
 void PersonBDO.setNationality(CountryBDO Nationality)
          Set Nationality of the PersonDO
 


PSE 2000 Group 4