EventPseudoModel.java
13.6 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.*;
import com.adobe.xfa.ut.ExFull;
public class EventPseudoModel
extends PseudoModel {
private final AppModel mAppModel;
private EventInfo mEventInfo;
private boolean mbCancelAction;
private String msCancelActionEvent;
private String msCanceledAction;
public EventPseudoModel(AppModel appModel) {
this.mAppModel = appModel;
this.reset();
}
public String getPrevText() {
return this.mEventInfo.getPrevText();
}
public void setPrevText(String sPrevText) {
this.mEventInfo.setPrevText(sPrevText);
}
public String getPrevContentType() {
return this.mEventInfo.getPrevContentType();
}
public void setPrevContentType(String sPrevContentType) {
this.mEventInfo.setPrevContentType(sPrevContentType);
}
public String getChange() {
return this.mEventInfo.getChange();
}
public void setChange(String sChange) {
this.mEventInfo.setChange(sChange);
}
public String getNewText() {
return this.mEventInfo.getNewText();
}
public void setNewText(String sNewText) {
this.mEventInfo.setNewText(sNewText);
}
public String getNewContentType() {
return this.mEventInfo.getNewContentType();
}
public void setNewContentType(String sNewContentType) {
this.mEventInfo.setNewContentType(sNewContentType);
}
public String getFullText() {
return this.mEventInfo.getFullText();
}
public void setFullText(String sFullText) {
this.mEventInfo.setFullText(sFullText);
}
public int getCommitKey() {
return this.mEventInfo.getCommitKey();
}
public void setCommitKey(int nCommitKey) {
this.mEventInfo.setCommitKey(nCommitKey);
}
public boolean getKeyDown() {
return this.mEventInfo.getKeyDown();
}
public void setKeyDown(boolean bKeyDown) {
this.mEventInfo.setKeyDown(bKeyDown);
}
public boolean getModifier() {
return this.mEventInfo.getModifier();
}
public void setModifier(boolean bModifier) {
this.mEventInfo.setModifier(bModifier);
}
public int getName() {
return this.mEventInfo.getName();
}
public void setName(int eName) {
this.mEventInfo.setName(eName);
}
public String getNameAsString() {
return ScriptHandler.executeReasonToString(this.mEventInfo.getName());
}
public void setName(String sName) {
this.mEventInfo.setName(ScriptHandler.stringToExecuteReason(sName));
}
public int getSelEnd() {
return this.mEventInfo.getSelEnd();
}
public void setSelEnd(int nSelEnd) {
this.mEventInfo.setSelEnd(nSelEnd);
}
public int getSelStart() {
return this.mEventInfo.getSelStart();
}
public void setSelStart(int nSelStart) {
this.mEventInfo.setSelStart(nSelStart);
}
public boolean getShift() {
return this.mEventInfo.getShift();
}
public void setShift(boolean bShift) {
this.mEventInfo.setShift(bShift);
}
public Obj getTarget() {
return this.mEventInfo.getTarget();
}
public void setTarget(Obj target) {
this.mEventInfo.setTarget(target);
}
public String getSOAPFaultCode() {
return this.mEventInfo.getSOAPFaultCode();
}
public void setSOAPFaultCode(String sSOAPFaultCode) {
this.mEventInfo.setSOAPFaultCode(sSOAPFaultCode);
}
public String getSOAPFaultString() {
return this.mEventInfo.getSOAPFaultString();
}
public void setSOAPFaultString(String sSOAPFaultString) {
this.mEventInfo.setSOAPFaultString(sSOAPFaultString);
}
public boolean getReenter() {
return this.mEventInfo.getReenter();
}
public void setReenter(boolean bReenter) {
this.mEventInfo.setReenter(bReenter);
}
public boolean getCancelAction() {
return this.mbCancelAction;
}
public String getCanceledAction() {
return this.msCanceledAction;
}
public void setCancelAction(boolean bCancelAction, String sSource) {
EventManager eventManager;
String sCurrentEvent = sSource;
if (sCurrentEvent == null && (eventManager = this.mAppModel.getEventManager()) != null) {
sCurrentEvent = eventManager.getCurrentEvent();
}
if (!this.mbCancelAction && bCancelAction) {
if (this.isPreActionEvent(sCurrentEvent)) {
this.msCancelActionEvent = sCurrentEvent;
this.mbCancelAction = true;
}
} else if (this.mbCancelAction && !bCancelAction) {
if (this.msCancelActionEvent.equals("preExecute")) {
if (sCurrentEvent.equals("postExecute") || sCurrentEvent.equals("preExecute")) {
this.msCancelActionEvent = null;
this.mbCancelAction = false;
}
} else if (this.msCancelActionEvent.equals("preOpen")) {
if (sCurrentEvent.equals("postOpen") || sCurrentEvent.equals("preOpen")) {
this.msCancelActionEvent = null;
this.mbCancelAction = false;
}
} else if (this.msCancelActionEvent.equals("prePrint")) {
if (sCurrentEvent.equals("postPrint") || sCurrentEvent.equals("prePrint")) {
this.msCancelActionEvent = null;
this.mbCancelAction = false;
}
} else if (this.msCancelActionEvent.equals("preSign")) {
if (sCurrentEvent.equals("postSign") || sCurrentEvent.equals("preSign")) {
this.msCancelActionEvent = null;
this.mbCancelAction = false;
}
} else if (this.msCancelActionEvent.equals("preSubmit") && (sCurrentEvent.equals("postSubmit") || sCurrentEvent.equals("preSubmit"))) {
this.msCancelActionEvent = null;
this.mbCancelAction = false;
}
}
}
public void setEventInfo(EventInfo eventInfo) {
this.mEventInfo = eventInfo;
}
public EventInfo getEventInfo() {
return this.mEventInfo;
}
public void reset() {
this.mEventInfo = new EventInfo();
}
public void emit() {
EventManager eventManager = this.mAppModel.getEventManager();
String sActivity = this.getNameAsString();
int nEventID = eventManager.getEventID(sActivity);
Obj obj = this.getTarget();
eventManager.eventOccurred(nEventID, obj);
}
public boolean cancelAction(String sAction) {
assert (this.isAction(sAction));
boolean bResult = this.cancelOperation(sAction);
if (bResult && this.isAction(sAction)) {
this.msCanceledAction = sAction;
}
return bResult;
}
public boolean cancelEvent(String sEvent) {
assert (!this.isAction(sEvent));
return this.cancelOperation(sEvent);
}
public boolean isAction(String sOperation) {
if (null == sOperation) {
return false;
}
return sOperation.equals("execute") || sOperation.equals("open") || sOperation.equals("print") || sOperation.equals("sign") || sOperation.equals("submit");
}
boolean isPreActionEvent(String sEvent) {
if (null == sEvent) {
return false;
}
return sEvent.equals("preExecute") || sEvent.equals("preOpen") || sEvent.equals("prePrint") || sEvent.equals("preSign") || sEvent.equals("preSubmit");
}
boolean isPostActionEvent(String sEvent) {
if (null == sEvent) {
return false;
}
return sEvent.equals("postExecute") || sEvent.equals("postOpen") || sEvent.equals("postPrint") || sEvent.equals("postSign") || sEvent.equals("postSubmit");
}
protected boolean cancelOperation(String sOperation) {
if (!this.getCancelAction()) {
return false;
}
if (this.msCancelActionEvent.equals("preExecute")) {
if (sOperation.equals("postExecute")) {
return false;
}
} else if (this.msCancelActionEvent.equals("preOpen")) {
if (sOperation.equals("postOpen")) {
return false;
}
} else if (this.msCancelActionEvent.equals("prePrint")) {
if (sOperation.equals("postPrint")) {
return false;
}
} else if (this.msCancelActionEvent.equals("preSign")) {
if (sOperation.equals("postSign")) {
return false;
}
} else if (this.msCancelActionEvent.equals("preSubmit") && sOperation.equals("postSubmit")) {
return true;
}
return true;
}
@Override
public String getClassAtom() {
return "eventPseudoModel";
}
@Override
public String getClassName() {
return "eventPseudoModel";
}
@Override
public ScriptTable getScriptTable() {
return EventPseudoModelScript.getScriptTable();
}
@Override
public void sendMessenge(ExFull error, int eSeverity) {
if (this.mAppModel != null) {
this.mAppModel.addErrorList(error, eSeverity, null);
}
}
@Override
public boolean validateUsage(int nVersion, int nAvailability, boolean bUpdateVersion) {
if (this.mAppModel != null) {
return this.mAppModel.validateUsage(nVersion, nAvailability, bUpdateVersion);
}
return super.validateUsage(nVersion, nAvailability, bUpdateVersion);
}
@Override
public boolean validateUsageFailedIsFatal(int nVersion, int nAvailability) {
if (this.mAppModel != null) {
return this.mAppModel.validateUsageFailedIsFatal(nVersion, nAvailability);
}
return super.validateUsageFailedIsFatal(nVersion, nAvailability);
}
public static class EventInfo {
private String msPrevText;
private String msPrevContentType;
private String msChange;
private String msNewText;
private String msNewContentType;
private String msFullText;
private int mnCommitKey;
private boolean mbKeyDown;
private boolean mbModifier;
private int meName;
private int mnSelEnd;
private int mnSelStart;
private boolean mbShift;
private Obj mTarget;
private String msSOAPFaultCode;
private String msSOAPFaultString;
private boolean mbReenter;
public String getPrevText() {
return this.msPrevText;
}
public void setPrevText(String sPrevText) {
this.msPrevText = sPrevText;
}
public String getPrevContentType() {
return this.msPrevContentType;
}
public void setPrevContentType(String sPrevContentType) {
this.msPrevContentType = sPrevContentType;
}
private String getChange() {
return this.msChange;
}
public void setChange(String sChange) {
this.msChange = sChange;
}
public String getNewText() {
return this.msNewText;
}
public void setNewText(String sNewText) {
this.msNewText = sNewText;
}
private String getNewContentType() {
return this.msNewContentType;
}
private void setNewContentType(String sNewContentType) {
this.msNewContentType = sNewContentType;
}
public String getFullText() {
return this.msFullText;
}
public void setFullText(String sFullText) {
this.msFullText = sFullText;
}
public int getCommitKey() {
return this.mnCommitKey;
}
public void setCommitKey(int nCommitKey) {
this.mnCommitKey = nCommitKey;
}
public boolean getKeyDown() {
return this.mbKeyDown;
}
public void setKeyDown(boolean bKeyDown) {
this.mbKeyDown = bKeyDown;
}
public boolean getModifier() {
return this.mbModifier;
}
public void setModifier(boolean bModifier) {
this.mbModifier = bModifier;
}
public int getName() {
return this.meName;
}
public void setName(int eName) {
this.meName = eName;
}
public int getSelEnd() {
return this.mnSelEnd;
}
public void setSelEnd(int nSelEnd) {
this.mnSelEnd = nSelEnd;
}
public int getSelStart() {
return this.mnSelStart;
}
public void setSelStart(int nSelStart) {
this.mnSelStart = nSelStart;
}
public boolean getShift() {
return this.mbShift;
}
public void setShift(boolean bShift) {
this.mbShift = bShift;
}
public Obj getTarget() {
return this.mTarget;
}
public void setTarget(Obj target) {
this.mTarget = target;
}
public String getSOAPFaultCode() {
return this.msSOAPFaultCode;
}
public void setSOAPFaultCode(String sSOAPFaultCode) {
this.msSOAPFaultCode = sSOAPFaultCode;
}
public String getSOAPFaultString() {
return this.msSOAPFaultString;
}
public void setSOAPFaultString(String sSOAPFaultString) {
this.msSOAPFaultString = sSOAPFaultString;
}
public boolean getReenter() {
return this.mbReenter;
}
public void setReenter(boolean bReenter) {
this.mbReenter = bReenter;
}
}
}