< prev index next >

src/com/sun/org/apache/xerces/internal/impl/msg/XMLMessageFormatter_es.java

Print this page
rev 2127 : 8048021: Remove @version tag in jaxp repo
Reviewed-by: joehw


  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.impl.msg;
  22 
  23 import java.util.Locale;
  24 import java.util.MissingResourceException;
  25 import java.util.ResourceBundle;
  26 import java.util.PropertyResourceBundle;
  27 
  28 import com.sun.org.apache.xerces.internal.util.MessageFormatter;
  29 import com.sun.org.apache.xerces.internal.utils.SecuritySupport;
  30 
  31 /**
  32  * XMLMessageFormatter provides error messages for the XML 1.0 Recommendation and for
  33  * the Namespaces Recommendation
  34  *
  35  * @xerces.internal
  36  *
  37  * @author Eric Ye, IBM
  38  * @version $Id: XMLMessageFormatter_es.java 3094 2012-03-21 05:50:01Z joehw $
  39  *
  40  */
  41 public class XMLMessageFormatter_es implements MessageFormatter {
  42     /**
  43      * The domain of messages concerning the XML 1.0 specification.
  44      */
  45     public static final String XML_DOMAIN = "http://www.w3.org/TR/1998/REC-xml-19980210";
  46     public static final String XMLNS_DOMAIN = "http://www.w3.org/TR/1999/REC-xml-names-19990114";
  47 
  48     // private objects to cache the locale and resource bundle
  49     private Locale fLocale = null;
  50     private ResourceBundle fResourceBundle = null;
  51 
  52     //
  53     // MessageFormatter methods
  54     //
  55 
  56     /**
  57      * Formats a message with the specified arguments using the given
  58      * locale information.




  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.impl.msg;
  22 
  23 import java.util.Locale;
  24 import java.util.MissingResourceException;
  25 import java.util.ResourceBundle;
  26 import java.util.PropertyResourceBundle;
  27 
  28 import com.sun.org.apache.xerces.internal.util.MessageFormatter;
  29 import com.sun.org.apache.xerces.internal.utils.SecuritySupport;
  30 
  31 /**
  32  * XMLMessageFormatter provides error messages for the XML 1.0 Recommendation and for
  33  * the Namespaces Recommendation
  34  *
  35  * @xerces.internal
  36  *
  37  * @author Eric Ye, IBM

  38  *
  39  */
  40 public class XMLMessageFormatter_es implements MessageFormatter {
  41     /**
  42      * The domain of messages concerning the XML 1.0 specification.
  43      */
  44     public static final String XML_DOMAIN = "http://www.w3.org/TR/1998/REC-xml-19980210";
  45     public static final String XMLNS_DOMAIN = "http://www.w3.org/TR/1999/REC-xml-names-19990114";
  46 
  47     // private objects to cache the locale and resource bundle
  48     private Locale fLocale = null;
  49     private ResourceBundle fResourceBundle = null;
  50 
  51     //
  52     // MessageFormatter methods
  53     //
  54 
  55     /**
  56      * Formats a message with the specified arguments using the given
  57      * locale information.


< prev index next >