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


001:        /*
002:         [The "BSD licence"]
003:         Copyright (c) 2005 Terence Parr
004:         Copyright (c) 2006 Kay Roepke (Objective-C runtime)
005:         All rights reserved.
006:         
007:         Redistribution and use in source and binary forms, with or without
008:         modification, are permitted provided that the following conditions
009:         are met:
010:         1. Redistributions of source code must retain the above copyright
011:         notice, this list of conditions and the following disclaimer.
012:         2. Redistributions in binary form must reproduce the above copyright
013:         notice, this list of conditions and the following disclaimer in the
014:         documentation and/or other materials provided with the distribution.
015:         3. The name of the author may not be used to endorse or promote products
016:         derived from this software without specific prior written permission.
017:         
018:         THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
019:         IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
020:         OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
021:         IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
022:         INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
023:         NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
024:         DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
025:         THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
026:         (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
027:         THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
028:         */
029:        package org.antlr.codegen;
030:
031:        import org.antlr.stringtemplate.StringTemplate;
032:        import org.antlr.tool.Grammar;
033:        import org.antlr.Tool;
034:        import org.antlr.misc.Utils;
035:
036:        import java.io.IOException;
037:
038:        public class ObjCTarget extends Target {
039:            protected void genRecognizerHeaderFile(Tool tool,
040:                    CodeGenerator generator, Grammar grammar,
041:                    StringTemplate headerFileST, String extName)
042:                    throws IOException {
043:                generator.write(headerFileST, grammar.name
044:                        + Grammar.grammarTypeToFileNameSuffix[grammar.type]
045:                        + extName);
046:            }
047:
048:            public String getTargetCharLiteralFromANTLRCharLiteral(
049:                    CodeGenerator generator, String literal) {
050:                if (literal.startsWith("'\\u")) {
051:                    literal = "0x" + literal.substring(3, 7);
052:                } else {
053:                    int c = literal.charAt(1); // TJP
054:                    if (c < 32 || c > 127) {
055:                        literal = "0x" + Integer.toHexString(c);
056:                    }
057:                }
058:
059:                return literal;
060:            }
061:
062:            /** Convert from an ANTLR string literal found in a grammar file to
063:             *  an equivalent string literal in the target language.  For Java, this
064:             *  is the translation 'a\n"' -> "a\n\"".  Expect single quotes
065:             *  around the incoming literal.  Just flip the quotes and replace
066:             *  double quotes with \"
067:             */
068:            public String getTargetStringLiteralFromANTLRStringLiteral(
069:                    CodeGenerator generator, String literal) {
070:                literal = Utils.replace(literal, "\"", "\\\"");
071:                StringBuffer buf = new StringBuffer(literal);
072:                buf.setCharAt(0, '"');
073:                buf.setCharAt(literal.length() - 1, '"');
074:                buf.insert(0, '@');
075:                return buf.toString();
076:            }
077:
078:            /** If we have a label, prefix it with the recognizer's name */
079:            public String getTokenTypeAsTargetLabel(CodeGenerator generator,
080:                    int ttype) {
081:                String name = generator.grammar.getTokenDisplayName(ttype);
082:                // If name is a literal, return the token type instead
083:                if (name.charAt(0) == '\'') {
084:                    return String.valueOf(ttype);
085:                }
086:                return generator.grammar.name
087:                        + Grammar.grammarTypeToFileNameSuffix[generator.grammar.type]
088:                        + "_" + name;
089:                //return super.getTokenTypeAsTargetLabel(generator, ttype);
090:                //return this.getTokenTextAndTypeAsTargetLabel(generator, null, ttype);
091:            }
092:
093:            /** Target must be able to override the labels used for token types. Sometimes also depends on the token text.*/
094:            public String getTokenTextAndTypeAsTargetLabel(
095:                    CodeGenerator generator, String text, int tokenType) {
096:                String name = generator.grammar.getTokenDisplayName(tokenType);
097:                // If name is a literal, return the token type instead
098:                if (name.charAt(0) == '\'') {
099:                    return String.valueOf(tokenType);
100:                }
101:                String textEquivalent = text == null ? name : text;
102:                if (textEquivalent.charAt(0) >= '0'
103:                        && textEquivalent.charAt(0) <= '9') {
104:                    return textEquivalent;
105:                } else {
106:                    return generator.grammar.name
107:                            + Grammar.grammarTypeToFileNameSuffix[generator.grammar.type]
108:                            + "_" + textEquivalent;
109:                }
110:            }
111:
112:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.