TextNodeScript.java
710 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.*;
public class TextNodeScript
extends ProtoableNodeScript {
protected static final ScriptTable moScriptTable = new ScriptTable(ProtoableNodeScript.moScriptTable, "#text", new ScriptPropObj[]{new ScriptPropObj(TextNodeScript.class, "value", "getValue", "setValue", 6, 10, 9, 0)}, null);
public static ScriptTable getScriptTable() {
return moScriptTable;
}
public static void getValue(Obj pObj, Arg oRetVal) {
oRetVal.setString(((TextNode)pObj).getValue());
}
public static void setValue(Obj pObj, Arg oArg) {
((TextNode)pObj).setValue(oArg.getString(), true, false);
}
}