ICU-5801 Fix JavaDoc errors.
X-SVN-Rev: 22271
This commit is contained in:
parent
507e86ddc1
commit
232177b1b5
@ -2739,7 +2739,7 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection
|
||||
* of a word and lowercase all other characters.
|
||||
* With this option, the other characters will not be modified.
|
||||
*
|
||||
* @see toTitleCase
|
||||
* @see #toTitleCase
|
||||
* @draft ICU 3.8
|
||||
* @provisional This API might change or be removed in a future release.
|
||||
*/
|
||||
@ -2761,8 +2761,8 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection
|
||||
* cased character F. If F exists, map F to default_title(F); then map each
|
||||
* subsequent character C to default_lower(C).
|
||||
*
|
||||
* @see toTitleCase
|
||||
* @see TITLECASE_NO_LOWERCASE
|
||||
* @see #toTitleCase
|
||||
* @see #TITLECASE_NO_LOWERCASE
|
||||
* @draft ICU 3.8
|
||||
* @provisional This API might change or be removed in a future release.
|
||||
*/
|
||||
@ -4417,8 +4417,8 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection
|
||||
* @return lowercase version of the argument string
|
||||
* @draft ICU 3.8
|
||||
* @provisional This API might change or be removed in a future release.
|
||||
* @see TITLECASE_NO_LOWERCASE
|
||||
* @see TITLECASE_NO_BREAK_ADJUSTMENT
|
||||
* @see #TITLECASE_NO_LOWERCASE
|
||||
* @see #TITLECASE_NO_BREAK_ADJUSTMENT
|
||||
*/
|
||||
public static String toTitleCase(ULocale locale, String str,
|
||||
BreakIterator titleIter,
|
||||
|
@ -14,7 +14,7 @@ package com.ibm.icu.text;
|
||||
public interface StringTransform {
|
||||
/**
|
||||
* Transform the text in some way, to be determined by the subclass.
|
||||
* @input source text to be transformed (eg lowercased)
|
||||
* @param source text to be transformed (eg lowercased)
|
||||
* @return result
|
||||
*/
|
||||
public String transform(String source);
|
||||
|
@ -1900,7 +1900,7 @@ public abstract class Transliterator implements StringTransform {
|
||||
|
||||
/**
|
||||
* Implements StringTransform via this method.
|
||||
* @input source text to be transformed (eg lowercased)
|
||||
* @param source text to be transformed (eg lowercased)
|
||||
* @return result
|
||||
*/
|
||||
public String transform(String source) {
|
||||
|
@ -3681,33 +3681,33 @@ public class UnicodeSet extends UnicodeFilter implements Freezable {
|
||||
public XSymbolTable(){}
|
||||
/**
|
||||
* Supplies default implementation for SymbolTable (no action).
|
||||
* @draft ICU3.8
|
||||
* @draft ICU3.8
|
||||
* @provisional This API might change or be removed in a future release.
|
||||
*/
|
||||
*/
|
||||
public UnicodeMatcher lookupMatcher(int i) {
|
||||
return null;
|
||||
}
|
||||
/**
|
||||
/**
|
||||
* Apply a new property alias. Is called when parsing [:xxx=yyy:]. Results are to put into result.
|
||||
* @param property name, the xxx in [:xxx=yyy:]
|
||||
* @param propertyValue, the yyy in [:xxx=yyy:]
|
||||
* @param propertyName the xxx in [:xxx=yyy:]
|
||||
* @param propertyValue the yyy in [:xxx=yyy:]
|
||||
* @param result where the result is placed
|
||||
* @return true if handled
|
||||
* @draft ICU3.8
|
||||
* @draft ICU3.8
|
||||
* @provisional This API might change or be removed in a future release.
|
||||
*/
|
||||
*/
|
||||
public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) {
|
||||
return false;
|
||||
}
|
||||
/**
|
||||
/**
|
||||
* Supplies default implementation for SymbolTable (no action).
|
||||
* @draft ICU3.8
|
||||
* @provisional This API might change or be removed in a future release.
|
||||
*/
|
||||
*/
|
||||
public char[] lookup(String s) {
|
||||
return null;
|
||||
}
|
||||
/**
|
||||
/**
|
||||
* Supplies default implementation for SymbolTable (no action).
|
||||
* @draft ICU3.8
|
||||
* @provisional This API might change or be removed in a future release.
|
||||
|
Loading…
Reference in New Issue
Block a user