![JAR search and dependency download from the Maven repository](/logo.png)
com.adobe.xfa.text.LocaleInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package com.adobe.xfa.text;
import com.adobe.xfa.ut.LcLocale;
class LocaleInfo {
final LcLocale mpoLocale;
boolean mbIsRTL;
final boolean mbIsIdeographic;
final boolean mbOptycaJustify;
final int meDigits; // = TextAttr.DIGITS_ARABIC;
LocaleInfo (
LcLocale oLocale,
boolean bIsRTL,
boolean bIsIdeographic,
boolean bOptycaJustify,
int eDigits) {
mpoLocale = oLocale;
mbIsRTL = bIsRTL;
mbIsIdeographic = bIsIdeographic;
mbOptycaJustify = bOptycaJustify;
meDigits = eDigits;
}
LocaleInfo (LocaleInfo source) {
mpoLocale = source.mpoLocale;
mbIsRTL = source.mbIsRTL;
mbIsIdeographic = source.mbIsIdeographic;
mbOptycaJustify = source.mbOptycaJustify;
meDigits = source.meDigits;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy