ScriptDynamicPropObj.java
1.04 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.Arg;
import com.adobe.xfa.Obj;
import com.adobe.xfa.ObjScript;
public abstract class ScriptDynamicPropObj {
private final int mnXFAVersion;
private final int mnAvailability;
public ScriptDynamicPropObj(int nXFAVersion, int nAvailability) {
this.mnXFAVersion = nXFAVersion;
this.mnAvailability = nAvailability;
}
public abstract boolean invokeGetProp(Obj var1, Arg var2, String var3);
public boolean invokeSetProp(Obj scriptThis, Arg propertyValue, String sPropertyName) {
assert (false);
return false;
}
public final boolean invokePermsFunc(Obj scriptThis) {
return ObjScript.setPropPermsCheck(scriptThis);
}
public boolean hasGetter() {
return true;
}
public boolean hasSetter() {
return false;
}
public final int getXFAVersion() {
return this.mnXFAVersion;
}
public final int getAvailability() {
return this.mnAvailability;
}
}