PSE 2000 Group 4

Uses of Class
jobmatch.data.MailQueueDO

Packages that use MailQueueDO
jobmatch.data   
 

Uses of MailQueueDO in jobmatch.data
 

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

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

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

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


PSE 2000 Group 4