summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-12-08 09:44:34 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-12-08 09:44:34 +0000
commit217fe73442a95edc41113b4349b8a7d69d2a0fc0 (patch)
tree20c225e3c9dca5cddeccb36856375d83b86187b5
parent00c5ababe6ee81b654c2c2acee1bcf6fa9217800 (diff)
downloadATCD-217fe73442a95edc41113b4349b8a7d69d2a0fc0.tar.gz
ChangeLogTag: Sun Dec 08 09:37:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--ace/Map_Manager.h70
-rw-r--r--ace/SString.h28
-rw-r--r--ace/Unbounded_Queue.h52
-rw-r--r--etc/ace.doxygen4
-rw-r--r--etc/ace_man.doxygen2
-rw-r--r--etc/ace_qos.doxygen4
-rw-r--r--etc/ace_rmcast.doxygen4
-rw-r--r--etc/ace_ssl.doxygen4
-rw-r--r--etc/acexml.doxygen4
-rw-r--r--etc/tao.doxygen2
-rw-r--r--etc/tao_av.doxygen2
-rw-r--r--etc/tao_cosevent.doxygen2
-rw-r--r--etc/tao_cosnaming.doxygen2
-rw-r--r--etc/tao_cosnotification.doxygen2
-rw-r--r--etc/tao_costime.doxygen2
-rw-r--r--etc/tao_costrader.doxygen2
-rw-r--r--etc/tao_dynamicany.doxygen2
-rw-r--r--etc/tao_dynamicinterface.doxygen2
-rw-r--r--etc/tao_esf.doxygen2
-rw-r--r--etc/tao_implrepo.doxygen2
-rw-r--r--etc/tao_iormanip.doxygen2
-rw-r--r--etc/tao_iortable.doxygen2
-rw-r--r--etc/tao_portablegroup.doxygen2
-rw-r--r--etc/tao_portableserver.doxygen2
-rw-r--r--etc/tao_pss.doxygen2
-rw-r--r--etc/tao_rtcorba.doxygen2
-rw-r--r--etc/tao_rtevent.doxygen2
-rw-r--r--etc/tao_rtportableserver.doxygen2
-rw-r--r--etc/tao_security.doxygen2
-rw-r--r--etc/tao_smartproxies.doxygen2
-rw-r--r--etc/tao_ssliop.doxygen2
-rw-r--r--etc/tao_strategies.doxygen2
34 files changed, 128 insertions, 104 deletions
diff --git a/ChangeLog b/ChangeLog
index 029fe087e65..f3d699d861d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sun Dec 08 09:37:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * etc/*.doxygen:
+ Set JAVADOC_AUTOBRIEF to NO in all doxygen config files. When
+ only javadoc style documentation is used, only detailed documentation
+ is generated.
+
Sun Dec 08 01:17:26 2002 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Event_Handler.cpp: Fixed a typo.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 029fe087e65..f3d699d861d 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Sun Dec 08 09:37:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * etc/*.doxygen:
+ Set JAVADOC_AUTOBRIEF to NO in all doxygen config files. When
+ only javadoc style documentation is used, only detailed documentation
+ is generated.
+
Sun Dec 08 01:17:26 2002 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Event_Handler.cpp: Fixed a typo.
diff --git a/ace/Map_Manager.h b/ace/Map_Manager.h
index be3ab6fc45c..7264e5c3a6f 100644
--- a/ace/Map_Manager.h
+++ b/ace/Map_Manager.h
@@ -57,12 +57,16 @@ public:
// = These are really private, but unfortunately template friends
// are not portable.
- /// Get/Set next entry.
+ /// Get next entry.
ACE_UINT32 next (void) const;
+
+ /// Set next entry.
void next (ACE_UINT32 n);
- /// Get/Set prev entry.
+ /// Get prev entry.
ACE_UINT32 prev (void) const;
+
+ /// Set prev entry.
void prev (ACE_UINT32 p);
/// Keeps track of the next entry.
@@ -139,43 +143,45 @@ public:
typedef ACE_Map_Reverse_Iterator<EXT_ID, INT_ID, ACE_LOCK> reverse_iterator;
// = Initialization and termination methods.
- /// Initialize a <Map_Manager> with the <ACE_DEFAULT_MAP_SIZE>.
+ /// Initialize a ACE_Map_Manager with the ACE_DEFAULT_MAP_SIZE.
ACE_Map_Manager (ACE_Allocator *alloc = 0);
- /// Initialize a <Map_Manager> with <size> entries.
+ /// Initialize a ACE_Map_Manager with @a size entries.
ACE_Map_Manager (size_t size,
ACE_Allocator *alloc = 0);
- /// Initialize a <Map_Manager> with size <length>.
+ /// Initialize a ACE_Map_Manager with size @a length.
int open (size_t length = ACE_DEFAULT_MAP_SIZE,
ACE_Allocator *alloc = 0);
- /// Close down a <Map_Manager> and release dynamically allocated
+ /// Close down a ACE_Map_Manager and release dynamically allocated
/// resources.
int close (void);
- /// Close down a <Map_Manager> and release dynamically allocated
+ /// Close down a ACE_Map_Manager and release dynamically allocated
/// resources.
~ACE_Map_Manager (void);
/**
- * Associate <ext_id> with <int_id>. If <ext_id> is already in the
- * map then the <Map_Entry> is not changed. Returns 0 if a new
- * entry is bound successfully, returns 1 if an attempt is made to
- * bind an existing entry, and returns -1 if failures occur.
+ * Associate @a ext_id with @a int_id. If @a ext_id is already in the
+ * map then the ACE_Map_Entry is not changed.
+ * @retval 0 If a new entry is bound successfully.
+ * @retval 1 If an attempt is made to bind an existing entry.
+ * @retval -1 If failures occur.
*/
int bind (const EXT_ID &ext_id,
const INT_ID &int_id);
/**
- * Reassociate <ext_id> with <int_id>. If <ext_id> is not in the
- * map then behaves just like <bind>. Otherwise, store the old
+ * Reassociate @a ext_id with @a int_id. If @a ext_id is not in the
+ * map then behaves just like bind(). Otherwise, store the old
* values of <ext_id> and <int_id> into the "out" parameters and
* rebind the new parameters. This is very useful if you need to
* have an atomic way of updating <Map_Entries> and you also need
- * full control over memory allocation. Returns 0 if a new entry is
- * bound successfully, returns 1 if an existing entry was rebound,
- * and returns -1 if failures occur.
+ * full control over memory allocation.
+ * @retval 0 If a new entry is bound successfully.
+ * @retval 1 If an existing entry was rebound.
+ * @retval -1 If failures occur.
*/
int rebind (const EXT_ID &ext_id,
const INT_ID &int_id,
@@ -183,18 +189,19 @@ public:
INT_ID &old_int_id);
/**
- * Reassociate <ext_id> with <int_id>. If <ext_id> is not in the
+ * Reassociate @a ext_id with @a int_id. If <ext_id> is not in the
* map then behaves just like <bind>. Otherwise, store the old
* values of <int_id> into the "out" parameter and rebind the new
- * parameters. Returns 0 if a new entry is bound successfully,
- * returns 1 if an existing entry was rebound, and returns -1 if
- * failures occur.
+ * parameters.
+ * @retval 0 If a new entry is bound successfully.
+ * @retval 1 If an existing entry was rebound.
+ * @retval -1 If failures occur.
*/
int rebind (const EXT_ID &ext_id,
const INT_ID &int_id,
INT_ID &old_int_id);
- /// Reassociate <ext_id> with <int_id>. Old values in the map are
+ /// Reassociate @a ext_id with @a int_id. Old values in the map are
/// ignored.
int rebind (const EXT_ID &ext_id,
const INT_ID &int_id);
@@ -203,15 +210,18 @@ public:
* Associate <ext_id> with <int_id> if and only if <ext_id> is not
* in the map. If <ext_id> is already in the map then the <int_id>
* parameter is overwritten with the existing value in the map
- * Returns 0 if a new entry is bound successfully, returns 1 if an
- * attempt is made to bind an existing entry, and returns -1 if
- * failures occur.
+ * @retval 0 If a new entry is bound successfully.
+ * @retval 1 If an attempt is made to bind an existing entry.
+ * @retval -1 If failures occur.
*/
int trybind (const EXT_ID &ext_id,
INT_ID &int_id);
- /// Locate <ext_id> and pass out parameter via <int_id>.
- /// Returns 0 if found, returns -1 if not found.
+ /**
+ * Locate <ext_id> and pass out parameter via <int_id>.
+ * @retval 0 If found.
+ * @retval -1 If not found.
+ */
int find (const EXT_ID &ext_id,
INT_ID &int_id) const;
@@ -429,7 +439,7 @@ private:
/**
* @class ACE_Map_Iterator_Base
*
- * @brief Iterator for the <ACE_Map_Manager>.
+ * @brief Iterator for the ACE_Map_Manager.
*
* This class factors out common code from its templatized
* subclasses.
@@ -488,7 +498,7 @@ protected:
/**
* @class ACE_Map_Const_Iterator_Base
*
- * @brief Const iterator for the <ACE_Map_Manager>.
+ * @brief Const iterator for the ACE_Map_Manager.
*
* This class factors out common code from its templatized
* subclasses.
@@ -547,7 +557,7 @@ protected:
/**
* @class ACE_Map_Iterator
*
- * @brief Forward iterator for the <ACE_Map_Manager>.
+ * @brief Forward iterator for the ACE_Map_Manager.
*
* This class does not perform any internal locking of the
* <ACE_Map_Manager> it is iterating upon since locking is
@@ -594,7 +604,7 @@ public:
/**
* @class ACE_Map_Const_Iterator
*
- * @brief Forward const iterator for the <ACE_Map_Manager>.
+ * @brief Forward const iterator for the ACE_Map_Manager.
*
* This class does not perform any internal locking of the
* <ACE_Map_Manager> it is iterating upon since locking is
diff --git a/ace/SString.h b/ace/SString.h
index d0d2fba1928..0454c2ceef8 100644
--- a/ace/SString.h
+++ b/ace/SString.h
@@ -51,11 +51,11 @@ public:
/// Default constructor.
ACE_NS_WString (ACE_Allocator *alloc = 0);
- /// Constructor that copies <s> into dynamically allocated memory.
+ /// Constructor that copies @a s into dynamically allocated memory.
ACE_NS_WString (const char *s,
ACE_Allocator *alloc = 0);
- /// Constructor that copies <s> into dynamically allocated memory.
+ /// Constructor that copies @a s into dynamically allocated memory.
ACE_NS_WString (const ACE_WSTRING_TYPE *s,
ACE_Allocator *alloc = 0);
@@ -67,20 +67,20 @@ public:
ACE_Allocator *alloc = 0);
#endif /* ACE_WSTRING_HAS_USHORT_SUPPORT */
- /// Constructor that copies <len> ACE_WSTRING_TYPE's of <s> into dynamically
+ /// Constructor that copies @a len ACE_WSTRING_TYPE's of @a s into dynamically
/// allocated memory (will NUL terminate the result).
ACE_NS_WString (const ACE_WSTRING_TYPE *s,
size_t len,
ACE_Allocator *alloc = 0);
- /// Constructor that dynamically allocates memory for <len> + 1
+ /// Constructor that dynamically allocates memory for @a len + 1
/// ACE_WSTRING_TYPE characters. The newly created memory is set memset to 0.
ACE_NS_WString (size_t len, ACE_Allocator *alloc = 0);
/// Copy constructor.
ACE_NS_WString (const ACE_NS_WString &s);
- /// Constructor that copies <c> into dynamically allocated memory.
+ /// Constructor that copies @a c into dynamically allocated memory.
ACE_NS_WString (ACE_WSTRING_TYPE c, ACE_Allocator *alloc = 0);
/// Transform into a copy of the ASCII character representation.
@@ -98,9 +98,9 @@ ACE_NS_WString operator + (const ACE_NS_WString &,
/**
* @class ACE_SString
*
- * @brief A very Simple String <ACE_SString> class. This is not a
+ * @brief A very Simple String ACE_SString class. This is not a
* general-purpose string class, and you should probably consider
- * using <ACE_CString> is you don't understand why this class
+ * using ACE_CString is you don't understand why this class
* exists...
*
* This class is optimized for efficiency, so it doesn't provide
@@ -108,10 +108,10 @@ ACE_NS_WString operator + (const ACE_NS_WString &,
* CAUTION: This class is only intended for use with applications
* that understand how it works. In particular, its destructor
* does not deallocate its memory when it is destroyed... We need
- * this class since the <ACE_Map_Manager> requires an object that
+ * this class since the ACE_Map_Manager requires an object that
* supports the operator == and operator !=. This class uses an
- * <ACE_Allocator> to allocate memory. The user can make this a
- * persistant class by providing an <ACE_Allocator> with a
+ * ACE_Allocator to allocate memory. The user can make this a
+ * persistant class by providing an ACE_Allocator with a
* persistable memory pool.
*/
class ACE_Export ACE_SString
@@ -123,20 +123,20 @@ public:
/// Default constructor.
ACE_SString (ACE_Allocator *alloc = 0);
- /// Constructor that copies <s> into dynamically allocated memory.
+ /// Constructor that copies @a s into dynamically allocated memory.
ACE_SString (const char *s, ACE_Allocator *alloc = 0);
- /// Constructor that copies <len> chars of <s> into dynamically
+ /// Constructor that copies @a len chars of @s into dynamically
/// allocated memory (will NUL terminate the result).
ACE_SString (const char *s, size_t len, ACE_Allocator *alloc = 0);
/// Copy constructor.
ACE_SString (const ACE_SString &);
- /// Constructor that copies <c> into dynamically allocated memory.
+ /// Constructor that copies @a c into dynamically allocated memory.
ACE_SString (char c, ACE_Allocator *alloc = 0);
- /// Default dtor.
+ /// Default destructor.
~ACE_SString (void);
/// Return the <slot'th> character in the string (doesn't perform
diff --git a/ace/Unbounded_Queue.h b/ace/Unbounded_Queue.h
index ff6c767afc5..0c110c896dc 100644
--- a/ace/Unbounded_Queue.h
+++ b/ace/Unbounded_Queue.h
@@ -42,7 +42,7 @@ public:
// = Iteration methods.
- /// Pass back the <next_item> that hasn't been seen in the queue.
+ /// Pass back the @a next_item that hasn't been seen in the queue.
/// Returns 0 when all items have been seen, else 1.
int next (T *&next_item);
@@ -85,7 +85,7 @@ public:
// = Iteration methods.
- /// Pass back the <next_item> that hasn't been seen in the queue.
+ /// Pass back the @a next_item that hasn't been seen in the queue.
/// Returns 0 when all items have been seen, else 1.
int next (T *&next_item);
@@ -157,28 +157,28 @@ public:
typedef ACE_Unbounded_Queue_Const_Iterator<T> CONST_ITERATOR;
// = Initialization and termination methods.
- /// construction. Use user specified allocation strategy
+ /// Construction. Use user specified allocation strategy
/// if specified.
/**
- * Initialize an empty queue using the strategy provided.
+ * Initialize an empty queue using the strategy provided.
*/
ACE_Unbounded_Queue (ACE_Allocator *alloc = 0);
/// Copy constructor.
/**
- * Initialize the queue to be a copy of the provided queue.
+ * Initialize the queue to be a copy of the provided queue.
*/
ACE_Unbounded_Queue (const ACE_Unbounded_Queue<T> &);
/// Assignment operator.
/**
- * Perform a deep copy of rhs.
+ * Perform a deep copy of rhs.
*/
void operator= (const ACE_Unbounded_Queue<T> &);
/// Destructor.
/**
- * Clean up the memory for the queue.
+ * Clean up the memory for the queue.
*/
~ACE_Unbounded_Queue (void);
@@ -186,68 +186,68 @@ public:
/// Returns 1 if the container is empty, otherwise returns 0.
/**
- * Constant time check to see if the queue is empty.
+ * Constant time check to see if the queue is empty.
*/
int is_empty (void) const;
/// Returns 0.
/**
- * The queue cannot be full, so it always returns 0.
+ * The queue cannot be full, so it always returns 0.
*/
int is_full (void) const;
// = Classic queue operations.
- /// Adds <new_item> to the tail of the queue. Returns 0 on success,
+ /// Adds @a new_item to the tail of the queue. Returns 0 on success,
/// -1 on failure.
/**
- * Insert an item at the end of the queue.
+ * Insert an item at the end of the queue.
*/
int enqueue_tail (const T &new_item);
- /// Adds <new_item> to the head of the queue. Returns 0 on success,
+ /// Adds @a new_item to the head of the queue. Returns 0 on success,
/// -1 on failure.
/**
- * Insert an item at the head of the queue.
+ * Insert an item at the head of the queue.
*/
int enqueue_head (const T &new_item);
- /// Removes and returns the first <item> on the queue. Returns 0 on
+ /// Removes and returns the first @a item on the queue. Returns 0 on
/// success, -1 if the queue was empty.
- /**
- * Remove an item from the head of the queue.
+ /**
+ * Remove an item from the head of the queue.
*/
int dequeue_head (T &item);
// = Additional utility methods.
- /// Reset the <ACE_Unbounded_Queue> to be empty and release all its
+ /// Reset the ACE_Unbounded_Queue to be empty and release all its
/// dynamically allocated resources.
/**
- * Delete the queue nodes.
+ * Delete the queue nodes.
*/
void reset (void);
- /// Get the <slot>th element in the set. Returns -1 if the element
- /// isn't in the range {0..<size> - 1}, else 0.
+ /// Get the @a slot th element in the set. Returns -1 if the element
+ /// isn't in the range {0..#cur_size_ - 1}, else 0.
/**
* Find the item in the queue between 0 and the provided index of the
- * queue.
+ * queue.
*/
int get (T *&item, size_t slot = 0) const;
- ///Set the <slot>th element of the queue to <item>.
+ /// Set the @a slot th element of the queue to @a item.
/**
- * Set the <slot>th element in the set. Will pad out the set with
- * empty nodes if <slot> is beyond the range {0..<size> - 1}.
- * Returns -1 on failure, 0 if <slot> isn't initially in range, and
+ * Set the @a slot th element in the set. Will pad out the set with
+ * empty nodes if @a slot is beyond the range {0..#cur_size_ - 1}.
+ * Returns -1 on failure, 0 if @a slot isn't initially in range, and
* 0 otherwise.
*/
int set (const T &item, size_t slot);
/// The number of items in the queue.
/**
- * Return the size of the queue.
+ * Return the size of the queue.
*/
size_t size (void) const;
diff --git a/etc/ace.doxygen b/etc/ace.doxygen
index 04ea19798c2..5f1de284cb8 100644
--- a/etc/ace.doxygen
+++ b/etc/ace.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
@@ -148,7 +148,7 @@ INCLUDED_BY_GRAPH = YES
GRAPHICAL_HIERARCHY = YES
# The tag DOT_PATH can be used to specify the path where the dot tool can be
# found. If left blank, it is assumed the dot tool can be found on the path.
-DOT_PATH =
+DOT_PATH =
MAX_DOT_GRAPH_WIDTH = 1024
MAX_DOT_GRAPH_HEIGHT = 1024
diff --git a/etc/ace_man.doxygen b/etc/ace_man.doxygen
index 05c8bf0b94d..d34abf700e8 100644
--- a/etc/ace_man.doxygen
+++ b/etc/ace_man.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = NO
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/ace_qos.doxygen b/etc/ace_qos.doxygen
index 8b66f1824e1..5b2134f9829 100644
--- a/etc/ace_qos.doxygen
+++ b/etc/ace_qos.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
@@ -148,7 +148,7 @@ INCLUDED_BY_GRAPH = YES
GRAPHICAL_HIERARCHY = YES
# The tag DOT_PATH can be used to specify the path where the dot tool can be
# found. If left blank, it is assumed the dot tool can be found on the path.
-DOT_PATH =
+DOT_PATH =
MAX_DOT_GRAPH_WIDTH = 1024
MAX_DOT_GRAPH_HEIGHT = 1024
diff --git a/etc/ace_rmcast.doxygen b/etc/ace_rmcast.doxygen
index 8caeee03464..a89e330060a 100644
--- a/etc/ace_rmcast.doxygen
+++ b/etc/ace_rmcast.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
@@ -148,7 +148,7 @@ INCLUDED_BY_GRAPH = YES
GRAPHICAL_HIERARCHY = YES
# The tag DOT_PATH can be used to specify the path where the dot tool can be
# found. If left blank, it is assumed the dot tool can be found on the path.
-DOT_PATH =
+DOT_PATH =
MAX_DOT_GRAPH_WIDTH = 1024
MAX_DOT_GRAPH_HEIGHT = 1024
diff --git a/etc/ace_ssl.doxygen b/etc/ace_ssl.doxygen
index 57241754e46..f9c5e587d8a 100644
--- a/etc/ace_ssl.doxygen
+++ b/etc/ace_ssl.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
@@ -148,7 +148,7 @@ INCLUDED_BY_GRAPH = YES
GRAPHICAL_HIERARCHY = YES
# The tag DOT_PATH can be used to specify the path where the dot tool can be
# found. If left blank, it is assumed the dot tool can be found on the path.
-DOT_PATH =
+DOT_PATH =
MAX_DOT_GRAPH_WIDTH = 1024
MAX_DOT_GRAPH_HEIGHT = 1024
diff --git a/etc/acexml.doxygen b/etc/acexml.doxygen
index bef2daf21e7..d7ccb4269c9 100644
--- a/etc/acexml.doxygen
+++ b/etc/acexml.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
@@ -148,7 +148,7 @@ INCLUDED_BY_GRAPH = YES
GRAPHICAL_HIERARCHY = YES
# The tag DOT_PATH can be used to specify the path where the dot tool can be
# found. If left blank, it is assumed the dot tool can be found on the path.
-DOT_PATH =
+DOT_PATH =
MAX_DOT_GRAPH_WIDTH = 1024
MAX_DOT_GRAPH_HEIGHT = 1024
diff --git a/etc/tao.doxygen b/etc/tao.doxygen
index fb569be0225..b3d890faaba 100644
--- a/etc/tao.doxygen
+++ b/etc/tao.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_av.doxygen b/etc/tao_av.doxygen
index eab3a9dc16a..1d55d3c19ef 100644
--- a/etc/tao_av.doxygen
+++ b/etc/tao_av.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_cosevent.doxygen b/etc/tao_cosevent.doxygen
index c787b211470..aa1f437efa1 100644
--- a/etc/tao_cosevent.doxygen
+++ b/etc/tao_cosevent.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_cosnaming.doxygen b/etc/tao_cosnaming.doxygen
index 044b4c07130..a45d345b130 100644
--- a/etc/tao_cosnaming.doxygen
+++ b/etc/tao_cosnaming.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_cosnotification.doxygen b/etc/tao_cosnotification.doxygen
index 6adda57cbd7..331c97a2a10 100644
--- a/etc/tao_cosnotification.doxygen
+++ b/etc/tao_cosnotification.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_costime.doxygen b/etc/tao_costime.doxygen
index 513863b66fa..5bb05967c25 100644
--- a/etc/tao_costime.doxygen
+++ b/etc/tao_costime.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_costrader.doxygen b/etc/tao_costrader.doxygen
index 37f5279d284..b7a6b4ef0a4 100644
--- a/etc/tao_costrader.doxygen
+++ b/etc/tao_costrader.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_dynamicany.doxygen b/etc/tao_dynamicany.doxygen
index 02e91424984..693565b9e5a 100644
--- a/etc/tao_dynamicany.doxygen
+++ b/etc/tao_dynamicany.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_dynamicinterface.doxygen b/etc/tao_dynamicinterface.doxygen
index b6dfa934632..991681b2174 100644
--- a/etc/tao_dynamicinterface.doxygen
+++ b/etc/tao_dynamicinterface.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_esf.doxygen b/etc/tao_esf.doxygen
index 2113ab855db..35f49a104c4 100644
--- a/etc/tao_esf.doxygen
+++ b/etc/tao_esf.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_implrepo.doxygen b/etc/tao_implrepo.doxygen
index b5016b54199..5beaf24956c 100644
--- a/etc/tao_implrepo.doxygen
+++ b/etc/tao_implrepo.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_iormanip.doxygen b/etc/tao_iormanip.doxygen
index 7c11072d2dd..e203b3ead80 100644
--- a/etc/tao_iormanip.doxygen
+++ b/etc/tao_iormanip.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_iortable.doxygen b/etc/tao_iortable.doxygen
index 94530c6e677..dd4644c4972 100644
--- a/etc/tao_iortable.doxygen
+++ b/etc/tao_iortable.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_portablegroup.doxygen b/etc/tao_portablegroup.doxygen
index f210beb8cf2..b78fb6e4957 100644
--- a/etc/tao_portablegroup.doxygen
+++ b/etc/tao_portablegroup.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_portableserver.doxygen b/etc/tao_portableserver.doxygen
index e32e92f52c7..ac531751dd3 100644
--- a/etc/tao_portableserver.doxygen
+++ b/etc/tao_portableserver.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_pss.doxygen b/etc/tao_pss.doxygen
index c2dc99768f9..aa1d1d04f51 100644
--- a/etc/tao_pss.doxygen
+++ b/etc/tao_pss.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_rtcorba.doxygen b/etc/tao_rtcorba.doxygen
index 8f2d1c615da..bd24386f95a 100644
--- a/etc/tao_rtcorba.doxygen
+++ b/etc/tao_rtcorba.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_rtevent.doxygen b/etc/tao_rtevent.doxygen
index 59e98417efc..40f90707a54 100644
--- a/etc/tao_rtevent.doxygen
+++ b/etc/tao_rtevent.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_rtportableserver.doxygen b/etc/tao_rtportableserver.doxygen
index 5edcd883162..ad9bd6dabe5 100644
--- a/etc/tao_rtportableserver.doxygen
+++ b/etc/tao_rtportableserver.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_security.doxygen b/etc/tao_security.doxygen
index befdd576114..f357445bed7 100644
--- a/etc/tao_security.doxygen
+++ b/etc/tao_security.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_smartproxies.doxygen b/etc/tao_smartproxies.doxygen
index 0b6fef161e2..b1570fb7465 100644
--- a/etc/tao_smartproxies.doxygen
+++ b/etc/tao_smartproxies.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_ssliop.doxygen b/etc/tao_ssliop.doxygen
index c07149e7204..088b3157705 100644
--- a/etc/tao_ssliop.doxygen
+++ b/etc/tao_ssliop.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
diff --git a/etc/tao_strategies.doxygen b/etc/tao_strategies.doxygen
index 01ad4d98835..6cd379ef603 100644
--- a/etc/tao_strategies.doxygen
+++ b/etc/tao_strategies.doxygen
@@ -27,7 +27,7 @@ CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
VERBATIM_HEADERS = YES
SHOW_INCLUDE_FILES = YES
-JAVADOC_AUTOBRIEF = YES
+JAVADOC_AUTOBRIEF = NO
INHERIT_DOCS = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES