PSE 2000 Group 4

Uses of Class
jobmatch.data.ProgrammingProfileDO

Packages that use ProgrammingProfileDO
jobmatch.data   
 

Uses of ProgrammingProfileDO in jobmatch.data
 

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

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

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

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


PSE 2000 Group 4