PSE 2000 Group 4

Uses of Class
jobmatch.data.SoftwareProfileDO

Packages that use SoftwareProfileDO
jobmatch.data   
 

Uses of SoftwareProfileDO in jobmatch.data
 

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

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

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

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


PSE 2000 Group 4