Index

DKResumeListEntryICM

Purpose:

Represents a resume list entry object, which is essentially one entry in a resume list. A resume list contains a list of items, or DKResumeListEntryICM objects, that are needed before a work package can continue to the next step in a process. You can associate a collection of resume list entries with one document routing work package.

Class summary:

class DKEXPORT DKResumeListEntryICM
 {
 
 public:
    
    DKResumeListEntryICM();
    virtual ~DKResumeListEntryICM();
    
    virtual DKString getRequiredItemTypeName();
    virtual int getQuantityNeeded();
    
    virtual void setRequiredItemTypeName(const char* itemtype);
    virtual void setQuantityNeeded(int quantity);
  }

Members:

Constructors and destructor

DKResumeListEntryICM
Constructs a new DKResumeListEntryICM object. The destructor deletes the DKResumeListEntryICM object.

virtual ~DKResumeListEntryICM
Destructor for this object.

Member functions

getQuantityNeeded
Gets the quantity of the item type for this entry in the resume list.
int  getQuantityNeeded();

getRequiredItemTypeName
Gets the required item type name of this entry in the resume list.
DKString getRequiredItemTypeName()

setQuantityNeeded
Sets the number of the item type for this entry in the resume list.

void setQuantityNeeded(int quantity);

setRequiredItemTypeName
Sets the required item type name for this entry in the resume list.

void setRequiredItemTypeName(const char* itemtype);

(c) Copyright International Business Machines Corporation 1996, 2003. IBM Corp. All rights reserved.