KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > ui > text > Symbols


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.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 TokenLESSTHAN= 13;
33     int TokenGREATERTHAN= 14;
34     int TokenIF= 109;
35     int TokenDO= 1010;
36     int TokenFOR= 1011;
37     int TokenTRY= 1012;
38     int TokenCASE= 1013;
39     int TokenELSE= 1014;
40     int TokenBREAK= 1015;
41     int TokenCATCH= 1016;
42     int TokenWHILE= 1017;
43     int TokenRETURN= 1018;
44     int TokenSTATIC= 1019;
45     int TokenSWITCH= 1020;
46     int TokenFINALLY= 1021;
47     int TokenSYNCHRONIZED= 1022;
48     int TokenGOTO= 1023;
49     int TokenDEFAULT= 1024;
50     int TokenNEW= 1025;
51     int TokenCLASS= 1026;
52     int TokenINTERFACE= 1027;
53     int TokenENUM= 1028;
54     int TokenIDENT= 2000;
55 }
56
Popular Tags