GlyphExtra.java 1.02 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xfa.text;

class GlyphExtra {
    private float moOffsetX;
    private float moY;
    private float moWidth;
    private float moRTLWidth;
    private int mnGroup;

    GlyphExtra() {
    }

    float getOffsetX() {
        return this.moOffsetX;
    }

    void setOffsetX(float oOffsetX) {
        this.moOffsetX = oOffsetX;
    }

    float getY() {
        return this.moY;
    }

    void setY(float oY) {
        this.moY = oY;
    }

    float getWidth() {
        return this.moWidth;
    }

    void setWidth(float oWidth) {
        this.moWidth = oWidth;
    }

    float getRTLWidth() {
        return this.moRTLWidth;
    }

    void setRTLWidth(float oRTLWidth) {
        this.moRTLWidth = oRTLWidth;
    }

    int getGroup() {
        return this.mnGroup;
    }

    void setGroup(int nGroup) {
        this.mnGroup = nGroup;
    }

    void reset() {
        this.moOffsetX = 0.0f;
        this.moY = 0.0f;
        this.moRTLWidth = 0.0f;
        this.mnGroup = 0;
    }
}