PSE 2000 Group 4

Uses of Class
jobmatch.data.SchoolProfileDO

Packages that use SchoolProfileDO
jobmatch.data   
 

Uses of SchoolProfileDO in jobmatch.data
 

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

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

Methods in jobmatch.data with parameters of type SchoolProfileDO
static SchoolProfileDO SchoolProfileDO.createCopy(SchoolProfileDO orig)
          createCopy() Creates a DO that has no ObjectId but has a copy of an existing DO's data.
protected  void SchoolProfileDO.makeIdentical(SchoolProfileDO orig)
          makeIdentical() Assigns the DataStruct of an existing DO to this DO.
static SchoolProfileBDO SchoolProfileBDO.createExisting(SchoolProfileDO DO)
          The createExisting method is used to create a SchoolProfileBDO from a SchoolProfileDO that was returned by the SchoolProfileQuery class.
 

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


PSE 2000 Group 4