diff -r 35cd9b3a98ff -r 8c100beabcc0 jdk/src/share/classes/java/time/format/DateTimePrintContext.java --- a/jdk/src/share/classes/java/time/format/DateTimePrintContext.java Wed May 15 15:01:59 2013 +0100 +++ b/jdk/src/share/classes/java/time/format/DateTimePrintContext.java Wed May 15 07:48:57 2013 -0700 @@ -85,7 +85,7 @@ *

* This class provides a single wrapper to items used in the format. * - *

Specification for implementors

+ * @implSpec * This class is a mutable context intended for use from a single thread. * Usage of the class is thread-safe within standard printing as the framework creates * a new instance of the class for each format and printing is single-threaded. @@ -234,7 +234,7 @@ * Gets the locale. *

* This locale is used to control localization in the format output except - * where localization is controlled by the symbols. + * where localization is controlled by the DecimalStyle. * * @return the locale, not null */ @@ -243,14 +243,14 @@ } /** - * Gets the formatting symbols. + * Gets the DecimalStyle. *

- * The symbols control the localization of numeric output. + * The DecimalStyle controls the localization of numeric output. * - * @return the formatting symbols, not null + * @return the DecimalStyle, not null */ - DateTimeFormatSymbols getSymbols() { - return formatter.getSymbols(); + DecimalStyle getDecimalStyle() { + return formatter.getDecimalStyle(); } //-----------------------------------------------------------------------