[258610] Localization - ICU4J
diff --git a/plugins/org.eclipse.actf.ai.navigator/META-INF/MANIFEST.MF b/plugins/org.eclipse.actf.ai.navigator/META-INF/MANIFEST.MF
index fb336fc..cbd597e 100644
--- a/plugins/org.eclipse.actf.ai.navigator/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.actf.ai.navigator/META-INF/MANIFEST.MF
@@ -16,7 +16,8 @@
org.eclipse.actf.ai.xmlstore,
org.eclipse.actf.ai.audio.io,
org.eclipse.actf.ai.voice,
- org.eclipse.actf.ui
+ org.eclipse.actf.ui,
+ com.ibm.icu
Eclipse-LazyStart: true
Export-Package: org.eclipse.actf.ai.navigator,
org.eclipse.actf.ai.navigator.impl,
diff --git a/plugins/org.eclipse.actf.ai.navigator/src/org/eclipse/actf/ai/navigator/util/MessageFormatter.java b/plugins/org.eclipse.actf.ai.navigator/src/org/eclipse/actf/ai/navigator/util/MessageFormatter.java
index dad8664..4892013 100644
--- a/plugins/org.eclipse.actf.ai.navigator/src/org/eclipse/actf/ai/navigator/util/MessageFormatter.java
+++ b/plugins/org.eclipse.actf.ai.navigator/src/org/eclipse/actf/ai/navigator/util/MessageFormatter.java
@@ -10,10 +10,11 @@
*******************************************************************************/
package org.eclipse.actf.ai.navigator.util;
-import java.text.MessageFormat;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
+import com.ibm.icu.text.MessageFormat;
+
public class MessageFormatter {
private ResourceBundle resourceBundle = null;
diff --git a/plugins/org.eclipse.actf.ai.xmlstore/META-INF/MANIFEST.MF b/plugins/org.eclipse.actf.ai.xmlstore/META-INF/MANIFEST.MF
index 4aae2e5..8b567af 100644
--- a/plugins/org.eclipse.actf.ai.xmlstore/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.actf.ai.xmlstore/META-INF/MANIFEST.MF
@@ -5,6 +5,7 @@
Bundle-Version: 0.5.0.qualifier
Bundle-Activator: org.eclipse.actf.ai.internal.xmlstore.XMLStorePlugin
Bundle-Vendor: Eclipse.org
-Require-Bundle: org.eclipse.core.runtime
+Require-Bundle: org.eclipse.core.runtime,
+ com.ibm.icu
Eclipse-LazyStart: true
Export-Package: org.eclipse.actf.ai.xmlstore
diff --git a/plugins/org.eclipse.actf.ai.xmlstore/src/org/eclipse/actf/ai/xmlstore/nvdl/util/ContentPrintHandler.java b/plugins/org.eclipse.actf.ai.xmlstore/src/org/eclipse/actf/ai/xmlstore/nvdl/util/ContentPrintHandler.java
index ba306e6..b1b2426 100644
--- a/plugins/org.eclipse.actf.ai.xmlstore/src/org/eclipse/actf/ai/xmlstore/nvdl/util/ContentPrintHandler.java
+++ b/plugins/org.eclipse.actf.ai.xmlstore/src/org/eclipse/actf/ai/xmlstore/nvdl/util/ContentPrintHandler.java
@@ -13,13 +13,14 @@
import java.io.OutputStream;
import java.io.PrintWriter;
-import java.text.MessageFormat;
import org.xml.sax.Attributes;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
+import com.ibm.icu.text.MessageFormat;
+
/**
* The <code>ContentPrintHandler</code> is a SAX content handler that dumps
* all SAX events.
diff --git a/plugins/org.eclipse.actf.ai.xmlstore/src/org/eclipse/actf/ai/xmlstore/nvdl/util/MessageFormatter.java b/plugins/org.eclipse.actf.ai.xmlstore/src/org/eclipse/actf/ai/xmlstore/nvdl/util/MessageFormatter.java
index c0ed6b5..9d2b963 100644
--- a/plugins/org.eclipse.actf.ai.xmlstore/src/org/eclipse/actf/ai/xmlstore/nvdl/util/MessageFormatter.java
+++ b/plugins/org.eclipse.actf.ai.xmlstore/src/org/eclipse/actf/ai/xmlstore/nvdl/util/MessageFormatter.java
@@ -11,7 +11,6 @@
package org.eclipse.actf.ai.xmlstore.nvdl.util;
-import java.text.MessageFormat;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
@@ -21,6 +20,8 @@
import org.eclipse.actf.ai.xmlstore.nvdl.model.NVDLModel;
import org.xml.sax.SAXParseException;
+import com.ibm.icu.text.MessageFormat;
+
/**
* The <code>MessageFormatter</code> class formats output messages.