PSE 2000 Group 4

Uses of Class
jobmatch.data.ProgrammingDO

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

Uses of ProgrammingDO in jobmatch.business.entity
 

Constructors in jobmatch.business.entity with parameters of type ProgrammingDO
Programming.Programming(ProgrammingDO dataObject)
           
 

Uses of ProgrammingDO in jobmatch.data
 

Fields in jobmatch.data declared as ProgrammingDO
protected  ProgrammingDO ProgrammingBDO.DO
          The ProgrammingDO object upon which the set and get methods operate.
 ProgrammingDO ProgrammingProfileDataStruct.Language
           
 ProgrammingDO ProgrammingCandidateDataStruct.Language
           
 

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

Methods in jobmatch.data with parameters of type ProgrammingDO
 void ProgrammingCandidateBDO.setLanguage(ProgrammingDO Language)
          Set Language of the ProgrammingCandidateDO
protected  void ProgrammingCandidateBDO.okToCommitLanguage(ProgrammingDO member)
          A stub method for implementing pre-commit assertions for the Language data member.
protected  void ProgrammingCandidateBDO.okToDeleteLanguage(ProgrammingDO member)
          A stub method for implementing pre-delete assertions for the Language data member.
static ProgrammingBDO ProgrammingBDO.createExisting(ProgrammingDO DO)
          The createExisting method is used to create a ProgrammingBDO from a ProgrammingDO that was returned by the ProgrammingQuery class.
 void ProgrammingProfileDO.setLanguage(ProgrammingDO Language)
          Set Language of the ProgrammingProfile
protected  void ProgrammingProfileDO.okToCommitLanguage(ProgrammingDO member)
          A stub method for implementing pre-commit assertions for the Language data member.
protected  void ProgrammingProfileDO.okToDeleteLanguage(ProgrammingDO member)
          A stub method for implementing pre-delete assertions for the Language data member.
 void ProgrammingCandidateQuery.setQueryLanguage(ProgrammingDO x, boolean exact)
          Set the Language to query.
 void ProgrammingCandidateQuery.setQueryLanguage(ProgrammingDO x)
          Set the Language to query
 void ProgrammingCandidateDO.setLanguage(ProgrammingDO Language)
          Set Language of the ProgrammingCandidate
protected  void ProgrammingCandidateDO.okToCommitLanguage(ProgrammingDO member)
          A stub method for implementing pre-commit assertions for the Language data member.
protected  void ProgrammingCandidateDO.okToDeleteLanguage(ProgrammingDO member)
          A stub method for implementing pre-delete assertions for the Language data member.
 void ProgrammingProfileQuery.setQueryLanguage(ProgrammingDO x, boolean exact)
          Set the Language to query.
 void ProgrammingProfileQuery.setQueryLanguage(ProgrammingDO x)
          Set the Language to query
 void ProgrammingProfileBDO.setLanguage(ProgrammingDO Language)
          Set Language of the ProgrammingProfileDO
protected  void ProgrammingProfileBDO.okToCommitLanguage(ProgrammingDO member)
          A stub method for implementing pre-commit assertions for the Language data member.
protected  void ProgrammingProfileBDO.okToDeleteLanguage(ProgrammingDO member)
          A stub method for implementing pre-delete assertions for the Language data member.
static ProgrammingDO ProgrammingDO.createCopy(ProgrammingDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void ProgrammingDO.makeIdentical(ProgrammingDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
 

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


PSE 2000 Group 4