mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-3515 fix documentation warnings
X-SVN-Rev: 14428
This commit is contained in:
parent
8fd9eda1d6
commit
c2aa429d9f
1 changed files with 6 additions and 6 deletions
|
@ -5,8 +5,8 @@
|
|||
*******************************************************************************
|
||||
*
|
||||
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/text/Attic/ImplicitCEGenerator.java,v $
|
||||
* $Date: 2004/01/28 02:05:51 $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2004/01/29 19:17:14 $
|
||||
* $Revision: 1.3 $
|
||||
*
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
@ -318,7 +318,7 @@ public class ImplicitCEGenerator {
|
|||
* Generate the implicit CE, from raw integer.
|
||||
* Left shifted to put the first byte at the top of an int.
|
||||
* @param cp code point
|
||||
* @return
|
||||
* @return Primary implicit weight
|
||||
*/
|
||||
public int getImplicitFromRaw(int cp) {
|
||||
if (cp < 0 || cp > MAX_INPUT) {
|
||||
|
@ -368,7 +368,7 @@ public class ImplicitCEGenerator {
|
|||
* swaps (which produces a raw value 0..220000,
|
||||
* then converts raw to implicit.
|
||||
* @param cp
|
||||
* @return
|
||||
* @return Primary implicit weight
|
||||
*/
|
||||
public int getImplicitFromCodePoint(int cp) {
|
||||
if (DEBUG) System.out.println("Incoming: " + Utility.hex(cp));
|
||||
|
@ -437,14 +437,14 @@ public class ImplicitCEGenerator {
|
|||
|
||||
|
||||
/**
|
||||
* @return
|
||||
* @return Minimal trail value
|
||||
*/
|
||||
public int getMinTrail() {
|
||||
return minTrail;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
* @return Maximal trail value
|
||||
*/
|
||||
public int getMaxTrail() {
|
||||
return maxTrail;
|
||||
|
|
Loading…
Add table
Reference in a new issue