PSE 2000 Group 4

Uses of Class
jobmatch.data.AdressBDO

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

Uses of AdressBDO in jobmatch.business.entity
 

Subclasses of AdressBDO in jobmatch.business.entity
 class Address
          Address Business Object
 

Uses of AdressBDO in jobmatch.data
 

Methods in jobmatch.data that return AdressBDO
 AdressBDO CandidateBDO.getAdressBDO()
          Get BDO-wrapped Adress of the CandidateDO
 AdressBDO CompanyBDO.getAdressBDO()
          Get BDO-wrapped Adress of the CompanyDO
static AdressBDO AdressBDO.createVirgin()
          Like the class AdressDO, this class acts as a factory.
static AdressBDO AdressBDO.createExisting(AdressDO DO)
          The createExisting method is used to create a AdressBDO from a AdressDO that was returned by the AdressQuery class.
static AdressBDO[] AdressBDO.getBDOarray()
          The getBDOarray method performs a database query to return an array of AdressBDO objects representing all the rows in the Adress table.
 AdressBDO[] CountryBDO.getAdressBDOArray()
          Get array of AdressBDO objects holding AdressDO objects that refer to the DO held by this BDO.
 AdressBDO CountryBDO.getAdressBDO()
          Get the single AdressBDO object holding a AdressDO object that refers to the DO held by this BDO.
 AdressBDO EmployerBDO.getAdressBDO()
          Get BDO-wrapped Adress of the EmployerDO
 AdressBDO[] AdressQuery.getBDOArray()
          Return array of BDOs constructed from ResultSet returned by query.
 AdressBDO AdressQuery.getNextBDO()
          Return successive BDOs from array built from ResultSet returned by query.
 AdressBDO PersonBDO.getAdressBDO()
          Get BDO-wrapped Adress of the PersonDO
 

Methods in jobmatch.data with parameters of type AdressBDO
 void CandidateBDO.setAdress(AdressBDO Adress)
          Set Adress of the CandidateDO
 void CompanyBDO.setAdress(AdressBDO Adress)
          Set Adress of the CompanyDO
 void CountryBDO.addAdressBDO(AdressBDO rbdo)
          Add (set & commit) a AdressBDO object whose AdressDO refers to the DO held by this BDO.
 void CountryBDO.addAdressBDO(AdressBDO rbdo, jobmatch.data.DBTransaction tran)
          Add (set & commit) a AdressBDO object whose AdressDO refers to the DO held by this BDO.
 void CountryBDO.removeAdressBDO(AdressBDO rbdo)
          Remove (delete) a AdressBDO object whose AdressDO refers to the DO held by this BDO.
 void CountryBDO.removeAdressBDO(AdressBDO rbdo, jobmatch.data.DBTransaction tran)
          Remove (delete) a AdressBDO object whose AdressDO refers to the DO held by this BDO.
 void EmployerBDO.setAdress(AdressBDO Adress)
          Set Adress of the EmployerDO
 void IndustryBDO.mapAdress_via_CompanyBDO(AdressBDO b)
          To the many-to-many relationship expressed by CompanyDO, add a AdressDO object that indirectly refers to the DO held by this BDO.
 void IndustryBDO.mapAdress_via_CompanyBDO(AdressBDO b, jobmatch.data.DBTransaction tran)
          To the many-to-many relationship expressed by CompanyDO, add a AdressDO object that indirectly refers to the DO held by this BDO.
 void IndustryBDO.unmapAdress_via_CompanyBDO(AdressBDO b)
          From the many-to-many relationship expressed by CompanyDO, remove (delete) the AdressDO object that indirectly refers to the DO held by this BDO.
 void IndustryBDO.unmapAdress_via_CompanyBDO(AdressBDO b, jobmatch.data.DBTransaction tran)
          From the many-to-many relationship expressed by CompanyDO, remove (delete) the AdressDO object that indirectly refers to the DO held by this BDO.
 void PersonBDO.setAdress(AdressBDO Adress)
          Set Adress of the PersonDO
 


PSE 2000 Group 4