|
BEA Systems, Inc. | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object weblogic.i18n.Localizer
public final class Localizer
Localizer is a class used to look up the various elements of a message definition. A Localizer accesses localization data through properties files generated from the message catalogs using the combination of message element names and message id as keys. For example,
String text = (String) getObject(Localizer.MESSAGE_BODY,"123456")
returns the text for message 123456. Convenience methods are also provided. For instance, the getBody("123456") call is equivalent to the above getObject() call. For log messages, two properties files are generated. One for basic catalog data and one for detailed text. Refer to L10nLookup for information on retrieving detailed vs. basic localization data.
Field Summary | |
---|---|
static String |
ACTION
key to locate message action |
static String |
CAUSE
key to locate message cause |
static String |
I18N_PACKAGE
key to locate internationalizer package |
static String |
L10N_PACKAGE
key to locate localizer package |
static String |
MESSAGE_BODY
key to locate message message-id |
static String |
MESSAGE_DETAIL
key to locate message detail |
static String[] |
NON_SERVER_SEVERITIES
|
static String |
PREFIX
key to locate catalog prefix |
static String |
PREFIX_DELIM
Delimiter separating prefix from message id |
static String[] |
SERVER_SEVERITIES
|
static String |
SEVERITY
key to locate message severity |
static String |
STACKTRACE
key to locate stack trace option |
static String |
SUBSYSTEM
key to locate catalog subsystem |
static String |
VERSION
key to locate catalog version |
Constructor Summary | |
---|---|
Localizer(ResourceBundle rb)
|
Method Summary | |
---|---|
String |
get(String id)
locate text associated with the passed message id. |
String |
getAction(String id)
Lookup up message action for message, "id". |
String |
getBody(String id)
Lookup up message text for log message, "id". |
String |
getCause(String id)
Lookup up message cause for message, "id". |
String |
getDetail(String id)
Lookup up message detail for log message, "id". |
String |
getI18nPackage()
Returns the i18n package associated with this Localizer. |
String |
getL10nPackage()
Returns the l10n package associated with this Localizer. |
Object |
getObject(String key,
int id)
Returns an Object in a Localizer bundle matching the key and the specified message id. |
Object |
getObject(String key,
String id)
Returns an Object in a Localizer bundle matching the key and the specified message id. |
String |
getPrefix()
Returns the prefix associated with this Localizer. |
int |
getSeverity(String id)
Lookup up severity for message, "id". |
boolean |
getStackTrace(String id)
Lookup stack trace option for message, "id". |
String |
getString(String key,
int id)
Returns an String in a Localizer bundle matching the key and the specified message id. |
String |
getString(String key,
String id)
Returns a String-ified version of a value from a Localizer bundle matching the key and the specified message id. |
String |
getSubSystem()
Returns the subsystem associated with this Localizer. |
String |
getVersion()
Returns the catalog version supported by this Localizer. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String VERSION
public static final String L10N_PACKAGE
public static final String I18N_PACKAGE
public static final String SUBSYSTEM
public static final String PREFIX
public static final String SEVERITY
public static final String MESSAGE_BODY
public static final String MESSAGE_DETAIL
public static final String CAUSE
public static final String ACTION
public static final String STACKTRACE
public static final String[] SERVER_SEVERITIES
public static final String[] NON_SERVER_SEVERITIES
public static final String PREFIX_DELIM
Constructor Detail |
---|
public Localizer(ResourceBundle rb)
Method Detail |
---|
public String getVersion() throws MissingResourceException
MissingResourceException
public String getL10nPackage() throws MissingResourceException
MissingResourceException
public String getI18nPackage() throws MissingResourceException
MissingResourceException
public String getSubSystem() throws MissingResourceException
MissingResourceException
public String getPrefix()
public Object getObject(String key, String id) throws MissingResourceException
key
- Element of a message definition.id
- Message id.
MissingResourceException
- There is no entry in the Localizer for key/id.public Object getObject(String key, int id) throws MissingResourceException
key
- Element of a message definition.id
- Message id.
MissingResourceException
- There is no entry in the Localizer for key/id.public String getString(String key, String id) throws MissingResourceException
key
- Element of a message definition.id
- Message id.
MissingResourceException
- There is no entry in the Localizer for key/id.public String getString(String key, int id) throws MissingResourceException
key
- Element of a message definition.id
- Message id.
MissingResourceException
- There is no entry in the Localizer for key/id.public String get(String id)
public String getBody(String id)
public String getDetail(String id)
public String getCause(String id)
public String getAction(String id)
public int getSeverity(String id)
public boolean getStackTrace(String id)
|
Documentation is available at http://download.oracle.com/docs/cd/E13222_01/wls/docs92 Copyright 2006 BEA Systems Inc. |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |