From 31e04656e77a881960daa7a6974e8f805d9cef43 Mon Sep 17 00:00:00 2001 From: Scott Main Date: Wed, 28 Sep 2011 19:14:40 -0700 Subject: [PATCH] docs: add some more info to Time javadocs Change-Id: I3c5ca668acda734f8a0da0ffbbc1bfa77ed72c2a --- core/java/android/text/format/Time.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/java/android/text/format/Time.java b/core/java/android/text/format/Time.java index 5926db3713dbd..b4445ca1e0ed8 100644 --- a/core/java/android/text/format/Time.java +++ b/core/java/android/text/format/Time.java @@ -22,8 +22,8 @@ import java.util.Locale; import java.util.TimeZone; /** - * The Time class is a faster replacement for the java.util.Calendar and - * java.util.GregorianCalendar classes. An instance of the Time class represents + * An alternative to the {@link java.util.Calendar} and + * {@link java.util.GregorianCalendar} classes. An instance of the Time class represents * a moment in time, specified with second precision. It is modelled after * struct tm, and in fact, uses struct tm to implement most of the * functionality. @@ -79,7 +79,7 @@ public class Time { public int month; /** - * Year. TBD. Is this years since 1900 like in struct tm? + * Year. For example, 1970. */ public int year;