ScriptScript.java 1017 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xfa.template.automation;

import com.adobe.xfa.Arg;
import com.adobe.xfa.Obj;
import com.adobe.xfa.ProtoableNodeScript;
import com.adobe.xfa.ScriptFuncObj;
import com.adobe.xfa.ScriptPropObj;
import com.adobe.xfa.ScriptTable;
import com.adobe.xfa.template.automation.Script;

public class ScriptScript
extends ProtoableNodeScript {
    protected static final ScriptTable moScriptTable = new ScriptTable(ProtoableNodeScript.moScriptTable, "script", new ScriptPropObj[]{new ScriptPropObj(ScriptScript.class, "value", "getValue", "setValue", 6, 21, 9, 0), new ScriptPropObj(ScriptScript.class, null, "getValue", "setValue", 6, 21, 9, 0)}, null);

    public static ScriptTable getScriptTable() {
        return moScriptTable;
    }

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

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