Source Code Cross Referenced for TokenMgrError.java in  » Workflow-Engines » osbl-1_0 » org » concern » model » parser » 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 » Workflow Engines » osbl 1_0 » org.concern.model.parser 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:/* Generated By:JavaCC: Do not edit this  line. TokenMgrError.java Version 3.0 */
002:package org.concern.model.parser;
003:
004:public class TokenMgrError extends Error
005:{
006:   /*
007:    * Ordinals for various reasons why an Error of this type can be thrown.
008:    */
009:
010:   /**
011:    * Lexical error occured.
012:    */
013:   static final int LEXICAL_ERROR = 0;
014:
015:   /**
016:    * An attempt wass made to create a second instance of a static token manager.
017:    */
018:   static final int STATIC_LEXER_ERROR = 1;
019:
020:   /**
021:    * Tried to change to an invalid lexical state.
022:    */
023:   static final int INVALID_LEXICAL_STATE = 2;
024:
025:   /**
026:    * Detected (and bailed out of) an infinite loop in the token manager.
027:    */
028:   static final int LOOP_DETECTED = 3;
029:
030:   /**
031:    * Indicates the reason why the exception is thrown. It will have
032:    * one of the above 4 values.
033:    */
034:   int errorCode;
035:
036:   /**
037:    * Replaces unprintable characters by their espaced (or unicode escaped)
038:    * equivalents in the given string
039:    */
040:   protected static final String addEscapes(String str) {
041:      StringBuffer retval = new StringBuffer();
042:      char ch;
043:      for (int i = 0; i < str.length(); i++) {
044:        switch (str.charAt(i))
045:        {
046:           case 0 :
047:              continue;
048:           case '\b':
049:              retval.append("\\b");
050:              continue;
051:           case '\t':
052:              retval.append("\\t");
053:              continue;
054:           case '\n':
055:              retval.append("\\n");
056:              continue;
057:           case '\f':
058:              retval.append("\\f");
059:              continue;
060:           case '\r':
061:              retval.append("\\r");
062:              continue;
063:           case '\"':
064:              retval.append("\\\"");
065:              continue;
066:           case '\'':
067:              retval.append("\\\'");
068:              continue;
069:           case '\\':
070:              retval.append("\\\\");
071:              continue;
072:           default:
073:              if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
074:                 String s = "0000" + Integer.toString(ch, 16);
075:                 retval.append("\\u" + s.substring(s.length() - 4, s.length()));
076:              } else {
077:                 retval.append(ch);
078:              }
079:              continue;
080:        }
081:      }
082:      return retval.toString();
083:   }
084:
085:   /**
086:    * Returns a detailed message for the Error when it is thrown by the
087:    * token manager to indicate a lexical error.
088:    * Parameters : 
089:    *    EOFSeen     : indicates if EOF caused the lexicl error
090:    *    curLexState : lexical state in which this error occured
091:    *    errorLine   : line number when the error occured
092:    *    errorColumn : column number when the error occured
093:    *    errorAfter  : prefix that was seen before this error occured
094:    *    curchar     : the offending character
095:    * Note: You can customize the lexical error message by modifying this method.
096:    */
097:   protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) {
098:      return("Lexical error at line " +
099:           errorLine + ", column " +
100:           errorColumn + ".  Encountered: " +
101:           (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
102:           "after : \"" + addEscapes(errorAfter) + "\"");
103:   }
104:
105:   /**
106:    * You can also modify the body of this method to customize your error messages.
107:    * For example, cases like LOOP_DETECTED and INVALID_LEXICAL_STATE are not
108:    * of end-users concern, so you can return something like : 
109:    *
110:    *     "Internal Error : Please file a bug report .... "
111:    *
112:    * from this method for such cases in the release version of your parser.
113:    */
114:   public String getMessage() {
115:      return super .getMessage();
116:   }
117:
118:   /*
119:    * Constructors of various flavors follow.
120:    */
121:
122:   public TokenMgrError() {
123:   }
124:
125:   public TokenMgrError(String message, int reason) {
126:      super (message);
127:      errorCode = reason;
128:   }
129:
130:   public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
131:      this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
132:   }
133:}
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.