TextCharPropCharIterator.java 672 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xfa.text;

import com.adobe.xfa.text.TextCharProp;
import com.adobe.xfa.text.TextCharPropDataIterator;

public class TextCharPropCharIterator
extends TextCharPropDataIterator {
    public TextCharPropCharIterator(int[] peData) {
        super(peData);
    }

    public TextCharPropCharIterator(int[] peData, int startIndex) {
        super(peData, startIndex);
    }

    public TextCharPropCharIterator(int[] peData, int startIndex, int length) {
        super(peData, startIndex, length);
    }

    @Override
    int interpretData(int dataValue) {
        return TextCharProp.getCharProperty(dataValue);
    }
}