PseudoModel.java
934 Bytes
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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.EventManager;
import com.adobe.xfa.Obj;
import com.adobe.xfa.PseudoModelScript;
import com.adobe.xfa.ScriptTable;
public abstract class PseudoModel
extends Obj {
private EventManager.EventTable mEventTable;
private String maClassName;
public Obj getAliasObject() {
return this;
}
@Override
public EventManager.EventTable getEventTable(boolean bCreate) {
if (bCreate && this.mEventTable == null) {
this.mEventTable = new EventManager.EventTable();
}
return this.mEventTable;
}
@Override
public ScriptTable getScriptTable() {
return PseudoModelScript.getScriptTable();
}
protected void setClass(String aClassName) {
this.maClassName = aClassName;
}
@Override
public String getClassName() {
return this.maClassName;
}
}