A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / OperatorIds.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 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 net.sourceforge.phpdt.internal.compiler.ast;
12
13 public interface OperatorIds {
14         public static final int AND_AND = 0;
15
16         public static final int OR_OR = 1;
17
18         public static final int AND = 2;
19
20         public static final int OR = 3;
21
22         public static final int LESS = 4;
23
24         public static final int LESS_EQUAL = 5;
25
26         public static final int GREATER = 6;
27
28         public static final int GREATER_EQUAL = 7;
29
30         public static final int XOR = 8;
31
32         public static final int DIVIDE = 9;
33
34         public static final int LEFT_SHIFT = 10;
35
36         public static final int NOT = 11;
37
38         public static final int TWIDDLE = 12;
39
40         public static final int MINUS = 13;
41
42         public static final int PLUS = 14;
43
44         public static final int MULTIPLY = 15;
45
46         public static final int REMAINDER = 16;
47
48         public static final int RIGHT_SHIFT = 17;
49
50         public static final int EQUAL_EQUAL = 18;
51
52         public static final int UNSIGNED_RIGHT_SHIFT = 19;
53
54         public static final int NumberOfTables = 20;
55
56         public static final int QUESTIONCOLON = 23;
57
58         public static final int NOT_EQUAL = 29;
59
60         public static final int EQUAL = 30;
61
62         public static final int INSTANCEOF = 31;
63
64         public static final int PLUS_PLUS = 32;
65
66         public static final int MINUS_MINUS = 33;
67 }