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()
          Returns global dictionary that aggregates all added dictionaries.
static Dictionary LanguageManager.loadDictionary(java.lang.Class nearClass, java.lang.String resource)
          Returns dictionary loaded from the specified location near class.
static Dictionary LanguageManager.loadDictionary(java.io.File file)
          Returns dictionary loaded from the specified file.
static Dictionary LanguageManager.loadDictionary(java.lang.String path)
          Returns dictionary loaded from the specified file path.
static Dictionary LanguageManager.loadDictionary(java.net.URL url)
          Returns dictionary loaded from the specified 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()
          Returns all dictionaries added into LanguageManager.
 

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)
          Adds supported language and new dictionary.
 void LanguageListener.dictionaryAdded(Dictionary dictionary)
          Notifies when new dictionary added.
 void LanguageAdapter.dictionaryAdded(Dictionary dictionary)
          Notifies when new dictionary added.
 void LanguageListener.dictionaryRemoved(Dictionary dictionary)
          Notifies when new dictionary removed.
 void LanguageAdapter.dictionaryRemoved(Dictionary dictionary)
          Notifies when new dictionary removed.
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)