ICU-12739 Fixed some API doc issues and eased doclint option with Java 8.

X-SVN-Rev: 39290
This commit is contained in:
Yoshito Umaoka 2016-09-20 16:48:49 +00:00
parent 19d7d00bd8
commit 37e2574283
4 changed files with 3 additions and 8 deletions

View file

@ -917,7 +917,7 @@
<target name="_docsLintOption" unless="doclint.options">
<!-- syntax check is disabled because JCite tag name "@.jcite" is invalidated -->
<condition property="doclint.option" value="-Xdoclint:all,-accessibility,-syntax" else="">
<condition property="doclint.option" value="-Xdoclint:reference,html" else="">
<isset property="is.java8.plus"/>
</condition>
</target>

View file

@ -175,7 +175,7 @@ public class BidiTransform
* <li>{Logical LTR, Visual RTL},</li>
* <li>{Visual RTL, Logical RTL}.</li>
* </ul>
* <p>Example of usage of the transformation engine:<br>
* <p>Example of usage of the transformation engine:</p>
* <pre>
* BidiTransform bidiTransform = new BidiTransform();
* String in = "abc \u06f0123"; // "abc \\u06f0123"
@ -197,7 +197,6 @@ public class BidiTransform
* ArabicShaping.DIGITS_EN2AN | ArabicShaping.DIGIT_TYPE_AN_EXTENDED);
* // Result: "abc \\u06f4\\u06f1\\u06f2\\u06f3"
* </pre>
* </p>
*
* @param text An input character sequence that the Bidi layout
* transformations will be performed on.

View file

@ -185,7 +185,7 @@ public class DecimalFormatSymbols implements Cloneable, Serializable {
/**
* Sets the character used for zero.
* <p>
* <b>Note:</p> When the specified zeroDigit is a Unicode decimal digit character
* <b>Note:</b> When the specified zeroDigit is a Unicode decimal digit character
* (category:Nd) and the number value is 0, then this method propagate digit 1 to
* digit 9 by incrementing code point one by one.
*

View file

@ -98,7 +98,6 @@ import com.ibm.icu.util.ULocale;
* shown below:
*
* <pre>
* <code>
* // Setup:
* String[] DICTIONARY = new String[]{ "lorem", "ipsum" }; // example
* SpoofChecker sc = new SpoofChecker.Builder().setChecks(SpoofChecker.CONFUSABLE).build();
@ -110,7 +109,6 @@ import com.ibm.icu.util.ULocale;
* // Live Check:
* boolean result = skeletons.contains(sc.getSkeleton("1orern"));
* System.out.println(result); // true
* </code>
* </pre>
*
* <p>
@ -124,7 +122,6 @@ import com.ibm.icu.util.ULocale;
* The following snippet shows a minimal example of using <code>SpoofChecker</code> to perform spoof detection on a
* string:
*
* <code>
* <pre>
* SpoofChecker sc = new SpoofChecker.Builder()
* .setAllowedChars(SpoofChecker.RECOMMENDED.cloneAsThawed().addAll(SpoofChecker.INCLUSION))
@ -134,7 +131,6 @@ import com.ibm.icu.util.ULocale;
* boolean result = sc.failsChecks("pаypаl"); // with Cyrillic 'а' characters
* System.out.println(result); // true
* </pre>
* </code>
*
* <p>
* As in the case for confusability checking, it is good practice to create one <code>SpoofChecker</code> instance at