Source Code Cross Referenced for ErrorTags.java in  » XML-UI » gui4j » org » gui4j » exception » 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 » XML UI » gui4j » org.gui4j.exception 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.gui4j.exception;
002:
003:        /**
004:         * This interface contains only error tag declarations
005:         */
006:        public interface ErrorTags {
007:            String EXCEPTION_OCCURED = "exception_occured";
008:            String RESOURCE_ERROR = "resource_error";
009:            String PROGRAMMING_ERROR = "programming_error";
010:
011:            /**
012:             * Parameters: stringValue
013:             */
014:            String RESOURCE_ERROR_int_DataConversionException = "resource_error_int_DataConversionException";
015:
016:            /**
017:             * Parameters: stringValue
018:             */
019:            String RESOURCE_ERROR_double_DataConversionException = "resource_error_double_DataConversionException";
020:
021:            /**
022:             * Parameters: currentType, expectedType, accessPath
023:             */
024:            String RESOURCE_ERROR_access_type_not_compatible = "resource_error_access_type_not_compatible";
025:
026:            /**
027:             * Parameters: currentType, expectedType
028:             */
029:            String RESOURCE_ERROR_type_not_compatible = "resource_error_type_not_compatible";
030:
031:            /**
032:             * Exception
033:             */
034:            String RESOURCE_ERROR_jdom_exception = "resource_error_jdom_exception";
035:
036:            /**
037:             * Parameter: relUrl
038:             */
039:            String RESOURCE_ERROR_invalid_url = "resource_error_invalid_url";
040:
041:            /**
042:             * Parameter: id, includeURL
043:             */
044:            String RESOURCE_ERROR_unknown_param = "resource_error_unknown_param";
045:
046:            /**
047:             * Parameter: id, includeURL
048:             */
049:            String RESOURCE_ERROR_unknown_param_in_include = "resource_error_unknown_param_in_include";
050:
051:            /**
052:             * Parameter: aliasName, className
053:             */
054:            String RESOURCE_ERROR_alias_class_not_found = "resource_error_alias_class_not_found";
055:
056:            /**
057:             * Parameter: accessPath, aliasName
058:             */
059:            String RESOURCE_ERROR_alias_not_defined_in_path = "resource_error_alias_not_defined_in_path";
060:
061:            /**
062:             * Parameter: aliasName
063:             */
064:            String RESOURCE_ERROR_alias_undefined = "resource_error_alias_undefined";
065:
066:            /**
067:             * Parameter: aliasName
068:             */
069:            String RESOURCE_ERROR_alias_already_defined = "resource_error_alias_already_defined";
070:
071:            /**
072:             * Parameter: accessPath, position
073:             */
074:            String RESOURCE_ERROR_access_unexpected_character = "resource_error_access_unexpected_character";
075:
076:            /**
077:             * Parameter: accessPath, position
078:             */
079:            String RESOURCE_ERROR_access_unexpected_end = "resource_error_access_unexpected_end";
080:
081:            /**
082:             * Parameter: accessPath
083:             */
084:            String RESOURCE_ERROR_access_value_type_not_defined = "resource_error_access_value_type_not_defined";
085:
086:            /**
087:             * Parameters: placementTag
088:             */
089:            String RESOURCE_ERROR_element_must_contain_gui4jComponent = "resource_error_element_must_contain_gui4jComponent";
090:
091:            /**
092:             * Parameters: id
093:             */
094:            String RESOURCE_ERROR_gui4jComponent_already_defined = "resource_error_gui4jComponent_already_defined";
095:
096:            /**
097:             * Parameters: id
098:             */
099:            String RESOURCE_ERROR_gui4jComponent_not_defined = "resource_error_gui4jComponent_not_defined";
100:
101:            /**
102:             * Parameters: name
103:             */
104:            String RESOURCE_ERROR_gui4jComponent_not_registered = "resource_error_gui4jComponent_not_registered";
105:
106:            /**
107:             * Parameters: name
108:             */
109:            String RESOURCE_ERROR_gui4jComponent_already_registered = "resource_error_gui4jComponent_already_registered";
110:
111:            /**
112:             * Parameters: row, col
113:             */
114:            String RESOURCE_ERROR_element_at_row_col_already_defined = "resource_error_element_at_row_col_already_defined";
115:
116:            /**
117:             * Parameters: row, rows
118:             */
119:            String RESOURCE_ERROR_invalid_row = "resource_invalid_row";
120:
121:            /**
122:             * Parameters: column, columns
123:             */
124:            String RESOURCE_ERROR_invalid_column = "resource_invalid_column";
125:
126:            /**
127:             * Parameter: styleName
128:             */
129:            String RESOURCE_ERROR_style_defined_twice = "resource_error_style_defined_twice";
130:
131:            /**
132:             * Parameter: styleName
133:             */
134:            String RESOURCE_ERROR_style_not_defined = "resource_error_style_not_defined";
135:
136:            /**
137:             * Parameter: propertyName, methodResultType, gui4jAccessArgumentType
138:             */
139:            String RESOURCE_ERROR_property_getter_type_incompatible = "resource_error_property_getter_type_incompatible";
140:
141:            /**
142:             * Parameters: tag, attribute
143:             */
144:            String RESOURCE_ERROR_attribute_not_defined = "resource_error_attribute_not_defined";
145:
146:            /**
147:             * No args
148:             */
149:            String RESOURCE_ERROR_attribute_listEditable_defined = "resource_error_attribute_listEditable_defined";
150:
151:            /**
152:             * No args
153:             */
154:            String RESOURCE_ERROR_attribute_editable_defined = "resource_error_attribute_editable_defined";
155:
156:            /**
157:             * Parameters: id
158:             */
159:            String RESOURCE_ERROR_invalid_defaultButton = "resource_error_invalid_defaultButton";
160:
161:            /**
162:             * Parameters: keystroke string
163:             */
164:            String RESOURCE_ERROR_invalid_keystroke = "resource_error_invalid_keystroke";
165:
166:            /**
167:             * Parameters: str
168:             */
169:            String RESOURCE_ERROR_tableLayout_invalid_col_row_str = "resource_error_tableLayout_invalid_col_row_str";
170:
171:            /**
172:             * No args
173:             */
174:            String RESOURCE_ERROR_unexpected_gui4jStyle_end = "resource_error_unexpected_gui4jStyle_end";
175:
176:            /**
177:             * No args
178:             */
179:            String RESOURCE_ERROR_labelform_column_conflict = "resource_error_labelform_column_conflict";
180:
181:            /**
182:             * No args
183:             */
184:            String PROGRAMMING_ERROR_parameter_null = "programming_error_parameter_null";
185:
186:            /**
187:             * No args
188:             */
189:            String PROGRAMMING_ERROR_invocation_target_exception = "programming_error_invocation_target_exception";
190:
191:            /**
192:             * No args
193:             */
194:            String PROGRAMMING_ERROR_illegal_access_exception = "programming_error_illegal_access_exception";
195:
196:            /**
197:             * No args
198:             */
199:            String PROGRAMMING_ERROR_instantiation_exception = "programming_error_instantiation_exception";
200:
201:            /**
202:             * Parameters: class, methodName, signature
203:             */
204:            String PROGRAMMING_ERROR_method_ambiguous = "programming_error_method_ambiguous";
205:
206:            /**
207:             * Parameters: class, methodName, signature, context
208:             */
209:            String PROGRAMMING_ERROR_method_not_found = "programming_error_method_not_found";
210:
211:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.