Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.common.i18n.ContextUtility

Uses of ContextUtility in org.common.i18n
 

Subclasses of ContextUtility in org.common.i18n
 class ExceptionUtility
          This is an extension of the ContextUtility class, it has a default base name for the resource bundle, as defined in the public constant BASENAME.
 class LoggingUtility
          This is an extension of the ContextUtility class, it has a default base name for the resource bundle, as defined in the public constant BASENAME.
 

Methods in org.common.i18n that return ContextUtility
static ContextUtility LoggingUtility.getInstance()
          Gets a ContextUtility instance using the BASENAME field, this is equivalent to ContextUtility.getInstance( BASENAME )
static ContextUtility LoggingUtility.getInstance(java.util.Locale locale)
          Gets a ContextUtility instance using the BASENAME field and the specified class loader, this is equivalent to ContextUtility.getInstance( BASENAME, classLoader )
static ContextUtility LoggingUtility.getInstance(java.util.Locale locale, java.lang.ClassLoader classLoader)
          Gets a ContextUtility instance using the BASENAME field, the specified class loader and the preferred locale, this is equivalent to ContextUtility.getInstance( BASENAME, classLoader, locale )
static ContextUtility ExceptionUtility.getInstance()
          Gets a ContextUtility instance using the BASENAME field, this is equivalent to ContextUtility.getInstance( BASENAME )
static ContextUtility ContextUtility.getInstance(java.lang.String baseName)
          Gets the instance attribute of the ContextUtility class based only on the name of the resource bundle.
static ContextUtility ContextUtility.getInstance(java.lang.String baseName, java.util.Locale locale)
          Gets the instance attribute of the ContextUtility class based on the name of the resource bundle and the locale to use.
static ContextUtility ContextUtility.getInstance(java.lang.String baseName, java.util.Locale locale, java.lang.ClassLoader classLoader)
          Gets the instance attribute of the ContextUtility class based on the name of the resource bundle, the locale to use and the class loader used to load this resource.
static ContextUtility ContextUtility.getInstance(java.lang.String baseName, java.util.Locale locale, java.lang.ClassLoader classLoader, boolean forceReload)
          Gets the instance attribute of the ContextUtility class based on the name of the resource bundle, the locale to use and the class loader used to load this resource.
static ContextUtility ContextUtility.newInstance(java.lang.String baseName, java.util.Locale locale, java.lang.ClassLoader classLoader)
          Instantiates and returns a new instance of this class using the argument parameters.