Source Code Cross Referenced for TreeToNFAConverterTokenTypes.java in  » Parser » antlr-3.0.1 » org » antlr » tool » 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 » Parser » antlr 3.0.1 » org.antlr.tool 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // $ANTLR 2.7.7 (2006-01-29): "buildnfa.g" -> "TreeToNFAConverter.java"$
002:
003:        /*
004:         [The "BSD licence"]
005:         Copyright (c) 2005-2006 Terence Parr
006:         All rights reserved.
007:
008:         Redistribution and use in source and binary forms, with or without
009:         modification, are permitted provided that the following conditions
010:         are met:
011:         1. Redistributions of source code must retain the above copyright
012:         notice, this list of conditions and the following disclaimer.
013:         2. Redistributions in binary form must reproduce the above copyright
014:         notice, this list of conditions and the following disclaimer in the
015:         documentation and/or other materials provided with the distribution.
016:         3. The name of the author may not be used to endorse or promote products
017:         derived from this software without specific prior written permission.
018:
019:         THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
020:         IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
021:         OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
022:         IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
023:         INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
024:         NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
025:         DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
026:         THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
027:         (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
028:         THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
029:         */
030:        package org.antlr.tool;
031:
032:        import java.util.*;
033:        import org.antlr.analysis.*;
034:        import org.antlr.misc.*;
035:
036:        public interface TreeToNFAConverterTokenTypes {
037:            int EOF = 1;
038:            int NULL_TREE_LOOKAHEAD = 3;
039:            int OPTIONS = 4;
040:            int TOKENS = 5;
041:            int PARSER = 6;
042:            int LEXER = 7;
043:            int RULE = 8;
044:            int BLOCK = 9;
045:            int OPTIONAL = 10;
046:            int CLOSURE = 11;
047:            int POSITIVE_CLOSURE = 12;
048:            int SYNPRED = 13;
049:            int RANGE = 14;
050:            int CHAR_RANGE = 15;
051:            int EPSILON = 16;
052:            int ALT = 17;
053:            int EOR = 18;
054:            int EOB = 19;
055:            int EOA = 20;
056:            int ID = 21;
057:            int ARG = 22;
058:            int ARGLIST = 23;
059:            int RET = 24;
060:            int LEXER_GRAMMAR = 25;
061:            int PARSER_GRAMMAR = 26;
062:            int TREE_GRAMMAR = 27;
063:            int COMBINED_GRAMMAR = 28;
064:            int INITACTION = 29;
065:            int LABEL = 30;
066:            int TEMPLATE = 31;
067:            int SCOPE = 32;
068:            int GATED_SEMPRED = 33;
069:            int SYN_SEMPRED = 34;
070:            int BACKTRACK_SEMPRED = 35;
071:            int FRAGMENT = 36;
072:            int ACTION = 37;
073:            int DOC_COMMENT = 38;
074:            int SEMI = 39;
075:            int LITERAL_lexer = 40;
076:            int LITERAL_tree = 41;
077:            int LITERAL_grammar = 42;
078:            int AMPERSAND = 43;
079:            int COLON = 44;
080:            int RCURLY = 45;
081:            int ASSIGN = 46;
082:            int STRING_LITERAL = 47;
083:            int CHAR_LITERAL = 48;
084:            int INT = 49;
085:            int STAR = 50;
086:            int TOKEN_REF = 51;
087:            int LITERAL_protected = 52;
088:            int LITERAL_public = 53;
089:            int LITERAL_private = 54;
090:            int BANG = 55;
091:            int ARG_ACTION = 56;
092:            int LITERAL_returns = 57;
093:            int LITERAL_throws = 58;
094:            int COMMA = 59;
095:            int LPAREN = 60;
096:            int OR = 61;
097:            int RPAREN = 62;
098:            int LITERAL_catch = 63;
099:            int LITERAL_finally = 64;
100:            int PLUS_ASSIGN = 65;
101:            int SEMPRED = 66;
102:            int IMPLIES = 67;
103:            int ROOT = 68;
104:            int RULE_REF = 69;
105:            int NOT = 70;
106:            int TREE_BEGIN = 71;
107:            int QUESTION = 72;
108:            int PLUS = 73;
109:            int WILDCARD = 74;
110:            int REWRITE = 75;
111:            int DOLLAR = 76;
112:            int DOUBLE_QUOTE_STRING_LITERAL = 77;
113:            int DOUBLE_ANGLE_STRING_LITERAL = 78;
114:            int WS = 79;
115:            int COMMENT = 80;
116:            int SL_COMMENT = 81;
117:            int ML_COMMENT = 82;
118:            int OPEN_ELEMENT_OPTION = 83;
119:            int CLOSE_ELEMENT_OPTION = 84;
120:            int ESC = 85;
121:            int DIGIT = 86;
122:            int XDIGIT = 87;
123:            int NESTED_ARG_ACTION = 88;
124:            int NESTED_ACTION = 89;
125:            int ACTION_CHAR_LITERAL = 90;
126:            int ACTION_STRING_LITERAL = 91;
127:            int ACTION_ESC = 92;
128:            int WS_LOOP = 93;
129:            int INTERNAL_RULE_REF = 94;
130:            int WS_OPT = 95;
131:            int SRC = 96;
132:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.