EventPseudoModelScript.java
7.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.*;
public class EventPseudoModelScript
extends PseudoModelScript {
protected static final ScriptTable moScriptTable = new ScriptTable(ObjScript.moScriptTable, "eventPseudoModel", new ScriptPropObj[]{new ScriptPropObj(EventPseudoModelScript.class, "prevText", "getPrevText", "setPrevText", 6, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "prevContentType", "getPrevContentType", "setPrevContentType", 6, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "newText", "getNewText", "setNewText", 6, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "newContentType", "getNewContentType", "setNewContentType", 6, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "fullText", "getFullText", "setFullText", 6, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "change", "getChangeText", "setChangeText", 6, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "commitKey", "getCommitKey", "setCommitKey", 4, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "keyDown", "getKeyDown", "setKeyDown", 3, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "modifier", "getModifier", "setModifier", 3, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "name", "getName", "setName", 6, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "selEnd", "getSelEnd", "setSelEnd", 4, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "selStart", "getSelStart", "setSelStart", 4, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "shift", "getShift", "setShift", 3, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "target", "getTarget", "setTarget", 7, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "soapFaultCode", "getSOAPFaultCode", "setSOAPFaultCode", 6, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "soapFaultString", "getSOAPFaultString", "setSOAPFaultString", 6, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "reenter", "getReenter", "setReenter", 3, 21, 9, 0), new ScriptPropObj(EventPseudoModelScript.class, "cancelAction", "getCancelAction", "setCancelAction", 3, 28, 9, 0)}, new ScriptFuncObj[]{new ScriptFuncObj(EventPseudoModelScript.class, "emit", "emit", 1, new int[0], 0, 21, 9, 0), new ScriptFuncObj(EventPseudoModelScript.class, "reset", "reset", 1, new int[0], 0, 21, 9, 0)});
public static ScriptTable getScriptTable() {
return moScriptTable;
}
public static void getPrevText(Obj obj, Arg retVal) {
retVal.setString(((EventPseudoModel)obj).getPrevText());
}
public static void setPrevText(Obj obj, Arg arg) {
((EventPseudoModel)obj).setPrevText(arg.getString());
}
public static void getPrevContentType(Obj obj, Arg retVal) {
retVal.setString(((EventPseudoModel)obj).getPrevContentType());
}
public static void setPrevContentType(Obj obj, Arg arg) {
((EventPseudoModel)obj).setPrevContentType(arg.getString());
}
public static void getNewText(Obj obj, Arg retVal) {
retVal.setString(((EventPseudoModel)obj).getNewText());
}
public static void setNewText(Obj obj, Arg arg) {
((EventPseudoModel)obj).setNewText(arg.getString());
}
public static void getNewContentType(Obj obj, Arg retVal) {
retVal.setString(((EventPseudoModel)obj).getNewContentType());
}
public static void setNewContentType(Obj obj, Arg arg) {
((EventPseudoModel)obj).setNewContentType(arg.getString());
}
public static void getFullText(Obj obj, Arg retVal) {
retVal.setString(((EventPseudoModel)obj).getFullText());
}
public static void setFullText(Obj obj, Arg arg) {
((EventPseudoModel)obj).setFullText(arg.getString());
}
public static void getChangeText(Obj obj, Arg retVal) {
retVal.setString(((EventPseudoModel)obj).getChange());
}
public static void setChangeText(Obj obj, Arg arg) {
((EventPseudoModel)obj).setChange(arg.getString());
}
public static void getCommitKey(Obj obj, Arg retVal) {
retVal.setInteger(((EventPseudoModel)obj).getCommitKey());
}
public static void setCommitKey(Obj obj, Arg arg) {
((EventPseudoModel)obj).setCommitKey(arg.getInteger());
}
public static void getKeyDown(Obj obj, Arg retVal) {
retVal.setBool(((EventPseudoModel)obj).getKeyDown());
}
public static void setKeyDown(Obj obj, Arg arg) {
((EventPseudoModel)obj).setKeyDown(arg.getBool());
}
public static void getModifier(Obj obj, Arg retVal) {
retVal.setBool(((EventPseudoModel)obj).getModifier());
}
public static void setModifier(Obj obj, Arg arg) {
((EventPseudoModel)obj).setModifier(arg.getBool());
}
public static void getName(Obj obj, Arg retVal) {
retVal.setString(((EventPseudoModel)obj).getNameAsString());
}
public static void setName(Obj obj, Arg arg) {
((EventPseudoModel)obj).setName(arg.getString());
}
public static void getSelEnd(Obj obj, Arg retVal) {
retVal.setInteger(((EventPseudoModel)obj).getSelEnd());
}
public static void setSelEnd(Obj obj, Arg arg) {
((EventPseudoModel)obj).setSelEnd(arg.getInteger());
}
public static void getSelStart(Obj obj, Arg retVal) {
retVal.setInteger(((EventPseudoModel)obj).getSelStart());
}
public static void setSelStart(Obj obj, Arg arg) {
((EventPseudoModel)obj).setSelStart(arg.getInteger());
}
public static void getShift(Obj obj, Arg retVal) {
retVal.setBool(((EventPseudoModel)obj).getShift());
}
public static void setShift(Obj obj, Arg arg) {
((EventPseudoModel)obj).setShift(arg.getBool());
}
public static void getTarget(Obj obj, Arg retVal) {
retVal.setObject(((EventPseudoModel)obj).getTarget());
}
public static void setTarget(Obj obj, Arg arg) {
Obj oObject = arg.getObject();
((EventPseudoModel)obj).setTarget(oObject);
}
public static void getSOAPFaultCode(Obj obj, Arg retVal) {
retVal.setString(((EventPseudoModel)obj).getSOAPFaultCode());
}
public static void setSOAPFaultCode(Obj obj, Arg arg) {
((EventPseudoModel)obj).setSOAPFaultCode(arg.getString());
}
public static void getSOAPFaultString(Obj obj, Arg retVal) {
retVal.setString(((EventPseudoModel)obj).getSOAPFaultString());
}
public static void setSOAPFaultString(Obj obj, Arg arg) {
((EventPseudoModel)obj).setSOAPFaultString(arg.getString());
}
public static void getReenter(Obj obj, Arg retVal) {
retVal.setBool(((EventPseudoModel)obj).getReenter());
}
public static void setReenter(Obj obj, Arg arg) {
((EventPseudoModel)obj).setReenter(arg.getBool());
}
public static void getCancelAction(Obj obj, Arg retVal) {
retVal.setBool(((EventPseudoModel)obj).getCancelAction());
}
public static void setCancelAction(Obj obj, Arg arg) {
((EventPseudoModel)obj).setCancelAction(arg.getBool(), null);
}
public static void emit(Obj obj, Arg retVal, Arg[] args) {
((EventPseudoModel)obj).emit();
}
public static void reset(Obj obj, Arg retVal, Arg[] args) {
((EventPseudoModel)obj).reset();
}
}