BrightSide Workbench Full Report + Source Code
org.turro.i18n.I18nCompatibilityMap Class Reference
Inheritance diagram for org.turro.i18n.I18nCompatibilityMap:
Collaboration diagram for org.turro.i18n.I18nCompatibilityMap:

Public Member Functions

String get (Object key)
 
Set keySet ()
 
ResourceBundle asBundle ()
 

Static Public Member Functions

static I18nCompatibilityMap from (I18nCompatibilityWrapper i18nCompatibilityWrapper)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 30 of file I18nCompatibilityMap.java.

Member Function Documentation

◆ asBundle()

ResourceBundle org.turro.i18n.I18nCompatibilityMap.asBundle ( )

Definition at line 42 of file I18nCompatibilityMap.java.

42  {
43  return new MapResourceBundle(this);
44  }
Here is the caller graph for this function:

◆ from()

static I18nCompatibilityMap org.turro.i18n.I18nCompatibilityMap.from ( I18nCompatibilityWrapper  i18nCompatibilityWrapper)
static

Definition at line 50 of file I18nCompatibilityMap.java.

50  {
51  return new I18nCompatibilityMap(i18nCompatibilityWrapper);
52  }
Here is the caller graph for this function:

◆ get()

String org.turro.i18n.I18nCompatibilityMap.get ( Object  key)

Definition at line 33 of file I18nCompatibilityMap.java.

33  {
34  return i18nCompatibilityWrapper.get((String) key);
35  }
Here is the call graph for this function:

◆ keySet()

Set org.turro.i18n.I18nCompatibilityMap.keySet ( )

Definition at line 38 of file I18nCompatibilityMap.java.

38  {
39  return I18nCompatibilityKey.instance().keySet();
40  }
Here is the call graph for this function:

The documentation for this class was generated from the following file: