PSE 2000 Group 4

Uses of Class
jobmatch.data.EmployerDO

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

Uses of EmployerDO in jobmatch.business.entity
 

Constructors in jobmatch.business.entity with parameters of type EmployerDO
Employer.Employer(EmployerDO dataObject)
           
 

Uses of EmployerDO in jobmatch.data
 

Fields in jobmatch.data declared as EmployerDO
protected  EmployerDO EmployerBDO.DO
          The EmployerDO object upon which the set and get methods operate.
 EmployerDO EmployerCandidateDataStruct.Employer
           
 

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

Methods in jobmatch.data with parameters of type EmployerDO
 void EmployerCandidateBDO.setEmployer(EmployerDO Employer)
          Set Employer of the EmployerCandidateDO
protected  void EmployerCandidateBDO.okToCommitEmployer(EmployerDO member)
          A stub method for implementing pre-commit assertions for the Employer data member.
protected  void EmployerCandidateBDO.okToDeleteEmployer(EmployerDO member)
          A stub method for implementing pre-delete assertions for the Employer data member.
static EmployerBDO EmployerBDO.createExisting(EmployerDO DO)
          The createExisting method is used to create a EmployerBDO from a EmployerDO that was returned by the EmployerQuery class.
static EmployerDO EmployerDO.createCopy(EmployerDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void EmployerDO.makeIdentical(EmployerDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
 void EmployerCandidateDO.setEmployer(EmployerDO Employer)
          Set Employer of the EmployerCandidate
protected  void EmployerCandidateDO.okToCommitEmployer(EmployerDO member)
          A stub method for implementing pre-commit assertions for the Employer data member.
protected  void EmployerCandidateDO.okToDeleteEmployer(EmployerDO member)
          A stub method for implementing pre-delete assertions for the Employer data member.
 void AdressDO.addEmployerDO(EmployerDO referrer)
          Add (set & commit) a EmployerDO object that refers to this DO.
 void AdressDO.addEmployerDO(EmployerDO referrer, jobmatch.data.DBTransaction tran)
          Add (set & commit) a EmployerDO object that refers to this DO.
 void AdressDO.removeEmployerDO(EmployerDO referrer)
          Remove (delete) a EmployerDO object that refers to this DO.
 void AdressDO.removeEmployerDO(EmployerDO referrer, jobmatch.data.DBTransaction tran)
          Remove (delete) a EmployerDO object that refers to this DO.
 void EmployerCandidateQuery.setQueryEmployer(EmployerDO x, boolean exact)
          Set the Employer to query.
 void EmployerCandidateQuery.setQueryEmployer(EmployerDO x)
          Set the Employer to query
 

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


PSE 2000 Group 4