summaryrefslogtreecommitdiffstats
path: root/include/tools/date.hxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-05-17 18:25:32 +0200
committerEike Rathke <erack@redhat.com>2013-05-17 18:26:15 +0200
commit3126793480c8c8759a991ff7f516ad7bf69d4ac8 (patch)
tree2a91b877bd34ca38e375627c4590549ec3447dec /include/tools/date.hxx
parentseveral fixes of Linux desktop integration after gbuildisation (fdo#64707) (diff)
downloadcore-3126793480c8c8759a991ff7f516ad7bf69d4ac8.tar.gz
core-3126793480c8c8759a991ff7f516ad7bf69d4ac8.zip
added documentation about non-normalized invalid dates
Change-Id: I88a95d8fac8af9085d41cf1b13c8ff3ee7abb141
Diffstat (limited to 'include/tools/date.hxx')
-rw-r--r--include/tools/date.hxx40
1 files changed, 34 insertions, 6 deletions
diff --git a/include/tools/date.hxx b/include/tools/date.hxx
index 72351828d233..714a97b85727 100644
--- a/include/tools/date.hxx
+++ b/include/tools/date.hxx
@@ -66,19 +66,47 @@ public:
sal_uInt16 GetMonth() const { return (sal_uInt16)((nDate / 100) % 100); }
sal_uInt16 GetYear() const { return (sal_uInt16)(nDate / 10000); }
- /// Internally normalizes a copy of values.
+ /** Obtain the day of the week for the date.
+
+ Internally normalizes a copy of values.
+ The result may be unexpected for a non-normalized invalid date like
+ Date(31,11,2000) or a sequence of aDate.SetDay(31); aDate.SetMonth(11);
+ */
DayOfWeek GetDayOfWeek() const;
- /// Internally normalizes a copy of values.
+ /** Obtain the day of the year for the date.
+
+ Internally normalizes a copy of values.
+ The result may be unexpected for a non-normalized invalid date like
+ Date(31,11,2000) or a sequence of aDate.SetDay(31); aDate.SetMonth(11);
+ */
sal_uInt16 GetDayOfYear() const;
- /** nMinimumNumberOfDaysInWeek: how many days of a week must reside in the
- first week of a year.
- Internally normalizes a copy of values. */
+ /** Obtain the week of the year for a date.
+
+ @param nMinimumNumberOfDaysInWeek
+ How many days of a week must reside in the first week of a year.
+
+ Internally normalizes a copy of values.
+ The result may be unexpected for a non-normalized invalid date like
+ Date(31,11,2000) or a sequence of aDate.SetDay(31); aDate.SetMonth(11);
+ */
sal_uInt16 GetWeekOfYear( DayOfWeek eStartDay = MONDAY,
sal_Int16 nMinimumNumberOfDaysInWeek = 4 ) const;
- /// Internally normalizes a copy of values.
+ /** Obtain the number of days in the month of the year of the date.
+
+ Internally normalizes a copy of values.
+
+ The result may be unexpected for a non-normalized invalid date like
+ Date(31,11,2000) or a sequence of aDate.SetDay(31); aDate.SetMonth(11);
+
+ These would result in 31 as --11-31 rolls over to --12-01 and the
+ number of days in December is returned.
+
+ Instead, to obtain the value for the actual set use the static method
+ Date::GetDaysInMonth( aDate.GetMonth(), aDate.GetYear()) in such cases.
+ */
sal_uInt16 GetDaysInMonth() const;
sal_uInt16 GetDaysInYear() const { return (IsLeapYear()) ? 366 : 365; }