summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/i18n/Weekdays.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/i18n/Weekdays.idl')
-rw-r--r--offapi/com/sun/star/i18n/Weekdays.idl18
1 files changed, 15 insertions, 3 deletions
diff --git a/offapi/com/sun/star/i18n/Weekdays.idl b/offapi/com/sun/star/i18n/Weekdays.idl
index 0064fcbf4a0c..95d43260f3a4 100644
--- a/offapi/com/sun/star/i18n/Weekdays.idl
+++ b/offapi/com/sun/star/i18n/Weekdays.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: Weekdays.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: arellano $ $Date: 2001-05-22 23:31:21 $
+ * last change: $Author: mi $ $Date: 2002-10-03 13:05:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -69,15 +69,27 @@ module com { module sun { module star { module i18n {
//=============================================================================
-/// constants for days of a week.
+/** Constants for days of a week.
+
+ <p> used with <member>XCalendar::getFirstDayOfWeek()</member>,
+ <member>XCalendar::setFirstDayOfWeek()</member> and
+ <member>XCalendar::getDisplayName()</member> </p>
+ */
constants Weekdays
{
+ /// Sunday
const short SUNDAY = 0;
+ /// Monday
const short MONDAY = 1;
+ /// Tuesday
const short TUESDAY = 2;
+ /// Wednesday
const short WEDNESDAY = 3;
+ /// Thursday
const short THURSDAY = 4;
+ /// Friday
const short FRIDAY = 5;
+ /// Saturday
const short SATURDAY = 6;
};