Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
blob: f8b31a5950f76e2e6a86269ea3453522f7025656 (plain) (blame)
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
package org.eclipse.jst.jsp.core.internal.java.jspel;

import java.util.ArrayList;
import java.util.List;

public class ASTOperatorExpression extends SimpleNode {
	protected ArrayList operatorTokens = new ArrayList();

	public ASTOperatorExpression(int i) {
		super(i);
	}
	
	public ASTOperatorExpression(JSPELParser p, int i) {
		this(i);
		parser = p;
	}

	public void addOperatorToken(Token opToken) {
		operatorTokens.add(opToken);
	}
	
	public List getOperatorTokens() {
		return operatorTokens;
	}
}

Back to the top