summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/util/XModeSelector.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/util/XModeSelector.idl')
-rw-r--r--offapi/com/sun/star/util/XModeSelector.idl7
1 files changed, 0 insertions, 7 deletions
diff --git a/offapi/com/sun/star/util/XModeSelector.idl b/offapi/com/sun/star/util/XModeSelector.idl
index 5331864b112d..c679d24c92e5 100644
--- a/offapi/com/sun/star/util/XModeSelector.idl
+++ b/offapi/com/sun/star/util/XModeSelector.idl
@@ -24,42 +24,35 @@
#include <com/sun/star/lang/NoSupportException.idl>
-//=============================================================================
module com { module sun { module star { module util {
-//=============================================================================
/** is supported by objects which supply different modes.
*/
published interface XModeSelector: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** sets a new mode for the implementing object.
*/
void setMode( [in] string aMode )
raises( com::sun::star::lang::NoSupportException );
- //-------------------------------------------------------------------------
/** @returns
the current mode.
*/
string getMode();
- //-------------------------------------------------------------------------
/** @returns
a sequence of all supported modes.
*/
sequence<string> getSupportedModes();
- //-------------------------------------------------------------------------
/** asks whether a mode is supported or not.
*/
boolean supportsMode( [in] string aMode );
};
-//=============================================================================
}; }; }; };