ASTFunctionCall.java
878 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.forms.formcalc;
import com.adobe.forms.formcalc.CalcTransParser;
import com.adobe.forms.formcalc.CalcTransParserVisitor;
import com.adobe.forms.formcalc.SimpleNode;
public class ASTFunctionCall
extends SimpleNode {
private String funName;
public String getFunName() {
return this.funName;
}
public void setFunName(String funName) {
this.funName = funName;
}
public ASTFunctionCall(int id) {
super(id);
}
public ASTFunctionCall(CalcTransParser p, int id) {
super(p, id);
}
@Override
public Object jjtAccept(CalcTransParserVisitor visitor, Object data) {
return visitor.visit(this, data);
}
@Override
public String toString() {
return super.toString() + "ASTFunctionCall [funName=" + this.funName + "]";
}
}