PSE 2000 Group 4

Uses of Class
jobmatch.data.CompanyAccountDO

Packages that use CompanyAccountDO
jobmatch.business.provider.account   
jobmatch.data   
 

Uses of CompanyAccountDO in jobmatch.business.provider.account
 

Constructors in jobmatch.business.provider.account with parameters of type CompanyAccountDO
CompanyAccount.CompanyAccount(CompanyAccountDO dataObject)
           
 

Uses of CompanyAccountDO in jobmatch.data
 

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

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

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

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


PSE 2000 Group 4