XMLMultiSelectNodeScript.java
748 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.*;
public class XMLMultiSelectNodeScript
extends ProtoableNodeScript {
protected static final ScriptTable moScriptTable = new ScriptTable(ProtoableNodeScript.moScriptTable, "#xml", new ScriptPropObj[]{new ScriptPropObj(XMLMultiSelectNodeScript.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(((XMLMultiSelectNode)pObj).getValue(false, false));
}
public static void setValue(Obj pObj, Arg oArg) {
((XMLMultiSelectNode)pObj).setValue(oArg.getString());
}
}