PSE 2000 Group 4

Uses of Class
jobmatch.data.PersonalProfileDO

Packages that use PersonalProfileDO
jobmatch.data   
 

Uses of PersonalProfileDO in jobmatch.data
 

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

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

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

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


PSE 2000 Group 4