GenericTextContainerScript.java 834 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xfa;

import com.adobe.xfa.*;

public class GenericTextContainerScript
extends TextNodeScript {
    protected static final ScriptTable moScriptTable = new ScriptTable(TextNodeScript.moScriptTable, "textNode", new ScriptPropObj[]{new ScriptPropObj(GenericTextContainerScript.class, "value", "getValue", "setValue", 6, 10, 9, 0), new ScriptPropObj(GenericTextContainerScript.class, null, "getValue", "setValue", 6, 10, 9, 0)}, null);

    public static ScriptTable getScriptTable() {
        return moScriptTable;
    }

    public static void getValue(Obj pObj, Arg oRetVal) {
        oRetVal.setString(((GenericTextContainer)pObj).getValue());
    }

    public static void setValue(Obj pObj, Arg oArg) {
        ((GenericTextContainer)pObj).setValue(oArg.getString());
    }
}