PSE 2000 Group 4

Uses of Class
jobmatch.data.SchoolDO

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

Uses of SchoolDO in jobmatch.business.entity
 

Constructors in jobmatch.business.entity with parameters of type SchoolDO
School.School(SchoolDO dataObject)
           
 

Uses of SchoolDO in jobmatch.data
 

Fields in jobmatch.data declared as SchoolDO
protected  SchoolDO SchoolBDO.DO
          The SchoolDO object upon which the set and get methods operate.
 SchoolDO SchoolCandidateDataStruct.School
           
 

Methods in jobmatch.data that return SchoolDO
 SchoolDO SchoolCandidateBDO.getSchool()
          Get School of the SchoolCandidateDO
 SchoolDO[] SchooltypeBDO.getSchoolDOArray()
          Get array of SchoolDO objects that refer to the DO held by this BDO.
 SchoolDO SchooltypeBDO.getSchoolDO()
          Get the single SchoolDO object that refers to the DO held by this BDO.
 SchoolDO[] GraduationBDO.getSchoolDOArray_via_SchoolCandidate()
          From the many-to-many relationship expressed by SchoolCandidateDO, get array of SchoolDO objects that indirectly refer to the DO held by this BDO.
 SchoolDO SchoolBDO.getDO()
          Note: This method is intended for use only by other BDO classes.
 SchoolDO[] GraduationDO.getSchoolDOArray_via_SchoolCandidate()
          From the many-to-many relationship expressed by SchoolCandidateDO, get array of SchoolDO objects that indirectly refer to this DO.
 SchoolDO[] SchooltypeDO.getSchoolDOArray()
          Get array of SchoolDO objects that refer to this DO.
 SchoolDO SchooltypeDO.getSchoolDO()
          Get the single SchoolDO object that refers to this DO.
static SchoolDO SchoolDO.createVirgin()
          createVirgin() Creates a DO that has no ObjectId or data.
static SchoolDO SchoolDO.createExisting(BigDecimal bd)
          createExisting( BigDecimal ) Factory method creates a SchoolDO object by searching for it in the database using the passed BigDecimal value as the primary key.
static SchoolDO SchoolDO.createExisting(String handle)
          The createExisting method is used to create a SchoolDO from a string handle.
protected static SchoolDO SchoolDO.createExisting(jobmatch.data.ObjectId id)
          createExisting( ObjectId ) Factory method creates a SchoolDO object by searching for it in the database using the passed ObjectID value as the primary key.
protected static SchoolDO SchoolDO.createExisting(ResultSet rs)
          createExisting( ResultSet ) Factory method used to create an instance of this class to represent a Data Object already existing in the database.
protected static SchoolDO SchoolDO.createExisting(jobmatch.data.RDBRow row)
          createExisting( RDBRow ) Factory method creates a SchoolDO object by searching for it in the database using the SchoolDO.PrimaryKey value in the passed RDBRow.
protected static SchoolDO SchoolDO.createExisting(jobmatch.data.RDBColumnValue pk)
          createExisting( RDBColumnValue ) Factory method creates a SchoolDO object by searching for it in the database using the passed SchoolDO.PrimaryKey.
static SchoolDO SchoolDO.createCopy(SchoolDataStruct data)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
static SchoolDO SchoolDO.createCopy(SchoolDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
 SchoolDO SchoolCandidateDO.getSchool()
          Get School of the SchoolCandidate
 SchoolDO[] SchoolQuery.getDOArray()
          Return array of DOs constructed from ResultSet returned by query.
 SchoolDO SchoolQuery.getNextDO()
          Return successive DOs from array built from ResultSet returned by query.
 

Methods in jobmatch.data with parameters of type SchoolDO
 void SchoolCandidateBDO.setSchool(SchoolDO School)
          Set School of the SchoolCandidateDO
protected  void SchoolCandidateBDO.okToCommitSchool(SchoolDO member)
          A stub method for implementing pre-commit assertions for the School data member.
protected  void SchoolCandidateBDO.okToDeleteSchool(SchoolDO member)
          A stub method for implementing pre-delete assertions for the School data member.
 void GraduationBDO.mapSchool_via_SchoolCandidateDO(SchoolDO d)
          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_SchoolCandidateDO(SchoolDO d, 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_SchoolCandidateDO(SchoolDO d)
          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_SchoolCandidateDO(SchoolDO d, 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.
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.
 void SchoolCandidateQuery.setQuerySchool(SchoolDO x, boolean exact)
          Set the School to query.
 void SchoolCandidateQuery.setQuerySchool(SchoolDO x)
          Set the School to query
 void GraduationDO.mapSchool_via_SchoolCandidateDO(SchoolDO d)
          To the many-to-many relationship expressed by SchoolCandidateDO, add a SchoolDO object that indirectly refers to this DO.
 void GraduationDO.mapSchool_via_SchoolCandidateDO(SchoolDO d, jobmatch.data.DBTransaction tran)
          To the many-to-many relationship expressed by SchoolCandidateDO, add a SchoolDO object that indirectly refers to this DO.
 void GraduationDO.unmapSchool_via_SchoolCandidateDO(SchoolDO d)
          From the many-to-many relationship expressed by SchoolCandidateDO, remove (delete) the SchoolDO object that indirectly refers to this DO.
 void GraduationDO.unmapSchool_via_SchoolCandidateDO(SchoolDO d, jobmatch.data.DBTransaction tran)
          From the many-to-many relationship expressed by SchoolCandidateDO, remove (delete) the SchoolDO object that indirectly refers to this DO.
 void SchooltypeDO.addSchoolDO(SchoolDO referrer)
          Add (set & commit) a SchoolDO object that refers to this DO.
 void SchooltypeDO.addSchoolDO(SchoolDO referrer, jobmatch.data.DBTransaction tran)
          Add (set & commit) a SchoolDO object that refers to this DO.
 void SchooltypeDO.removeSchoolDO(SchoolDO referrer)
          Remove (delete) a SchoolDO object that refers to this DO.
 void SchooltypeDO.removeSchoolDO(SchoolDO referrer, jobmatch.data.DBTransaction tran)
          Remove (delete) a SchoolDO object that refers to this DO.
static SchoolDO SchoolDO.createCopy(SchoolDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void SchoolDO.makeIdentical(SchoolDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
 void SchoolCandidateDO.setSchool(SchoolDO School)
          Set School of the SchoolCandidate
protected  void SchoolCandidateDO.okToCommitSchool(SchoolDO member)
          A stub method for implementing pre-commit assertions for the School data member.
protected  void SchoolCandidateDO.okToDeleteSchool(SchoolDO member)
          A stub method for implementing pre-delete assertions for the School data member.
 

Constructors in jobmatch.data with parameters of type SchoolDO
SchoolBDO.SchoolBDO(SchoolDO DO)
          Constructor for use by classes derived from SchoolBDO.
 


PSE 2000 Group 4