]> git.uio.no Git - ifi-stolz-refaktor.git/blob - case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/text/Symbols.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / ui / org / eclipse / jdt / internal / ui / text / Symbols.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2011 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 /**
15  * Symbols for the heuristic java scanner.
16  *
17  * @since 3.0
18  */
19 public interface Symbols {
20         int TokenEOF= -1;
21         int TokenLBRACE= 1;
22         int TokenRBRACE= 2;
23         int TokenLBRACKET= 3;
24         int TokenRBRACKET= 4;
25         int TokenLPAREN= 5;
26         int TokenRPAREN= 6;
27         int TokenSEMICOLON= 7;
28         int TokenOTHER= 8;
29         int TokenCOLON= 9;
30         int TokenQUESTIONMARK= 10;
31         int TokenCOMMA= 11;
32         int TokenEQUAL= 12;
33         int TokenLESSTHAN= 13;
34         int TokenGREATERTHAN= 14;
35         int TokenPLUS= 15;
36         int TokenAT= 16;
37         int TokenIF= 109;
38         int TokenDO= 1010;
39         int TokenFOR= 1011;
40         int TokenTRY= 1012;
41         int TokenCASE= 1013;
42         int TokenELSE= 1014;
43         int TokenBREAK= 1015;
44         int TokenCATCH= 1016;
45         int TokenWHILE= 1017;
46         int TokenRETURN= 1018;
47         int TokenSTATIC= 1019;
48         int TokenSWITCH= 1020;
49         int TokenFINALLY= 1021;
50         int TokenSYNCHRONIZED= 1022;
51         int TokenGOTO= 1023;
52         int TokenDEFAULT= 1024;
53         int TokenNEW= 1025;
54         int TokenCLASS= 1026;
55         int TokenINTERFACE= 1027;
56         int TokenENUM= 1028;
57         int TokenTHROWS= 1029;
58         int TokenIDENT= 2000;
59 }