]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/unesctrn.h
ICU-57131.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / unesctrn.h
index 69184899aa0fc92336fc5833eac83f55858c14d3..bfde6fc134fdd7bee573f84ee990f93e265406c5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  **********************************************************************
- *   Copyright (c) 2001-2004, International Business Machines
+ *   Copyright (c) 2001-2007, International Business Machines
  *   Corporation and others.  All Rights Reserved.
  **********************************************************************
  *   Date        Name        Description
@@ -28,7 +28,7 @@ U_NAMESPACE_BEGIN
  *
  * @author Alan Liu
  */
-class U_I18N_API UnescapeTransliterator : public Transliterator {
+class UnescapeTransliterator : public Transliterator {
 
  private:
 
@@ -79,17 +79,13 @@ class U_I18N_API UnescapeTransliterator : public Transliterator {
 
     /**
      * ICU "poor man's RTTI", returns a UClassID for the actual class.
-     *
-     * @draft ICU 2.2
      */
     virtual UClassID getDynamicClassID() const;
 
     /**
      * ICU "poor man's RTTI", returns a UClassID for this class.
-     *
-     * @draft ICU 2.2
      */
-    static UClassID U_EXPORT2 getStaticClassID();
+    U_I18N_API static UClassID U_EXPORT2 getStaticClassID();
 
  protected:
 
@@ -102,24 +98,9 @@ class U_I18N_API UnescapeTransliterator : public Transliterator {
      * @param incremental if true, assume more text may be coming after
      *                    pos.contextLimit.  Otherwise, assume the text is complete.
      */
-    void handleTransliterate(Replaceable& text, UTransPosition& offset,
+    virtual void handleTransliterate(Replaceable& text, UTransPosition& offset,
                              UBool isIncremental) const;
 
- private:
-
-    /**
-     * Factory methods
-     */
-    static Transliterator* _createUnicode(const UnicodeString& ID, Token context);
-    static Transliterator* _createJava(const UnicodeString& ID, Token context);
-    static Transliterator* _createC(const UnicodeString& ID, Token context);
-    static Transliterator* _createXML(const UnicodeString& ID, Token context);
-    static Transliterator* _createXML10(const UnicodeString& ID, Token context);
-    static Transliterator* _createPerl(const UnicodeString& ID, Token context);
-    static Transliterator* _createAny(const UnicodeString& ID, Token context);
-
-    static UChar* copySpec(const UChar* spec);
-
 };
 
 U_NAMESPACE_END