]> granicus.if.org Git - icu/commitdiff
ICU-8777 Fixed API doc for createTimeZone. Updated the description to explain the...
authorYoshito Umaoka <y.umaoka@gmail.com>
Tue, 6 Sep 2011 18:44:49 +0000 (18:44 +0000)
committerYoshito Umaoka <y.umaoka@gmail.com>
Tue, 6 Sep 2011 18:44:49 +0000 (18:44 +0000)
X-SVN-Rev: 30620

icu4c/source/i18n/unicode/timezone.h
icu4c/source/i18n/unicode/ucal.h

index 274df3c98853d979881a749b1058abefa2eed132..059e55ac0cb360b3637279fd1b1c4ecada9ba7de 100644 (file)
@@ -139,10 +139,10 @@ public:
      * Creates a <code>TimeZone</code> for the given ID.
      * @param ID the ID for a <code>TimeZone</code>, such as "America/Los_Angeles",
      * or a custom ID such as "GMT-8:00".
-     * @return the specified <code>TimeZone</code>, or the GMT zone if the given ID
-     * cannot be understood.  Return result guaranteed to be non-null.  If you
-     * require that the specific zone asked for be returned, check the ID of the
-     * return result.
+     * @return the specified <code>TimeZone</code>, or the GMT zone with ID
+     * <code>UCAL_UNKNOWN_ZONE_ID</code> ("Etc/Unknown") if the given ID cannot be understood.
+     * Return result guaranteed to be non-null. If you require that the specific zone asked
+     * for be returned, check the ID of the return result.
      * @stable ICU 2.0
      */
     static TimeZone* U_EXPORT2 createTimeZone(const UnicodeString& ID);
index 6bd8e8e3b86b0d20182d9f80d7a00d08782ceadd..a2b0fc4b9cfd9fda12e0b5bc4d04819a991c7b13 100644 (file)
@@ -670,9 +670,9 @@ ucal_getNow(void);
  * month, and day.
  * <p>
  * Note: When unknown TimeZone ID is specified, the UCalendar returned
- * by the function is initialized with GMT ("Etc/GMT") without any
- * errors/warnings.  If you want to check if a TimeZone ID is valid,
- * use ucal_getCanonicalTimeZoneID prior to this function.
+ * by the function is initialized with GMT zone with TimeZone ID <code>UCAL_UNKNOWN_ZONE_ID</code>
+ * ("Etc/Unknown") without any errors/warnings.  If you want to check if a TimeZone ID is valid
+ * prior to this function, use <code>ucal_getCanonicalTimeZoneID</code>.
  * 
  * @param zoneID The desired TimeZone ID.  If 0, use the default time zone.
  * @param len The length of zoneID, or -1 if null-terminated.
@@ -684,6 +684,7 @@ ucal_getNow(void);
  * and then pass the locale to ucal_open with UCAL_DEFAULT as the type.
  * @param status A pointer to an UErrorCode to receive any errors
  * @return A pointer to a UCalendar, or 0 if an error occurred.
+ * @see #UCAL_UNKNOWN_ZONE_ID
  * @stable ICU 2.0
  */
 U_STABLE UCalendar* U_EXPORT2