Package com.mxgraph.util
Class mxResources
- java.lang.Object
-
- com.mxgraph.util.mxResources
-
public class mxResources extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.util.LinkedList<java.util.ResourceBundle>bundlesOrdered list of the inserted resource bundles.
-
Constructor Summary
Constructors Constructor Description mxResources()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidadd(java.lang.String basename)Adds a resource bundle.static voidadd(java.lang.String basename, java.util.Locale locale)Adds a resource bundle.static java.lang.Stringget(java.lang.String key)static java.lang.Stringget(java.lang.String key, java.lang.String defaultValue)static java.lang.Stringget(java.lang.String key, java.lang.String[] params)Returns the value for the specified resource key.static java.lang.Stringget(java.lang.String key, java.lang.String[] params, java.lang.String defaultValue)Returns the value for the specified resource key.static java.util.LinkedList<java.util.ResourceBundle>getBundles()Returns the bundles.protected static java.lang.StringgetResource(java.lang.String key)Returns the value forkeyby searching the resource bundles in inverse order ornullif no value can be found forkey.static voidsetBundles(java.util.LinkedList<java.util.ResourceBundle> value)Sets the bundles.
-
-
-
Method Detail
-
getBundles
public static java.util.LinkedList<java.util.ResourceBundle> getBundles()
Returns the bundles.- Returns:
- Returns the bundles.
-
setBundles
public static void setBundles(java.util.LinkedList<java.util.ResourceBundle> value)
Sets the bundles.- Parameters:
value- The bundles to set.
-
add
public static void add(java.lang.String basename)
Adds a resource bundle. This may throw a MissingResourceException that should be handled in the calling code.- Parameters:
basename- The basename of the resource bundle to add.
-
add
public static void add(java.lang.String basename, java.util.Locale locale)Adds a resource bundle. This may throw a MissingResourceException that should be handled in the calling code.- Parameters:
basename- The basename of the resource bundle to add.
-
get
public static java.lang.String get(java.lang.String key)
-
get
public static java.lang.String get(java.lang.String key, java.lang.String defaultValue)
-
get
public static java.lang.String get(java.lang.String key, java.lang.String[] params)Returns the value for the specified resource key.
-
get
public static java.lang.String get(java.lang.String key, java.lang.String[] params, java.lang.String defaultValue)Returns the value for the specified resource key.
-
getResource
protected static java.lang.String getResource(java.lang.String key)
Returns the value forkeyby searching the resource bundles in inverse order ornullif no value can be found forkey.
-
-