Get a dictionary for default default. The language string format is platform specific.returna predictive text dictionary return getDictionary("default");
return getDictionary("default");
Get a dictionary for specified languageparamlang language of dictionaryreturna predictive text dictionary PTDictionary dic = null; if (!pool.containsKey(lang)) { dic = new PTDictionaryImpl(lang); pool.put(lang, dic); } else { dic = (PTDictionary)pool.get(lang); } return dic;
PTDictionary dic = null; if (!pool.containsKey(lang)) { dic = new PTDictionaryImpl(lang); pool.put(lang, dic); } else { dic = (PTDictionary)pool.get(lang); } return dic;