summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2002-02-19 10:00:12 +0000
committerSascha Ballach <sab@openoffice.org>2002-02-19 10:00:12 +0000
commitec870733570d6be92fc397d14f6e28d4f7be1af6 (patch)
treeb784d3677b0a502caa723eda920b1f473938db2d /unotools
parente5cd144dd78ef6a63639d053ac348aead9705109 (diff)
#95584#; add some additional coments to describe the methods
Diffstat (limited to 'unotools')
-rw-r--r--unotools/inc/unotools/accessiblestatesethelper.hxx17
1 files changed, 15 insertions, 2 deletions
diff --git a/unotools/inc/unotools/accessiblestatesethelper.hxx b/unotools/inc/unotools/accessiblestatesethelper.hxx
index 1df258bbbf7b..57b7c63880e2 100644
--- a/unotools/inc/unotools/accessiblestatesethelper.hxx
+++ b/unotools/inc/unotools/accessiblestatesethelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessiblestatesethelper.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: sab $ $Date: 2002-02-19 08:28:47 $
+ * last change: $Author: sab $ $Date: 2002-02-19 11:00:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -160,12 +160,25 @@ public:
const ::com::sun::star::uno::Sequence<sal_Int16>& rStateSet)
throw (::com::sun::star::uno::RuntimeException);
+ /** Adds a state to the set.
+ */
void AddState(sal_Int16 aState)
throw (::com::sun::star::uno::RuntimeException);
+ /** Removes a state from the set if the set contains the state, otherwise nothing is done.
+ */
void RemoveState(sal_Int16 aState)
throw (::com::sun::star::uno::RuntimeException);
+ /** Compares the set with the set given by rComparativeValue and puts the results
+ into rOldStates and rNewStates.
+
+ rOldStates contains after call all states which are in the own set and
+ not in the comparative set.
+
+ rNewStates contains after call all states which are in the comparative
+ set and not in the own set.
+ */
void Compare(const AccessibleStateSetHelper& rComparativeValue,
AccessibleStateSetHelper& rOldStates,
AccessibleStateSetHelper& rNewStates)