A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / Symbols.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 net.sourceforge.phpdt.internal.ui.text;
12
13 /**
14  * Symbols for the heuristic java scanner.
15  * 
16  * @since 3.0
17  */
18 public interface Symbols {
19         int TokenEOF = -1;
20
21         int TokenLBRACE = 1;
22
23         int TokenRBRACE = 2;
24
25         int TokenLBRACKET = 3;
26
27         int TokenRBRACKET = 4;
28
29         int TokenLPAREN = 5;
30
31         int TokenRPAREN = 6;
32
33         int TokenSEMICOLON = 7;
34
35         int TokenOTHER = 8;
36
37         int TokenCOLON = 9;
38
39         int TokenQUESTIONMARK = 10;
40
41         int TokenCOMMA = 11;
42
43         int TokenEQUAL = 12;
44
45         int TokenIF = 109;
46
47         int TokenDO = 1010;
48
49         int TokenFOR = 1011;
50
51         int TokenTRY = 1012;
52
53         int TokenCASE = 1013;
54
55         int TokenELSE = 1014;
56
57         int TokenBREAK = 1015;
58
59         int TokenCATCH = 1016;
60
61         int TokenWHILE = 1017;
62
63         int TokenRETURN = 1018;
64
65         int TokenSTATIC = 1019;
66
67         int TokenSWITCH = 1020;
68
69         int TokenFINALLY = 1021;
70
71         int TokenSYNCHRONIZED = 1022;
72
73         int TokenGOTO = 1023;
74
75         int TokenDEFAULT = 1024;
76
77         int TokenNEW = 1025;
78
79         int TokenIDENT = 2000;
80 }