Class Resources


  • public class Resources
    extends java.lang.Object

    Provides locale-neutral access to string resources. Only the documentation and code are in English. :-)

    The major goal, aside from globalization, is convenience. Access to resources with no parameters is made in the form:

         Resources.getMessage(MESSAGE_NAME);
     

    Access to resources with one parameter works like

         Resources.getMessage(MESSAGE_NAME, arg1);
     

    ... and so on.

    • Constructor Summary

      Constructors 
      Constructor Description
      Resources()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String getMessage​(java.lang.String name)
      Retrieves a message with no arguments.
      static java.lang.String getMessage​(java.lang.String name, java.lang.Object... a)
      Retrieves a message with arbitrarily many arguments.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Resources

        public Resources()
    • Method Detail

      • getMessage

        public static java.lang.String getMessage​(java.lang.String name)
                                           throws java.util.MissingResourceException
        Retrieves a message with no arguments.
        Parameters:
        name - the name of the message
        Returns:
        the localized message text
        Throws:
        java.util.MissingResourceException - if the message does not exist
      • getMessage

        public static java.lang.String getMessage​(java.lang.String name,
                                                  java.lang.Object... a)
                                           throws java.util.MissingResourceException
        Retrieves a message with arbitrarily many arguments.
        Parameters:
        name - the name of the message
        a - arguments to be substituted into the message text
        Returns:
        the localized message text
        Throws:
        java.util.MissingResourceException - if the message does not exist