aboutsummaryrefslogtreecommitdiff
path: root/src/share/classes/sun/text/normalizer/SymbolTable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/classes/sun/text/normalizer/SymbolTable.java')
-rw-r--r--src/share/classes/sun/text/normalizer/SymbolTable.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/share/classes/sun/text/normalizer/SymbolTable.java b/src/share/classes/sun/text/normalizer/SymbolTable.java
index a1dfab5bd..95af219f5 100644
--- a/src/share/classes/sun/text/normalizer/SymbolTable.java
+++ b/src/share/classes/sun/text/normalizer/SymbolTable.java
@@ -65,6 +65,7 @@ import java.text.ParsePosition;
* @draft ICU 2.8
* @deprecated This is a draft API and might change in a future release of ICU.
*/
+@Deprecated
public interface SymbolTable {
/**
@@ -72,6 +73,7 @@ public interface SymbolTable {
* @draft ICU 2.8
* @deprecated This is a draft API and might change in a future release of ICU.
*/
+ @Deprecated
static final char SYMBOL_REF = '$';
/**
@@ -84,6 +86,7 @@ public interface SymbolTable {
* @draft ICU 2.8
* @deprecated This is a draft API and might change in a future release of ICU.
*/
+ @Deprecated
char[] lookup(String s);
/**
@@ -95,6 +98,7 @@ public interface SymbolTable {
* @draft ICU 2.8
* @deprecated This is a draft API and might change in a future release of ICU.
*/
+ @Deprecated
UnicodeMatcher lookupMatcher(int ch);
/**
@@ -115,5 +119,6 @@ public interface SymbolTable {
* @draft ICU 2.8
* @deprecated This is a draft API and might change in a future release of ICU.
*/
+ @Deprecated
String parseReference(String text, ParsePosition pos, int limit);
}