PSE 2000 Group 4

Uses of Class
jobmatch.data.SoftwareDO

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

Uses of SoftwareDO in jobmatch.business.entity
 

Constructors in jobmatch.business.entity with parameters of type SoftwareDO
Software.Software(SoftwareDO dataObject)
           
 

Uses of SoftwareDO in jobmatch.data
 

Fields in jobmatch.data declared as SoftwareDO
protected  SoftwareDO SoftwareBDO.DO
          The SoftwareDO object upon which the set and get methods operate.
 SoftwareDO SoftwareCandidateDataStruct.Software
           
 SoftwareDO SoftwareProfileDataStruct.Software
           
 

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

Methods in jobmatch.data with parameters of type SoftwareDO
 void SoftwareCandidateBDO.setSoftware(SoftwareDO Software)
          Set Software of the SoftwareCandidateDO
protected  void SoftwareCandidateBDO.okToCommitSoftware(SoftwareDO member)
          A stub method for implementing pre-commit assertions for the Software data member.
protected  void SoftwareCandidateBDO.okToDeleteSoftware(SoftwareDO member)
          A stub method for implementing pre-delete assertions for the Software data member.
static SoftwareBDO SoftwareBDO.createExisting(SoftwareDO DO)
          The createExisting method is used to create a SoftwareBDO from a SoftwareDO that was returned by the SoftwareQuery class.
static SoftwareDO SoftwareDO.createCopy(SoftwareDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void SoftwareDO.makeIdentical(SoftwareDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
 void SoftwareCandidateQuery.setQuerySoftware(SoftwareDO x, boolean exact)
          Set the Software to query.
 void SoftwareCandidateQuery.setQuerySoftware(SoftwareDO x)
          Set the Software to query
 void SoftwareProfileDO.setSoftware(SoftwareDO Software)
          Set Software of the SoftwareProfile
protected  void SoftwareProfileDO.okToCommitSoftware(SoftwareDO member)
          A stub method for implementing pre-commit assertions for the Software data member.
protected  void SoftwareProfileDO.okToDeleteSoftware(SoftwareDO member)
          A stub method for implementing pre-delete assertions for the Software data member.
 void SoftwareProfileQuery.setQuerySoftware(SoftwareDO x, boolean exact)
          Set the Software to query.
 void SoftwareProfileQuery.setQuerySoftware(SoftwareDO x)
          Set the Software to query
 void SoftwareProfileBDO.setSoftware(SoftwareDO Software)
          Set Software of the SoftwareProfileDO
protected  void SoftwareProfileBDO.okToCommitSoftware(SoftwareDO member)
          A stub method for implementing pre-commit assertions for the Software data member.
protected  void SoftwareProfileBDO.okToDeleteSoftware(SoftwareDO member)
          A stub method for implementing pre-delete assertions for the Software data member.
 void SoftwareCandidateDO.setSoftware(SoftwareDO Software)
          Set Software of the SoftwareCandidate
protected  void SoftwareCandidateDO.okToCommitSoftware(SoftwareDO member)
          A stub method for implementing pre-commit assertions for the Software data member.
protected  void SoftwareCandidateDO.okToDeleteSoftware(SoftwareDO member)
          A stub method for implementing pre-delete assertions for the Software data member.
 

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


PSE 2000 Group 4