summaryrefslogtreecommitdiff
path: root/TAO/tao
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-08-02 06:09:26 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-08-02 06:09:26 +0000
commitb2aac56bb044703e57695cf6473ae1fc90070a8b (patch)
tree421b4dd566473e51d05723c61eba06fd35b614a9 /TAO/tao
parenta204d7ced8be372d510b2924dc9b2e11ea5cfe93 (diff)
downloadATCD-b2aac56bb044703e57695cf6473ae1fc90070a8b.tar.gz
ChangeLogTag: Mon Aug 2 06:09:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao')
-rw-r--r--TAO/tao/PortableServer/Active_Object_Map.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/tao/PortableServer/Active_Object_Map.h b/TAO/tao/PortableServer/Active_Object_Map.h
index 881ebfc8bd2..9ae84b0185f 100644
--- a/TAO/tao/PortableServer/Active_Object_Map.h
+++ b/TAO/tao/PortableServer/Active_Object_Map.h
@@ -49,7 +49,7 @@ public:
* @brief Value field of the active object map.
*
* We need a mapping from and to all of the following fields:
- * <user_id>, <system_id>, and <servant>. Therefore, we keep
+ * user_id, system_id, and servant. Therefore, we keep
* all the fields together in the map.
*/
struct Map_Entry
@@ -92,7 +92,7 @@ public:
int &deactivated);
/// Can be used with any policy. With the SYSTEM_ID policy,
- /// <user_id> is actually <system_id>.
+ /// user_id is actually system_id.
int is_user_id_in_map (const PortableServer::ObjectId &user_id,
CORBA::Short priority,
int &priorities_match,
@@ -109,13 +109,13 @@ public:
PortableServer::ObjectId_out user_id);
/// Can be used with any policy. With the SYSTEM_ID policy,
- /// <user_id> is actually <system_id>.
+ /// user_id is actually system_id.
int bind_using_user_id (PortableServer::Servant servant,
const PortableServer::ObjectId &user_id,
CORBA::Short priority);
/// Can be used with any policy. With the SYSTEM_ID policy,
- /// <user_id> is actually <system_id>.
+ /// user_id is actually system_id.
int find_system_id_using_user_id (const PortableServer::ObjectId &user_id,
CORBA::Short priority,
PortableServer::ObjectId_out system_id);
@@ -127,22 +127,22 @@ public:
TAO_Active_Object_Map::Map_Entry *&entry);
/// Can be used with any policy. With the SYSTEM_ID policy,
- /// <user_id> is actually <system_id>.
+ /// user_id is actually system_id.
int unbind_using_user_id (const PortableServer::ObjectId &user_id);
/// Must be used with UNIQUE_ID policy. With the SYSTEM_ID policy,
- /// <user_id> is actually <system_id>.
+ /// user_id is actually system_id.
int find_user_id_using_servant (PortableServer::Servant servant,
PortableServer::ObjectId_out user_id);
/// Must be used with UNIQUE_ID policy. With the SYSTEM_ID policy,
- /// <user_id> is actually <system_id>.
+ /// user_id is actually system_id.
int find_system_id_using_servant (PortableServer::Servant servant,
PortableServer::ObjectId_out system_id,
CORBA::Short &priority);
/// Can be used with any policy. With the SYSTEM_ID policy,
- /// <user_id> is actually <system_id>.
+ /// user_id is actually system_id.
int find_servant_using_user_id (const PortableServer::ObjectId &user_id,
PortableServer::Servant &servant);
@@ -153,7 +153,7 @@ public:
TAO_Active_Object_Map::Map_Entry *&entry);
/// Can be used with any policy. With the SYSTEM_ID policy,
- /// <user_id> is identical to <system_id>.
+ /// @a user_id is identical to @a system_id.
int find_servant_and_system_id_using_user_id (const PortableServer::ObjectId &user_id,
PortableServer::Servant &servant,
PortableServer::ObjectId_out system_id,