Source Code Cross Referenced for JavaParserConstants.java in  » IDE » tIDE » javaparser » javacc_gen » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE » tIDE » javaparser.javacc_gen 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package javaparser.javacc_gen;
002:
003:        /* Generated By:JavaCC: Do not edit this line. JavaParserConstants.java
004:         * added: public (to see them in older IDEs ;-)
005:         */
006:        public interface JavaParserConstants {
007:
008:            public int EOF = 0;
009:            public int SINGLE_LINE_COMMENT = 8;
010:            public int FORMAL_COMMENT = 9;
011:            public int MULTI_LINE_COMMENT = 10;
012:            public int ABSTRACT = 12;
013:            public int ASSERT = 13;
014:            public int BOOLEAN = 14;
015:            public int BREAK = 15;
016:            public int BYTE = 16;
017:            public int CASE = 17;
018:            public int CATCH = 18;
019:            public int CHAR = 19;
020:            public int CLASS = 20;
021:            public int CONST = 21;
022:            public int CONTINUE = 22;
023:            public int _DEFAULT = 23;
024:            public int DO = 24;
025:            public int DOUBLE = 25;
026:            public int ELSE = 26;
027:            public int ENUM = 27;
028:            public int EXTENDS = 28;
029:            public int FALSE = 29;
030:            public int FINAL = 30;
031:            public int FINALLY = 31;
032:            public int FLOAT = 32;
033:            public int FOR = 33;
034:            public int GOTO = 34;
035:            public int IF = 35;
036:            public int IMPLEMENTS = 36;
037:            public int IMPORT = 37;
038:            public int INSTANCEOF = 38;
039:            public int INT = 39;
040:            public int INTERFACE = 40;
041:            public int LONG = 41;
042:            public int NATIVE = 42;
043:            public int NEW = 43;
044:            public int NULL = 44;
045:            public int PACKAGE = 45;
046:            public int PRIVATE = 46;
047:            public int PROTECTED = 47;
048:            public int PUBLIC = 48;
049:            public int RETURN = 49;
050:            public int SHORT = 50;
051:            public int STATIC = 51;
052:            public int STRICTFP = 52;
053:            public int SUPER = 53;
054:            public int SWITCH = 54;
055:            public int SYNCHRONIZED = 55;
056:            public int THIS = 56;
057:            public int THROW = 57;
058:            public int THROWS = 58;
059:            public int TRANSIENT = 59;
060:            public int TRUE = 60;
061:            public int TRY = 61;
062:            public int VOID = 62;
063:            public int VOLATILE = 63;
064:            public int WHILE = 64;
065:            public int INTEGER_LITERAL = 65;
066:            public int DECIMAL_LITERAL = 66;
067:            public int HEX_LITERAL = 67;
068:            public int OCTAL_LITERAL = 68;
069:            public int FLOATING_POINT_LITERAL = 69;
070:            public int DECIMAL_FLOATING_POINT_LITERAL = 70;
071:            public int DECIMAL_EXPONENT = 71;
072:            public int HEXADECIMAL_FLOATING_POINT_LITERAL = 72;
073:            public int HEXADECIMAL_EXPONENT = 73;
074:            public int CHARACTER_LITERAL = 74;
075:            public int STRING_LITERAL = 75;
076:            public int IDENTIFIER = 76;
077:            public int LETTER = 77;
078:            public int PART_LETTER = 78;
079:            public int LPAREN = 79;
080:            public int RPAREN = 80;
081:            public int LBRACE = 81;
082:            public int RBRACE = 82;
083:            public int LBRACKET = 83;
084:            public int RBRACKET = 84;
085:            public int SEMICOLON = 85;
086:            public int COMMA = 86;
087:            public int DOT = 87;
088:            public int AT = 88;
089:            public int ASSIGN = 89;
090:            public int LT = 90;
091:            public int BANG = 91;
092:            public int TILDE = 92;
093:            public int HOOK = 93;
094:            public int COLON = 94;
095:            public int EQ = 95;
096:            public int LE = 96;
097:            public int GE = 97;
098:            public int NE = 98;
099:            public int SC_OR = 99;
100:            public int SC_AND = 100;
101:            public int INCR = 101;
102:            public int DECR = 102;
103:            public int PLUS = 103;
104:            public int MINUS = 104;
105:            public int STAR = 105;
106:            public int SLASH = 106;
107:            public int BIT_AND = 107;
108:            public int BIT_OR = 108;
109:            public int XOR = 109;
110:            public int REM = 110;
111:            public int LSHIFT = 111;
112:            public int PLUSASSIGN = 112;
113:            public int MINUSASSIGN = 113;
114:            public int STARASSIGN = 114;
115:            public int SLASHASSIGN = 115;
116:            public int ANDASSIGN = 116;
117:            public int ORASSIGN = 117;
118:            public int XORASSIGN = 118;
119:            public int REMASSIGN = 119;
120:            public int LSHIFTASSIGN = 120;
121:            public int RSIGNEDSHIFTASSIGN = 121;
122:            public int RUNSIGNEDSHIFTASSIGN = 122;
123:            public int ELLIPSIS = 123;
124:            public int RUNSIGNEDSHIFT = 124;
125:            public int RSIGNEDSHIFT = 125;
126:            public int GT = 126;
127:            public int STUFF_TO_IGNORE = 128;
128:
129:            public int DEFAULT = 0;
130:            public int IN_FORMAL_COMMENT = 1;
131:            public int IN_MULTI_LINE_COMMENT = 2;
132:
133:            public String[] tokenImage = { "<EOF>", "\" \"", "\"\\t\"",
134:                    "\"\\n\"", "\"\\r\"", "\"\\f\"", "<token of kind 6>",
135:                    "\"/*\"", "<SINGLE_LINE_COMMENT>", "\"*/\"", "\"*/\"",
136:                    "<token of kind 11>", "\"abstract\"", "\"assert\"",
137:                    "\"boolean\"", "\"break\"", "\"byte\"", "\"case\"",
138:                    "\"catch\"", "\"char\"", "\"class\"", "\"const\"",
139:                    "\"continue\"", "\"default\"", "\"do\"", "\"double\"",
140:                    "\"else\"", "\"enum\"", "\"extends\"", "\"false\"",
141:                    "\"final\"", "\"finally\"", "\"float\"", "\"for\"",
142:                    "\"goto\"", "\"if\"", "\"implements\"", "\"import\"",
143:                    "\"instanceof\"", "\"int\"", "\"interface\"", "\"long\"",
144:                    "\"native\"", "\"new\"", "\"null\"", "\"package\"",
145:                    "\"private\"", "\"protected\"", "\"public\"", "\"return\"",
146:                    "\"short\"", "\"static\"", "\"strictfp\"", "\"super\"",
147:                    "\"switch\"", "\"synchronized\"", "\"this\"", "\"throw\"",
148:                    "\"throws\"", "\"transient\"", "\"true\"", "\"try\"",
149:                    "\"void\"", "\"volatile\"", "\"while\"",
150:                    "<INTEGER_LITERAL>", "<DECIMAL_LITERAL>", "<HEX_LITERAL>",
151:                    "<OCTAL_LITERAL>", "<FLOATING_POINT_LITERAL>",
152:                    "<DECIMAL_FLOATING_POINT_LITERAL>", "<DECIMAL_EXPONENT>",
153:                    "<HEXADECIMAL_FLOATING_POINT_LITERAL>",
154:                    "<HEXADECIMAL_EXPONENT>", "<CHARACTER_LITERAL>",
155:                    "<STRING_LITERAL>", "<IDENTIFIER>", "<LETTER>",
156:                    "<PART_LETTER>", "\"(\"", "\")\"", "\"{\"", "\"}\"",
157:                    "\"[\"", "\"]\"", "\";\"", "\",\"", "\".\"", "\"@\"",
158:                    "\"=\"", "\"<\"", "\"!\"", "\"~\"", "\"?\"", "\":\"",
159:                    "\"==\"", "\"<=\"", "\">=\"", "\"!=\"", "\"||\"", "\"&&\"",
160:                    "\"++\"", "\"--\"", "\"+\"", "\"-\"", "\"*\"", "\"/\"",
161:                    "\"&\"", "\"|\"", "\"^\"", "\"%\"", "\"<<\"", "\"+=\"",
162:                    "\"-=\"", "\"*=\"", "\"/=\"", "\"&=\"", "\"|=\"", "\"^=\"",
163:                    "\"%=\"", "\"<<=\"", "\">>=\"", "\">>>=\"", "\"...\"",
164:                    "\">>>\"", "\">>\"", "\">\"", "\"\\u001a\"",
165:                    "<STUFF_TO_IGNORE>", };
166:
167:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.