PSE 2000 Group 4

Uses of Class
jobmatch.data.CandidateProfileDO

Packages that use CandidateProfileDO
jobmatch.data   
 

Uses of CandidateProfileDO in jobmatch.data
 

Fields in jobmatch.data declared as CandidateProfileDO
protected  CandidateProfileDO CandidateProfileBDO.DO
          The CandidateProfileDO object upon which the set and get methods operate.
 

Methods in jobmatch.data that return CandidateProfileDO
 CandidateProfileDO[] CandidateBDO.getCandidateProfileDOArray()
          Get array of CandidateProfileDO objects that refer to the DO held by this BDO.
 CandidateProfileDO CandidateBDO.getCandidateProfileDO()
          Get the single CandidateProfileDO object that refers to the DO held by this BDO.
 CandidateProfileDO[] ProfileBDO.getCandidateProfileDOArray()
          Get array of CandidateProfileDO objects that refer to the DO held by this BDO.
 CandidateProfileDO ProfileBDO.getCandidateProfileDO()
          Get the single CandidateProfileDO object that refers to the DO held by this BDO.
static CandidateProfileDO CandidateProfileDO.createVirgin()
          createVirgin() Creates a DO that has no ObjectId or data.
static CandidateProfileDO CandidateProfileDO.createExisting(BigDecimal bd)
          createExisting( BigDecimal ) Factory method creates a CandidateProfileDO object by searching for it in the database using the passed BigDecimal value as the primary key.
static CandidateProfileDO CandidateProfileDO.createExisting(String handle)
          The createExisting method is used to create a CandidateProfileDO from a string handle.
protected static CandidateProfileDO CandidateProfileDO.createExisting(jobmatch.data.ObjectId id)
          createExisting( ObjectId ) Factory method creates a CandidateProfileDO object by searching for it in the database using the passed ObjectID value as the primary key.
protected static CandidateProfileDO CandidateProfileDO.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 CandidateProfileDO CandidateProfileDO.createExisting(jobmatch.data.RDBRow row)
          createExisting( RDBRow ) Factory method creates a CandidateProfileDO object by searching for it in the database using the CandidateProfileDO.PrimaryKey value in the passed RDBRow.
protected static CandidateProfileDO CandidateProfileDO.createExisting(jobmatch.data.RDBColumnValue pk)
          createExisting( RDBColumnValue ) Factory method creates a CandidateProfileDO object by searching for it in the database using the passed CandidateProfileDO.PrimaryKey.
static CandidateProfileDO CandidateProfileDO.createCopy(CandidateProfileDataStruct data)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
static CandidateProfileDO CandidateProfileDO.createCopy(CandidateProfileDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
 CandidateProfileDO[] ProfileDO.getCandidateProfileDOArray()
          Get array of CandidateProfileDO objects that refer to this DO.
 CandidateProfileDO ProfileDO.getCandidateProfileDO()
          Get the single CandidateProfileDO object that refers to this DO.
 CandidateProfileDO[] CandidateProfileQuery.getDOArray()
          Return array of DOs constructed from ResultSet returned by query.
 CandidateProfileDO CandidateProfileQuery.getNextDO()
          Return successive DOs from array built from ResultSet returned by query.
 CandidateProfileDO CandidateProfileBDO.getDO()
          Note: This method is intended for use only by other BDO classes.
 CandidateProfileDO[] CandidateDO.getCandidateProfileDOArray()
          Get array of CandidateProfileDO objects that refer to this DO.
 CandidateProfileDO CandidateDO.getCandidateProfileDO()
          Get the single CandidateProfileDO object that refers to this DO.
 

Methods in jobmatch.data with parameters of type CandidateProfileDO
static CandidateProfileDO CandidateProfileDO.createCopy(CandidateProfileDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void CandidateProfileDO.makeIdentical(CandidateProfileDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
 void ProfileDO.addCandidateProfileDO(CandidateProfileDO referrer)
          Add (set & commit) a CandidateProfileDO object that refers to this DO.
 void ProfileDO.addCandidateProfileDO(CandidateProfileDO referrer, jobmatch.data.DBTransaction tran)
          Add (set & commit) a CandidateProfileDO object that refers to this DO.
 void ProfileDO.removeCandidateProfileDO(CandidateProfileDO referrer)
          Remove (delete) a CandidateProfileDO object that refers to this DO.
 void ProfileDO.removeCandidateProfileDO(CandidateProfileDO referrer, jobmatch.data.DBTransaction tran)
          Remove (delete) a CandidateProfileDO object that refers to this DO.
static CandidateProfileBDO CandidateProfileBDO.createExisting(CandidateProfileDO DO)
          The createExisting method is used to create a CandidateProfileBDO from a CandidateProfileDO that was returned by the CandidateProfileQuery class.
 void CandidateDO.addCandidateProfileDO(CandidateProfileDO referrer)
          Add (set & commit) a CandidateProfileDO object that refers to this DO.
 void CandidateDO.addCandidateProfileDO(CandidateProfileDO referrer, jobmatch.data.DBTransaction tran)
          Add (set & commit) a CandidateProfileDO object that refers to this DO.
 void CandidateDO.removeCandidateProfileDO(CandidateProfileDO referrer)
          Remove (delete) a CandidateProfileDO object that refers to this DO.
 void CandidateDO.removeCandidateProfileDO(CandidateProfileDO referrer, jobmatch.data.DBTransaction tran)
          Remove (delete) a CandidateProfileDO object that refers to this DO.
 

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


PSE 2000 Group 4