|
|
Clear ()
|
/* Clear all entries in the MDC */
|
|
|
CHARACTER Get (character)
|
/* Get the context identified by the key parameter.
@param character A non-empty key name
@return character A value associated with the key */
|
|
|
LOGICAL Has (character)
|
/* Indicates whether a key exists in the store.
@param character A non-empty key name
@return logical TRUE if the key is in the context store; FALSE otherwise */
|
|
|
LOGICAL IsEmpty ()
|
/* Indicates whether there is any contest in the store.
@return logical Returns TRUE if there's at least one entry in the store */
|
|
|
Put (character, character)
|
/* Adds a context value to the MDC context
@param character A non-empty key name
@param character A value associated with the key */
|
|
|
Remove (character)
|
/* Remove the context identified by the key parameter.
@param character A non-empty key name */
|