Uses of Class
com.alee.managers.language.data.Dictionary

Packages that use Dictionary
com.alee.extended.language   
com.alee.managers.language   
com.alee.managers.language.data   
 

Uses of Dictionary in com.alee.extended.language
 

Methods in com.alee.extended.language with parameters of type Dictionary
 javax.swing.tree.DefaultMutableTreeNode DictionariesTree.createDictionaryNode(Dictionary dictionary)
           
 void LanguageEditor.loadDictionary(Dictionary dictionary)
           
 void DictionariesTree.loadDictionary(Dictionary dictionary)
           
 

Uses of Dictionary in com.alee.managers.language
 

Methods in com.alee.managers.language that return Dictionary
static Dictionary LanguageManager.addDictionary(java.lang.Class nearClass, java.lang.String resource)
          Adds new language dictionary into LanguageManager.
static Dictionary LanguageManager.addDictionary(Dictionary dictionary)
          Adds new language dictionary into LanguageManager.
static Dictionary LanguageManager.addDictionary(java.io.File file)
          Adds new language dictionary into LanguageManager.
static Dictionary LanguageManager.addDictionary(java.lang.String path)
          Adds new language dictionary into LanguageManager.
static Dictionary LanguageManager.addDictionary(java.net.URL url)
          Adds new language dictionary into LanguageManager.
static Dictionary LanguageManager.getDictionary(java.lang.String id)
          Returns dictionary for the specified ID or null if it was not found.
static Dictionary LanguageManager.getGlobalDictionary()
          Global dictionary that aggregates all added dictionaries, records and values
static Dictionary LanguageManager.loadDictionary(java.lang.Class nearClass, java.lang.String resource)
          Loads dictionary from xml
static Dictionary LanguageManager.loadDictionary(java.io.File file)
           
static Dictionary LanguageManager.loadDictionary(java.lang.String path)
           
static Dictionary LanguageManager.loadDictionary(java.net.URL url)
           
static Dictionary LanguageManager.removeDictionary(Dictionary dictionary)
          Removes dictionary from LanguageManager.
static Dictionary LanguageManager.removeDictionary(java.lang.String id)
          Removes dictionary from LanguageManager.
 

Methods in com.alee.managers.language that return types with arguments of type Dictionary
static java.util.List<Dictionary> LanguageManager.getDictionaries()
          Loaded dictionaries
 

Methods in com.alee.managers.language with parameters of type Dictionary
static Dictionary LanguageManager.addDictionary(Dictionary dictionary)
          Adds new language dictionary into LanguageManager.
static void LanguageManager.addSupportedLanguage(java.lang.String language, Dictionary dictionary)
           
 void LanguageListener.dictionaryAdded(Dictionary dictionary)
          Notifies when new dictionary added.
 void LanguageAdapter.dictionaryAdded(Dictionary dictionary)
           
 void LanguageListener.dictionaryRemoved(Dictionary dictionary)
          Notifies when new dictionary removed.
 void LanguageAdapter.dictionaryRemoved(Dictionary dictionary)
           
static java.util.List<java.lang.String> LanguageManager.getSupportedLanguages(Dictionary dictionary)
          Returns list of languages supported by the specified dictionary.
static boolean LanguageManager.isDictionaryAdded(Dictionary dictionary)
          Returns whether specified dictionary is added or not.
static Dictionary LanguageManager.removeDictionary(Dictionary dictionary)
          Removes dictionary from LanguageManager.
 

Uses of Dictionary in com.alee.managers.language.data
 

Methods in com.alee.managers.language.data that return types with arguments of type Dictionary
 java.util.List<Dictionary> Dictionary.getSubdictionaries()
           
 

Methods in com.alee.managers.language.data with parameters of type Dictionary
 void Dictionary.addSubdictionary(Dictionary dictionary)
           
 void Dictionary.removeSubdictionary(Dictionary dictionary)
           
 

Method parameters in com.alee.managers.language.data with type arguments of type Dictionary
 void Dictionary.setSubdictionaries(java.util.List<Dictionary> subdictionaries)