ICU-4060 Fix JavaDoc errors; remove "public" from implementation classes.

X-SVN-Rev: 17920
This commit is contained in:
Eric Mader 2005-06-16 22:04:19 +00:00
parent e0a08a43c1
commit 1d9857793b
3 changed files with 7 additions and 3 deletions

View file

@ -52,6 +52,9 @@ public class CharsetDetector {
/**
* Constructor
*
* @draft ICU 3.4
* @deprecated This is a draft API and might change in a future release of ICU.
*/
public CharsetDetector() {
}
@ -71,6 +74,7 @@ public class CharsetDetector {
* @param encoding The declared encoding
*
* @draft ICU 3.4
* @deprecated This is a draft API and might change in a future release of ICU.
*/
public CharsetDetector setDeclaredEncoding(String encoding) {
fDeclaredEncoding = encoding;

View file

@ -12,9 +12,9 @@ package com.ibm.icu.text;
* This class matches UTF-16 and UTF-32, both big- and little-endian. The
* BOM will be used if it is present.
*
* @internal.
* @internal
*/
public abstract class CharsetRecog_Unicode extends CharsetRecognizer {
abstract class CharsetRecog_Unicode extends CharsetRecognizer {
/* (non-Javadoc)
* @see com.ibm.icu.text.CharsetRecognizer#getName()

View file

@ -14,7 +14,7 @@ package com.ibm.icu.text;
*
* @internal
*/
public abstract class CharsetRecog_sbcs extends CharsetRecognizer {
abstract class CharsetRecog_sbcs extends CharsetRecognizer {
/* (non-Javadoc)
* @see com.ibm.icu.text.CharsetRecognizer#getName()