PSE 2000 Group 4

Uses of Class
jobmatch.data.PictureDO

Packages that use PictureDO
jobmatch.data   
 

Uses of PictureDO in jobmatch.data
 

Fields in jobmatch.data declared as PictureDO
protected  PictureDO PictureBDO.DO
          The PictureDO object upon which the set and get methods operate.
 PictureDO CandidateDataStruct.Picture
           
 PictureDO PersonDataStruct.Picture
           
 

Methods in jobmatch.data that return PictureDO
 PictureDO CandidateBDO.getPicture()
          Get Picture of the CandidateDO
 PictureDO[] PictureQuery.getDOArray()
          Return array of DOs constructed from ResultSet returned by query.
 PictureDO PictureQuery.getNextDO()
          Return successive DOs from array built from ResultSet returned by query.
 PictureDO PictureBDO.getDO()
          Note: This method is intended for use only by other BDO classes.
static PictureDO PictureDO.createVirgin()
          createVirgin() Creates a DO that has no ObjectId or data.
static PictureDO PictureDO.createExisting(BigDecimal bd)
          createExisting( BigDecimal ) Factory method creates a PictureDO object by searching for it in the database using the passed BigDecimal value as the primary key.
static PictureDO PictureDO.createExisting(String handle)
          The createExisting method is used to create a PictureDO from a string handle.
protected static PictureDO PictureDO.createExisting(jobmatch.data.ObjectId id)
          createExisting( ObjectId ) Factory method creates a PictureDO object by searching for it in the database using the passed ObjectID value as the primary key.
protected static PictureDO PictureDO.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 PictureDO PictureDO.createExisting(jobmatch.data.RDBRow row)
          createExisting( RDBRow ) Factory method creates a PictureDO object by searching for it in the database using the PictureDO.PrimaryKey value in the passed RDBRow.
protected static PictureDO PictureDO.createExisting(jobmatch.data.RDBColumnValue pk)
          createExisting( RDBColumnValue ) Factory method creates a PictureDO object by searching for it in the database using the passed PictureDO.PrimaryKey.
static PictureDO PictureDO.createCopy(PictureDataStruct data)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
static PictureDO PictureDO.createCopy(PictureDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
 PictureDO PersonDO.getPicture()
          Get Picture of the Person
 PictureDO PersonBDO.getPicture()
          Get Picture of the PersonDO
 PictureDO CandidateDO.getPicture()
          Get Picture of the Candidate
 

Methods in jobmatch.data with parameters of type PictureDO
 void CandidateBDO.setPicture(PictureDO Picture)
          Set Picture of the CandidateDO
protected  void CandidateBDO.okToCommitPicture(PictureDO member)
          A stub method for implementing pre-commit assertions for the Picture data member.
protected  void CandidateBDO.okToDeletePicture(PictureDO member)
          A stub method for implementing pre-delete assertions for the Picture data member.
static PictureBDO PictureBDO.createExisting(PictureDO DO)
          The createExisting method is used to create a PictureBDO from a PictureDO that was returned by the PictureQuery class.
static PictureDO PictureDO.createCopy(PictureDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void PictureDO.makeIdentical(PictureDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
 void PersonDO.setPicture(PictureDO Picture)
          Set Picture of the Person
protected  void PersonDO.okToCommitPicture(PictureDO member)
          A stub method for implementing pre-commit assertions for the Picture data member.
protected  void PersonDO.okToDeletePicture(PictureDO member)
          A stub method for implementing pre-delete assertions for the Picture data member.
 void PersonBDO.setPicture(PictureDO Picture)
          Set Picture of the PersonDO
protected  void PersonBDO.okToCommitPicture(PictureDO member)
          A stub method for implementing pre-commit assertions for the Picture data member.
protected  void PersonBDO.okToDeletePicture(PictureDO member)
          A stub method for implementing pre-delete assertions for the Picture data member.
 void CandidateDO.setPicture(PictureDO Picture)
          Set Picture of the Candidate
protected  void CandidateDO.okToCommitPicture(PictureDO member)
          A stub method for implementing pre-commit assertions for the Picture data member.
protected  void CandidateDO.okToDeletePicture(PictureDO member)
          A stub method for implementing pre-delete assertions for the Picture data member.
 

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


PSE 2000 Group 4