Home | History | Annotate | Download | only in text
      1 --- android_icu4j/src/main/java/android/icu/text/DecimalFormatSymbols.java	2017-10-13 00:22:50.443313485 -0700
      2 +++ android_icu4j/src/main/java/android/icu/text/DecimalFormatSymbols.java	2017-10-13 00:23:10.931536336 -0700
      3 @@ -202,7 +202,6 @@
      4      /**
      5       * Returns the character used for zero. Different for Arabic, etc.
      6       * @return the character
      7 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getDigitStrings()} instead.
      8       */
      9      public char getZeroDigit() {
     10          return zeroDigit;
     11 @@ -211,8 +210,6 @@
     12      /**
     13       * Returns the array of characters used as digits, in order from 0 through 9
     14       * @return The array
     15 -     * @see #getDigitStrings()
     16 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getDigitStrings()} instead.
     17       */
     18      public char[] getDigits() {
     19          return digits.clone();
     20 @@ -225,7 +222,6 @@
     21       * digit 9 by incrementing code point one by one.
     22       *
     23       * @param zeroDigit the zero character.
     24 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #setDigitStrings(String[])} instead.
     25       */
     26      public void setZeroDigit(char zeroDigit) {
     27          this.zeroDigit = zeroDigit;
     28 @@ -385,7 +381,6 @@
     29      /**
     30       * Returns the character used for grouping separator. Different for French, etc.
     31       * @return the thousands character
     32 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getGroupingSeparatorString()} instead.
     33       */
     34      public char getGroupingSeparator() {
     35          return groupingSeparator;
     36 @@ -394,7 +389,6 @@
     37      /**
     38       * Sets the character used for grouping separator. Different for French, etc.
     39       * @param groupingSeparator the thousands character
     40 -     * @see #setGroupingSeparatorString(String)
     41       */
     42      public void setGroupingSeparator(char groupingSeparator) {
     43          this.groupingSeparator = groupingSeparator;
     44 @@ -437,7 +431,6 @@
     45      /**
     46       * Returns the character used for decimal sign. Different for French, etc.
     47       * @return the decimal character
     48 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getDecimalSeparatorString()} instead.
     49       */
     50      public char getDecimalSeparator() {
     51          return decimalSeparator;
     52 @@ -488,7 +481,6 @@
     53      /**
     54       * Returns the character used for mille percent sign. Different for Arabic, etc.
     55       * @return the mille percent character
     56 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getPerMillString()} instead.
     57       */
     58      public char getPerMill() {
     59          return perMill;
     60 @@ -539,7 +531,6 @@
     61      /**
     62       * Returns the character used for percent sign. Different for Arabic, etc.
     63       * @return the percent character
     64 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getPercentString()} instead.
     65       */
     66      public char getPercent() {
     67          return percent;
     68 @@ -665,7 +656,6 @@
     69       * negative format is specified, one is formed by prefixing
     70       * minusSign to the positive format.
     71       * @return the minus sign character
     72 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getMinusSignString()} instead.
     73       */
     74      public char getMinusSign() {
     75          return minusSign;
     76 @@ -722,7 +712,6 @@
     77       * @see #setPlusSign
     78       * @see #setMinusSign
     79       * @see #getMinusSign
     80 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getPlusSignString()} instead.
     81       */
     82      public char getPlusSign() {
     83          return plusSign;
     84 @@ -842,7 +831,6 @@
     85      /**
     86       * Returns the monetary decimal separator.
     87       * @return the monetary decimal separator character
     88 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getMonetaryDecimalSeparatorString()} instead.
     89       */
     90      public char getMonetaryDecimalSeparator() {
     91          return monetarySeparator;
     92 @@ -893,7 +881,6 @@
     93      /**
     94       * <strong>[icu]</strong> Returns the monetary grouping separator.
     95       * @return the monetary grouping separator character
     96 -     * @apiNote <strong>Discouraged:</strong> ICU 58 use {@link #getMonetaryGroupingSeparatorString()} instead.
     97       */
     98      public char getMonetaryGroupingSeparator() {
     99          return monetaryGroupingSeparator;
    100