ASTFunctionCall.java 878 Bytes
/*
 * 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 + "]";
    }
}