summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/i18n/XForbiddenCharacters.idl
diff options
context:
space:
mode:
authorMichael Hönnig <mi@openoffice.org>2002-10-03 12:11:20 +0000
committerMichael Hönnig <mi@openoffice.org>2002-10-03 12:11:20 +0000
commitcb23f6a62077022736a40d6315ee92a218f489e0 (patch)
tree713895d0de4930fd1a37b2fb7bb6ded971a2acdf /offapi/com/sun/star/i18n/XForbiddenCharacters.idl
parent625aff4ec7a47d618a9da160e962fc6fb5c834c5 (diff)
#94968# IDL reviews merged
Diffstat (limited to 'offapi/com/sun/star/i18n/XForbiddenCharacters.idl')
-rw-r--r--offapi/com/sun/star/i18n/XForbiddenCharacters.idl55
1 files changed, 32 insertions, 23 deletions
diff --git a/offapi/com/sun/star/i18n/XForbiddenCharacters.idl b/offapi/com/sun/star/i18n/XForbiddenCharacters.idl
index 03298bb0e7b1..45e674281367 100644
--- a/offapi/com/sun/star/i18n/XForbiddenCharacters.idl
+++ b/offapi/com/sun/star/i18n/XForbiddenCharacters.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XForbiddenCharacters.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2001-10-25 10:01:46 $
+ * last change: $Author: mi $ $Date: 2002-10-03 13:05:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,51 +61,60 @@
#ifndef __com_sun_star_i18n_XForbiddenCharacters_idl__
#define __com_sun_star_i18n_XForbiddenCharacters_idl__
+#include <com/sun/star/i18n/ForbiddenCharacters.idl>
+
#ifndef __com_sun_star_lang_Locale_idl__
#include <com/sun/star/lang/Locale.idl>
#endif
-#ifndef __com_sun_star_i18n_XLocaleData_idl__
-#include <com/sun/star/i18n/XLocaleData.idl>
-#endif
#ifndef __com_sun_star_container_NoSuchElementException_idl__
#include <com/sun/star/container/NoSuchElementException.idl>
#endif
-//=============================================================================
+//============================================================================
- module com { module sun { module star { module i18n {
+module com { module sun { module star { module i18n {
-//=============================================================================
+//============================================================================
-/** provides access to forbidden character settings in a document.
-<p>In some languages, particular characaters are not allowed to be placed at the beginning or
-at the end of a text line.</p>
+/**
+ provides access to forbidden character settings in a document.
+
+ <p> In some languages, particular characters are not allowed to be
+ placed at the beginning or at the end of a text line. </p>
*/
+
interface XForbiddenCharacters : com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
+ //------------------------------------------------------------------------
/** returns the forbidden characters for a given locale.
*/
- ForbiddenCharacters getForbiddenCharacters([in] com::sun::star::lang::Locale rLocale)
+ ForbiddenCharacters getForbiddenCharacters(
+ [in] com::sun::star::lang::Locale aLocale )
raises( com::sun::star::container::NoSuchElementException );
- //-------------------------------------------------------------------------
- /** determins whether forbidden characters are set for a given locale.
+
+ //------------------------------------------------------------------------
+ /** determines if forbidden characters are set for a given locale.
*/
- boolean hasForbiddenCharacters([in] com::sun::star::lang::Locale rLocale);
- //-------------------------------------------------------------------------
+ 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 rLocale,
- [in] ForbiddenCharacters rForbiddenCharacters );
- //-------------------------------------------------------------------------
+ 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 rLocale);
+ void removeForbiddenCharacters(
+ [in] com::sun::star::lang::Locale aLocale );
};
-//=============================================================================
-
+//============================================================================
}; }; }; };
+//============================================================================
#endif