Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3da6b77f5708abf9190875131ddebbb50c8937cd (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
26
27
28
29
30
31
32
33
34
35
36
/*******************************************************************************
 * Copyright (c) 2005 BEA Systems and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     BEA Systems - initial implementation
 *     
 *******************************************************************************/
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