Interface ILanguage
-
public interface ILanguageRepresents a user language. Code is defined by ISO-639 (language part) and ISO-3166 (country part), e.g. "en_US".
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCode()Returns the code of this language.IMendixObjectgetMendixObject()Returns the Mendix object corresponding to this language.booleanisRightToLeft()Returns whether this language is read from right to left.
-
-
-
Method Detail
-
getCode
java.lang.String getCode()
Returns the code of this language.- Returns:
- the language code
-
getMendixObject
IMendixObject getMendixObject()
Returns the Mendix object corresponding to this language. The entity of this object is System.Language.- Returns:
- the Mendix object
-
isRightToLeft
boolean isRightToLeft()
Returns whether this language is read from right to left.- Returns:
- true if the language is right to left; false otherwise
-
-