Class BaseMessages

java.lang.Object
oracle.stellent.ridc.i18n.locale.BaseMessages
Direct Known Subclasses:
RIDCMessages

public class BaseMessages extends Object
Base class for the Messages which takes care of the plumbing for the Resource Bundles.
  • Field Details

    • RESOURCE_BUNDLE

      public static final String RESOURCE_BUNDLE
      The default resource bundle name to be used
      See Also:
  • Constructor Details

    • BaseMessages

      public BaseMessages()
  • Method Details

    • getResourceBundle

      public static ResourceBundle getResourceBundle()
      Get the default resource bundle using the default locale
      Returns:
      resource bundle
    • getResourceBundle

      public static ResourceBundle getResourceBundle(String bundleName)
      Get the resource bundle
      Parameters:
      bundleName - the bundle name
      Returns:
      the resource bundle
    • getResourceBundle

      public static ResourceBundle getResourceBundle(String bundleName, Locale locale)
      Get a resource bundle using a specific locale
      Parameters:
      bundleName - the bundle name
      locale - the locale
      Returns:
      the resource bundle
    • getResourceBundle

      public static ResourceBundle getResourceBundle(Locale locale)
      Parameters:
      locale - the locale
      Returns:
      the resource bundle
    • getString

      public static String getString(String key)
      Get string for the key from the default bundle
      Parameters:
      key - the key
      Returns:
      the string
    • getString

      public static String getString(String bundleName, String key)
      Get the string value for the key from a specific bundle
      Parameters:
      bundleName - the bundle name
      key - the key
      Returns:
      the string value
    • getString

      public static String getString(String key, Object... arguments)
      Get the string value for the key
      Parameters:
      key - the key
      arguments - the parameters
      Returns:
      the resource string
    • getString

      public static String getString(String bundleName, String key, Object... arguments)
      Parameters:
      bundleName - the name of the bundle to use
      key - the key
      arguments - the parameters to be used
      Returns:
      formatted string
    • getString

      public static String getString(Locale locale, String bundleName, String key, Object... parameters)
      Parameters:
      locale - the locale for this string
      key - the key
      parameters - the parameters to be used
      Returns:
      the localized formatted string