summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/i18n/XForbiddenCharacters.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/i18n/XForbiddenCharacters.idl')
-rw-r--r--offapi/com/sun/star/i18n/XForbiddenCharacters.idl7
1 files changed, 0 insertions, 7 deletions
diff --git a/offapi/com/sun/star/i18n/XForbiddenCharacters.idl b/offapi/com/sun/star/i18n/XForbiddenCharacters.idl
index 3e490d95450c..66f1afe398ce 100644
--- a/offapi/com/sun/star/i18n/XForbiddenCharacters.idl
+++ b/offapi/com/sun/star/i18n/XForbiddenCharacters.idl
@@ -24,11 +24,9 @@
#include <com/sun/star/container/NoSuchElementException.idl>
-//============================================================================
module com { module sun { module star { module i18n {
-//============================================================================
/**
provides access to forbidden character settings in a document.
@@ -39,34 +37,29 @@ module com { module sun { module star { module i18n {
published interface XForbiddenCharacters : com::sun::star::uno::XInterface
{
- //------------------------------------------------------------------------
/** returns the forbidden characters for a given locale.
*/
ForbiddenCharacters getForbiddenCharacters(
[in] com::sun::star::lang::Locale aLocale )
raises( com::sun::star::container::NoSuchElementException );
- //------------------------------------------------------------------------
/** determines if forbidden characters are set for a given locale.
*/
boolean hasForbiddenCharacters(
[in] com::sun::star::lang::Locale aLocale );
- //------------------------------------------------------------------------
/** sets the forbidden characters for a given Locale.
*/
void setForbiddenCharacters(
[in] com::sun::star::lang::Locale aLocale,
[in] ForbiddenCharacters aForbiddenCharacters );
- //------------------------------------------------------------------------
/** removes the setting of forbidden characters for a given locale.
*/
void removeForbiddenCharacters(
[in] com::sun::star::lang::Locale aLocale );
};
-//============================================================================
}; }; }; };
#endif