ICU-5649 Put @deprecated comment back to @internal items

X-SVN-Rev: 22392
This commit is contained in:
Yoshito Umaoka 2007-08-15 19:33:46 +00:00
parent 6b940caff6
commit 97c6b04e4a
2 changed files with 3 additions and 0 deletions

View file

@ -151,6 +151,7 @@ public final class CanonicalIterator {
* @param skipZeros set to true to skip characters with canonical combining class zero
* @param output the set to add the results to
* @internal
* @deprecated This API is ICU internal only.
*/
public static void permute(String source, boolean skipZeros, Set output) {
// TODO: optimize

View file

@ -921,6 +921,7 @@ public class UnicodeSet extends UnicodeFilter implements Freezable {
/**
* Tests whether the text matches at the offset. If so, returns the end of the longest substring that it matches. If not, returns -1.
* @internal
* @deprecated This API is ICU internal only.
*/
public int matchesAt(CharSequence text, int offset) {
int lastLen = -1;
@ -1858,6 +1859,7 @@ public class UnicodeSet extends UnicodeFilter implements Freezable {
* Get the Regex equivalent for this UnicodeSet
* @return regex pattern equivalent to this UnicodeSet
* @internal
* @deprecated This API is ICU internal only.
*/
public String getRegexEquivalent() {
if (strings.size() == 0) return toString();