From daad15fb383b9773566889b7b436a87f75da14df Mon Sep 17 00:00:00 2001 From: "ray.j.greenwell" Date: Wed, 26 Aug 2009 21:20:59 +0000 Subject: [PATCH] Going ahead with my version of this. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2623 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/util/Calendars.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/java/com/samskivert/util/Calendars.java b/src/java/com/samskivert/util/Calendars.java index 1a1d9e39..4ae1b404 100644 --- a/src/java/com/samskivert/util/Calendars.java +++ b/src/java/com/samskivert/util/Calendars.java @@ -181,9 +181,12 @@ public class Calendars } /** - * Returns a fluent wrapper around a calendar configured to Midnight on specified day in the - * specified month and year. Note: be sure to use {@link Calendar#JANUARY}, etc. for the month - * argument or be prepared rue your folly. + * Returns a fluent wrapper around a calendar configured to Midnight on + * the specified day in the specified month and year. + * + * @param year a regular year value, like 1900 + * @param month a 0-based month value, like {@link Calendar#JANUARY} + * @param day a regular day of the month value, like 31 */ public static Builder at (int year, int month, int day) {