com.bea.tuxedo.control
Class RuntimeResources

java.lang.Object
  extended by com.bea.tuxedo.control.RuntimeResources

public class RuntimeResources
extends Object

Provide access to localized strings for run-time code in the Tuxedo Control. This includes logging code, MappingIssues and run-time exceptions.


Method Summary
static String getString(String key)
          Get a localized message from the runtime resource bundle.
static String getString(String key, String arg1)
          Get a localized message from the runtime resource bundle.
static String getString(String key, String arg1, String arg2)
          Get a localized message from the runtime resource bundle.
static String getString(String key, String arg1, String arg2, String arg3)
          Get a localized message from the runtime resource bundle.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getString

public static String getString(String key)
Get a localized message from the runtime resource bundle.

Parameters:
key - The localization key.
Returns:
The localized message.

getString

public static String getString(String key,
                               String arg1)
Get a localized message from the runtime resource bundle.

Parameters:
key - The localization key.
arg1 - The first argument for the message formatter.
Returns:
The localized message.

getString

public static String getString(String key,
                               String arg1,
                               String arg2)
Get a localized message from the runtime resource bundle.

Parameters:
key - The localization key.
arg1 - The first argument for the message formatter.
arg2 - The second argument for the message formatter.
Returns:
The localized message.

getString

public static String getString(String key,
                               String arg1,
                               String arg2,
                               String arg3)
Get a localized message from the runtime resource bundle.

Parameters:
key - The localization key.
arg1 - The first argument for the message formatter.
arg2 - The second argument for the message formatter.
arg3 - The third argument for the message formatter.
Returns:
The localized message.