Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Other versions
Version 17.0Version 16.0 (current version)Version 15.0Version 14.0Version 13.0 (home page)Version 12.0 (home page)Version 11.0 (home page)Version 10.0 (home page)Version 2.0 (home page)

Index

On this page

KMManager.getAssociatedLexicalModel()


Summary

The getAssociatedLexicalModel() method searches the installed lexical models list and see if there's an associated model for a given language

Syntax

HashMap<String, String> getAssociatedLexicalModel(String langId) 

Parameters

langId
The language ID

Returns

A dictionary of the associated lexical model information with keys and values defined as HashMap<String key, String value).

null if there's no associated lexical model for a language langId.

Description

Use this method to search the installed lexical models list and see if there's an associated model for a given language ID.

Examples

Example: Using getAssociatedLexicalModel()

The following script illustrates the use of getAssociatedLexicalModel():

    String langId = "ta";
    HashMap<String, String> lexModelMap = KMManager.getAssociatedLexicalModel(langId);

See also