|
|
LOGICAL Add (IRole)
|
/* Add a role to the collection
@param IRole The role to remove
@return logical TRUE if the role was added from the set */
|
|
|
LOGICAL CanFind (character)
|
/* Return true if a Role with the specified Name is in the collection
@param character The name of the role
@return logical TRUE if a role with the given name exists in the collection */
|
|
|
LOGICAL Contains (IRole)
|
/* Return true if the Role is in the collection
@param character The name of the role
@return logical TRUE if a role with the given name exists in the collection */
|
|
|
OpenEdge.DataAdmin.IRole Find (character)
|
/** Return the Role with the specified Name from the collection.
Returns unknown if not found. */
|
|
|
LOGICAL Remove (IRole)
|
/* Remove a role from the collection
@param IRole The role to remove
@return logical TRUE if the role was removed from the set */
|