PSE 2000 Group 4

Uses of Class
jobmatch.data.PersonDO

Packages that use PersonDO
jobmatch.data   
 

Uses of PersonDO in jobmatch.data
 

Fields in jobmatch.data declared as PersonDO
 PersonDO CompanyDataStruct.Contact
           
protected  PersonDO PersonBDO.DO
          The PersonDO object upon which the set and get methods operate.
 

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

Methods in jobmatch.data with parameters of type PersonDO
 void CompanyBDO.setContact(PersonDO Contact)
          Set Contact of the CompanyDO
protected  void CompanyBDO.okToCommitContact(PersonDO member)
          A stub method for implementing pre-commit assertions for the Contact data member.
protected  void CompanyBDO.okToDeleteContact(PersonDO member)
          A stub method for implementing pre-delete assertions for the Contact data member.
 void CompanyDO.setContact(PersonDO Contact)
          Set Contact of the Company
protected  void CompanyDO.okToCommitContact(PersonDO member)
          A stub method for implementing pre-commit assertions for the Contact data member.
protected  void CompanyDO.okToDeleteContact(PersonDO member)
          A stub method for implementing pre-delete assertions for the Contact data member.
 void AdressDO.addPersonDO(PersonDO referrer)
          Add (set & commit) a PersonDO object that refers to this DO.
 void AdressDO.addPersonDO(PersonDO referrer, jobmatch.data.DBTransaction tran)
          Add (set & commit) a PersonDO object that refers to this DO.
 void AdressDO.removePersonDO(PersonDO referrer)
          Remove (delete) a PersonDO object that refers to this DO.
 void AdressDO.removePersonDO(PersonDO referrer, jobmatch.data.DBTransaction tran)
          Remove (delete) a PersonDO object that refers to this DO.
 void CountryDO.addPersonDO(PersonDO referrer)
          Add (set & commit) a PersonDO object that refers to this DO.
 void CountryDO.addPersonDO(PersonDO referrer, jobmatch.data.DBTransaction tran)
          Add (set & commit) a PersonDO object that refers to this DO.
 void CountryDO.removePersonDO(PersonDO referrer)
          Remove (delete) a PersonDO object that refers to this DO.
 void CountryDO.removePersonDO(PersonDO referrer, jobmatch.data.DBTransaction tran)
          Remove (delete) a PersonDO object that refers to this DO.
static PersonDO PersonDO.createCopy(PersonDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void PersonDO.makeIdentical(PersonDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
static PersonBDO PersonBDO.createExisting(PersonDO DO)
          The createExisting method is used to create a PersonBDO from a PersonDO that was returned by the PersonQuery class.
 

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


PSE 2000 Group 4