Makefile fixup
[org.ibex.tool.git] / src / org / eclipse / jdt / internal / compiler / ast / OperatorIds.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package org.eclipse.jdt.internal.compiler.ast;
12
13 public interface OperatorIds {
14         public static final int AND_AND = 0;
15         public static final int OR_OR = 1;
16         public static final int AND = 2; 
17         public static final int OR = 3; 
18         public static final int LESS = 4;
19         public static final int LESS_EQUAL = 5;
20         public static final int GREATER = 6;
21         public static final int GREATER_EQUAL = 7;
22         public static final int XOR = 8;
23         public static final int DIVIDE = 9; 
24         public static final int LEFT_SHIFT = 10;
25         public static final int NOT = 11; 
26         public static final int TWIDDLE = 12; 
27         public static final int MINUS = 13; 
28         public static final int PLUS = 14; 
29         public static final int MULTIPLY = 15; 
30         public static final int REMAINDER = 16;
31         public static final int RIGHT_SHIFT = 17;
32         public static final int EQUAL_EQUAL = 18;
33         public static final int UNSIGNED_RIGHT_SHIFT= 19;
34         public static final int NumberOfTables = 20;
35
36         public static final int QUESTIONCOLON = 23;
37
38         public static final int NOT_EQUAL = 29;
39         public static final int EQUAL = 30;
40         public static final int INSTANCEOF = 31;
41         public static final int PLUS_PLUS = 32;
42         public static final int MINUS_MINUS = 33;
43 }