Index

DKRouteListEntryICM

Purpose:

This class contains a information about a route entry in the route list. It contains From, To, and Selection. For example, to and from.

Class summary:

class DKEXPORT DKRouteListEntryICM 
         {
 
         public:
            
            DKRouteListEntryICM();
            virtual ~DKRouteListEntryICM();
            
            DKString getFrom();
            DKWorkNodeICM* getFromNode();
            DKString getTo();
            DKWorkNodeICM* getToNode();
            DKString getSelection();
            
            void setFrom(const char* from_field);
            void setFromNode(DKWorkNodeICM* from_node);
            void setTo(const char* to_field);
            void setToNode(DKWorkNodeICM* to_node);
            void setSelection(const char* selection_field);
     }

Members:

Constructors and destructor
Constructs a new DKRouteListEntryICM object. The destructor deletes the DKRouteListEntryICM object.
DKRouteListEntryICM();
virtual ~DKRouteListEntryICM();

Member functions

getFrom
Gets the source of this RouteListEntry.
DKString getFrom()

getFromNode
Returns the From WorkNode.
DKWorkNodeICM* getFromNode()

getSelection
Gets the selection of this RouteListEntry
DKString getSelection();

getTo
Gets the destination of this RouteListEntry.
DKString getTo();

getToNode
Returns the To WorkNode.
 DKWorkNodeICM* getToNode();

setFrom
Sets the Name of the From Node.
void setFrom(const char* from_field)

setFromNode
Sets the From Node.
void setFromNode(DKWorkNodeICM* from_field)

setSelection
Sets the Selection in the Route List Entry.
void setSelection(const char* selection_field);

setTo
Sets the To Name for the WorkNode.
void setTo(const char* to_field);

setToNode
Sets the To Node.
void setToNode(DKWorkNodeICM* to_field)

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