LocaleInfo.java 855 Bytes
/*
 * Decompiled with CFR 0_118.
 */
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;

    LocaleInfo(LcLocale oLocale, boolean bIsRTL, boolean bIsIdeographic, boolean bOptycaJustify, int eDigits) {
        this.mpoLocale = oLocale;
        this.mbIsRTL = bIsRTL;
        this.mbIsIdeographic = bIsIdeographic;
        this.mbOptycaJustify = bOptycaJustify;
        this.meDigits = eDigits;
    }

    LocaleInfo(LocaleInfo source) {
        this.mpoLocale = source.mpoLocale;
        this.mbIsRTL = source.mbIsRTL;
        this.mbIsIdeographic = source.mbIsIdeographic;
        this.mbOptycaJustify = source.mbOptycaJustify;
        this.meDigits = source.meDigits;
    }
}