ArithmeticLogicNode.java
578 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.forms.formcalc;
import com.adobe.forms.formcalc.CalcTransParser;
import com.adobe.forms.formcalc.SimpleNode;
import java.util.ArrayList;
import java.util.List;
public abstract class ArithmeticLogicNode
extends SimpleNode {
protected List<Integer> operators = new ArrayList<Integer>();
public ArithmeticLogicNode(CalcTransParser p, int i) {
super(p, i);
}
public ArithmeticLogicNode(int i) {
super(i);
}
public void addOperator(int op) {
this.operators.add(op);
}
}