ListBase.java
1.14 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa;
import com.adobe.xfa.ListBaseScript;
import com.adobe.xfa.Obj;
import com.adobe.xfa.ScriptTable;
public abstract class ListBase
extends Obj {
boolean mbReadOnly;
protected ListBase() {
this.mbReadOnly = false;
}
protected ListBase(boolean bReadOnly) {
this.mbReadOnly = bReadOnly;
}
public abstract void append(Obj var1);
@Override
public String getClassAtom() {
return "list";
}
@Override
public String getClassName() {
return "list";
}
@Override
public ScriptTable getScriptTable() {
return ListBaseScript.getScriptTable();
}
public abstract void insert(Obj var1, Obj var2);
public boolean isReadOnly() {
return this.mbReadOnly;
}
public void isReadOnly(boolean bReadOnly) {
this.mbReadOnly = bReadOnly;
}
public abstract Obj item(int var1);
public abstract int length();
public abstract void remove(Obj var1);
abstract boolean appendPermsCheck();
abstract boolean removePermsCheck(Obj var1);
abstract boolean insertPermsCheck();
}