Syntax highlighting is changeable.
[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         int TokenLBRACE= 1;
21         int TokenRBRACE= 2;
22         int TokenLBRACKET= 3;
23         int TokenRBRACKET= 4;
24         int TokenLPAREN= 5;
25         int TokenRPAREN= 6;
26         int TokenSEMICOLON= 7;
27         int TokenOTHER= 8;
28         int TokenCOLON= 9;
29         int TokenQUESTIONMARK= 10;
30         int TokenCOMMA= 11;
31         int TokenEQUAL= 12;
32         int TokenIF= 109;
33         int TokenDO= 1010;
34         int TokenFOR= 1011;
35         int TokenTRY= 1012;
36         int TokenCASE= 1013;
37         int TokenELSE= 1014;
38         int TokenBREAK= 1015;
39         int TokenCATCH= 1016;
40         int TokenWHILE= 1017;
41         int TokenRETURN= 1018;
42         int TokenSTATIC= 1019;
43         int TokenSWITCH= 1020;
44         int TokenFINALLY= 1021;
45         int TokenSYNCHRONIZED= 1022;
46         int TokenGOTO= 1023;
47         int TokenDEFAULT= 1024;
48         int TokenNEW= 1025;
49         int TokenIDENT= 2000;
50 }