PSE 2000 Group 4

Uses of Class
jobmatch.data.SchoolBDO

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

Uses of SchoolBDO in jobmatch.business.entity
 

Subclasses of SchoolBDO in jobmatch.business.entity
 class School
          School Business Object
 

Uses of SchoolBDO in jobmatch.data
 

Methods in jobmatch.data that return SchoolBDO
 SchoolBDO SchoolCandidateBDO.getSchoolBDO()
          Get BDO-wrapped School of the SchoolCandidateDO
 SchoolBDO[] SchooltypeBDO.getSchoolBDOArray()
          Get array of SchoolBDO objects holding SchoolDO objects that refer to the DO held by this BDO.
 SchoolBDO SchooltypeBDO.getSchoolBDO()
          Get the single SchoolBDO object holding a SchoolDO object that refers to the DO held by this BDO.
static SchoolBDO SchoolBDO.createVirgin()
          Like the class SchoolDO, this class acts as a factory.
static SchoolBDO SchoolBDO.createExisting(SchoolDO DO)
          The createExisting method is used to create a SchoolBDO from a SchoolDO that was returned by the SchoolQuery class.
static SchoolBDO[] SchoolBDO.getBDOarray()
          The getBDOarray method performs a database query to return an array of SchoolBDO objects representing all the rows in the School table.
 SchoolBDO[] SchoolQuery.getBDOArray()
          Return array of BDOs constructed from ResultSet returned by query.
 SchoolBDO SchoolQuery.getNextBDO()
          Return successive BDOs from array built from ResultSet returned by query.
 

Methods in jobmatch.data with parameters of type SchoolBDO
 void SchoolCandidateBDO.setSchool(SchoolBDO School)
          Set School of the SchoolCandidateDO
 void SchooltypeBDO.addSchoolBDO(SchoolBDO rbdo)
          Add (set & commit) a SchoolBDO object whose SchoolDO refers to the DO held by this BDO.
 void SchooltypeBDO.addSchoolBDO(SchoolBDO rbdo, jobmatch.data.DBTransaction tran)
          Add (set & commit) a SchoolBDO object whose SchoolDO refers to the DO held by this BDO.
 void SchooltypeBDO.removeSchoolBDO(SchoolBDO rbdo)
          Remove (delete) a SchoolBDO object whose SchoolDO refers to the DO held by this BDO.
 void SchooltypeBDO.removeSchoolBDO(SchoolBDO rbdo, jobmatch.data.DBTransaction tran)
          Remove (delete) a SchoolBDO object whose SchoolDO refers to the DO held by this BDO.
 void GraduationBDO.mapSchool_via_SchoolCandidateBDO(SchoolBDO b)
          To the many-to-many relationship expressed by SchoolCandidateDO, add a SchoolDO object that indirectly refers to the DO held by this BDO.
 void GraduationBDO.mapSchool_via_SchoolCandidateBDO(SchoolBDO b, jobmatch.data.DBTransaction tran)
          To the many-to-many relationship expressed by SchoolCandidateDO, add a SchoolDO object that indirectly refers to the DO held by this BDO.
 void GraduationBDO.unmapSchool_via_SchoolCandidateBDO(SchoolBDO b)
          From the many-to-many relationship expressed by SchoolCandidateDO, remove (delete) the SchoolDO object that indirectly refers to the DO held by this BDO.
 void GraduationBDO.unmapSchool_via_SchoolCandidateBDO(SchoolBDO b, jobmatch.data.DBTransaction tran)
          From the many-to-many relationship expressed by SchoolCandidateDO, remove (delete) the SchoolDO object that indirectly refers to the DO held by this BDO.
 


PSE 2000 Group 4