Source Code Cross Referenced for XSLTErrorResources_de.java in  » XML » xalan » org » apache » xalan » res » 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 » xalan » org.apache.xalan.res 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


0001:        /*
0002:         * Copyright 1999-2004 The Apache Software Foundation.
0003:         *
0004:         * Licensed under the Apache License, Version 2.0 (the "License");
0005:         * you may not use this file except in compliance with the License.
0006:         * You may obtain a copy of the License at
0007:         *
0008:         *     http://www.apache.org/licenses/LICENSE-2.0
0009:         *
0010:         * Unless required by applicable law or agreed to in writing, software
0011:         * distributed under the License is distributed on an "AS IS" BASIS,
0012:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0013:         * See the License for the specific language governing permissions and
0014:         * limitations under the License.
0015:         */
0016:        /*
0017:         * $Id: XSLTErrorResources_de.java,v 1.9 2004/12/15 17:35:31 jycli Exp $
0018:         */
0019:        package org.apache.xalan.res;
0020:
0021:        import java.util.ListResourceBundle;
0022:        import java.util.Locale;
0023:        import java.util.MissingResourceException;
0024:        import java.util.ResourceBundle;
0025:
0026:        /**
0027:         * Set up error messages.
0028:         * We build a two dimensional array of message keys and
0029:         * message strings. In order to add a new message here,
0030:         * you need to first add a String constant. And
0031:         *  you need to enter key , value pair as part of contents
0032:         * Array. You also need to update MAX_CODE for error strings
0033:         * and MAX_WARNING for warnings ( Needed for only information
0034:         * purpose )
0035:         */
0036:        public class XSLTErrorResources_de extends ListResourceBundle {
0037:
0038:            /*
0039:             * This file contains error and warning messages related to Xalan Error
0040:             * Handling.
0041:             *
0042:             *  General notes to translators:
0043:             *
0044:             *  1) Xalan (or more properly, Xalan-interpretive) and XSLTC are names of
0045:             *     components.
0046:             *     XSLT is an acronym for "XML Stylesheet Language: Transformations".
0047:             *     XSLTC is an acronym for XSLT Compiler.
0048:             *
0049:             *  2) A stylesheet is a description of how to transform an input XML document
0050:             *     into a resultant XML document (or HTML document or text).  The
0051:             *     stylesheet itself is described in the form of an XML document.
0052:             *
0053:             *  3) A template is a component of a stylesheet that is used to match a
0054:             *     particular portion of an input document and specifies the form of the
0055:             *     corresponding portion of the output document.
0056:             *
0057:             *  4) An element is a mark-up tag in an XML document; an attribute is a
0058:             *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'>
0059:             *     "elem" is an element name, "attr" and "attr2" are attribute names with
0060:             *     the values "val" and "val2", respectively.
0061:             *
0062:             *  5) A namespace declaration is a special attribute that is used to associate
0063:             *     a prefix with a URI (the namespace).  The meanings of element names and
0064:             *     attribute names that use that prefix are defined with respect to that
0065:             *     namespace.
0066:             *
0067:             *  6) "Translet" is an invented term that describes the class file that
0068:             *     results from compiling an XML stylesheet into a Java class.
0069:             *
0070:             *  7) XPath is a specification that describes a notation for identifying
0071:             *     nodes in a tree-structured representation of an XML document.  An
0072:             *     instance of that notation is referred to as an XPath expression.
0073:             *
0074:             */
0075:
0076:            /** Maximum error messages, this is needed to keep track of the number of messages.    */
0077:            public static final int MAX_CODE = 201;
0078:
0079:            /** Maximum warnings, this is needed to keep track of the number of warnings.          */
0080:            public static final int MAX_WARNING = 29;
0081:
0082:            /** Maximum misc strings.   */
0083:            public static final int MAX_OTHERS = 55;
0084:
0085:            /** Maximum total warnings and error messages.          */
0086:            public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
0087:
0088:            /*
0089:             * Static variables
0090:             */
0091:            public static final String ER_NO_CURLYBRACE = "ER_NO_CURLYBRACE";;
0092:            public static final String ER_ILLEGAL_ATTRIBUTE = "ER_ILLEGAL_ATTRIBUTE";
0093:            public static final String ER_NULL_SOURCENODE_APPLYIMPORTS = "ER_NULL_SOURCENODE_APPLYIMPORTS";
0094:            public static final String ER_CANNOT_ADD = "ER_CANNOT_ADD";
0095:            public static final String ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = "ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES";
0096:            public static final String ER_NO_NAME_ATTRIB = "ER_NO_NAME_ATTRIB";
0097:            public static final String ER_TEMPLATE_NOT_FOUND = "ER_TEMPLATE_NOT_FOUND";
0098:            public static final String ER_CANT_RESOLVE_NAME_AVT = "ER_CANT_RESOLVE_NAME_AVT";
0099:            public static final String ER_REQUIRES_ATTRIB = "ER_REQUIRES_ATTRIB";
0100:            public static final String ER_MUST_HAVE_TEST_ATTRIB = "ER_MUST_HAVE_TEST_ATTRIB";
0101:            public static final String ER_BAD_VAL_ON_LEVEL_ATTRIB = "ER_BAD_VAL_ON_LEVEL_ATTRIB";
0102:            public static final String ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = "ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML";
0103:            public static final String ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = "ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME";
0104:            public static final String ER_NEED_MATCH_ATTRIB = "ER_NEED_MATCH_ATTRIB";
0105:            public static final String ER_NEED_NAME_OR_MATCH_ATTRIB = "ER_NEED_NAME_OR_MATCH_ATTRIB";
0106:            public static final String ER_CANT_RESOLVE_NSPREFIX = "ER_CANT_RESOLVE_NSPREFIX";
0107:            public static final String ER_ILLEGAL_VALUE = "ER_ILLEGAL_VALUE";
0108:            public static final String ER_NO_OWNERDOC = "ER_NO_OWNERDOC";
0109:            public static final String ER_ELEMTEMPLATEELEM_ERR = "ER_ELEMTEMPLATEELEM_ERR";
0110:            public static final String ER_NULL_CHILD = "ER_NULL_CHILD";
0111:            public static final String ER_NEED_SELECT_ATTRIB = "ER_NEED_SELECT_ATTRIB";
0112:            public static final String ER_NEED_TEST_ATTRIB = "ER_NEED_TEST_ATTRIB";
0113:            public static final String ER_NEED_NAME_ATTRIB = "ER_NEED_NAME_ATTRIB";
0114:            public static final String ER_NO_CONTEXT_OWNERDOC = "ER_NO_CONTEXT_OWNERDOC";
0115:            public static final String ER_COULD_NOT_CREATE_XML_PROC_LIAISON = "ER_COULD_NOT_CREATE_XML_PROC_LIAISON";
0116:            public static final String ER_PROCESS_NOT_SUCCESSFUL = "ER_PROCESS_NOT_SUCCESSFUL";
0117:            public static final String ER_NOT_SUCCESSFUL = "ER_NOT_SUCCESSFUL";
0118:            public static final String ER_ENCODING_NOT_SUPPORTED = "ER_ENCODING_NOT_SUPPORTED";
0119:            public static final String ER_COULD_NOT_CREATE_TRACELISTENER = "ER_COULD_NOT_CREATE_TRACELISTENER";
0120:            public static final String ER_KEY_REQUIRES_NAME_ATTRIB = "ER_KEY_REQUIRES_NAME_ATTRIB";
0121:            public static final String ER_KEY_REQUIRES_MATCH_ATTRIB = "ER_KEY_REQUIRES_MATCH_ATTRIB";
0122:            public static final String ER_KEY_REQUIRES_USE_ATTRIB = "ER_KEY_REQUIRES_USE_ATTRIB";
0123:            public static final String ER_REQUIRES_ELEMENTS_ATTRIB = "ER_REQUIRES_ELEMENTS_ATTRIB";
0124:            public static final String ER_MISSING_PREFIX_ATTRIB = "ER_MISSING_PREFIX_ATTRIB";
0125:            public static final String ER_BAD_STYLESHEET_URL = "ER_BAD_STYLESHEET_URL";
0126:            public static final String ER_FILE_NOT_FOUND = "ER_FILE_NOT_FOUND";
0127:            public static final String ER_IOEXCEPTION = "ER_IOEXCEPTION";
0128:            public static final String ER_NO_HREF_ATTRIB = "ER_NO_HREF_ATTRIB";
0129:            public static final String ER_STYLESHEET_INCLUDES_ITSELF = "ER_STYLESHEET_INCLUDES_ITSELF";
0130:            public static final String ER_PROCESSINCLUDE_ERROR = "ER_PROCESSINCLUDE_ERROR";
0131:            public static final String ER_MISSING_LANG_ATTRIB = "ER_MISSING_LANG_ATTRIB";
0132:            public static final String ER_MISSING_CONTAINER_ELEMENT_COMPONENT = "ER_MISSING_CONTAINER_ELEMENT_COMPONENT";
0133:            public static final String ER_CAN_ONLY_OUTPUT_TO_ELEMENT = "ER_CAN_ONLY_OUTPUT_TO_ELEMENT";
0134:            public static final String ER_PROCESS_ERROR = "ER_PROCESS_ERROR";
0135:            public static final String ER_UNIMPLNODE_ERROR = "ER_UNIMPLNODE_ERROR";
0136:            public static final String ER_NO_SELECT_EXPRESSION = "ER_NO_SELECT_EXPRESSION";
0137:            public static final String ER_CANNOT_SERIALIZE_XSLPROCESSOR = "ER_CANNOT_SERIALIZE_XSLPROCESSOR";
0138:            public static final String ER_NO_INPUT_STYLESHEET = "ER_NO_INPUT_STYLESHEET";
0139:            public static final String ER_FAILED_PROCESS_STYLESHEET = "ER_FAILED_PROCESS_STYLESHEET";
0140:            public static final String ER_COULDNT_PARSE_DOC = "ER_COULDNT_PARSE_DOC";
0141:            public static final String ER_COULDNT_FIND_FRAGMENT = "ER_COULDNT_FIND_FRAGMENT";
0142:            public static final String ER_NODE_NOT_ELEMENT = "ER_NODE_NOT_ELEMENT";
0143:            public static final String ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = "ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB";
0144:            public static final String ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = "ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB";
0145:            public static final String ER_NO_CLONE_OF_DOCUMENT_FRAG = "ER_NO_CLONE_OF_DOCUMENT_FRAG";
0146:            public static final String ER_CANT_CREATE_ITEM = "ER_CANT_CREATE_ITEM";
0147:            public static final String ER_XMLSPACE_ILLEGAL_VALUE = "ER_XMLSPACE_ILLEGAL_VALUE";
0148:            public static final String ER_NO_XSLKEY_DECLARATION = "ER_NO_XSLKEY_DECLARATION";
0149:            public static final String ER_CANT_CREATE_URL = "ER_CANT_CREATE_URL";
0150:            public static final String ER_XSLFUNCTIONS_UNSUPPORTED = "ER_XSLFUNCTIONS_UNSUPPORTED";
0151:            public static final String ER_PROCESSOR_ERROR = "ER_PROCESSOR_ERROR";
0152:            public static final String ER_NOT_ALLOWED_INSIDE_STYLESHEET = "ER_NOT_ALLOWED_INSIDE_STYLESHEET";
0153:            public static final String ER_RESULTNS_NOT_SUPPORTED = "ER_RESULTNS_NOT_SUPPORTED";
0154:            public static final String ER_DEFAULTSPACE_NOT_SUPPORTED = "ER_DEFAULTSPACE_NOT_SUPPORTED";
0155:            public static final String ER_INDENTRESULT_NOT_SUPPORTED = "ER_INDENTRESULT_NOT_SUPPORTED";
0156:            public static final String ER_ILLEGAL_ATTRIB = "ER_ILLEGAL_ATTRIB";
0157:            public static final String ER_UNKNOWN_XSL_ELEM = "ER_UNKNOWN_XSL_ELEM";
0158:            public static final String ER_BAD_XSLSORT_USE = "ER_BAD_XSLSORT_USE";
0159:            public static final String ER_MISPLACED_XSLWHEN = "ER_MISPLACED_XSLWHEN";
0160:            public static final String ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = "ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE";
0161:            public static final String ER_MISPLACED_XSLOTHERWISE = "ER_MISPLACED_XSLOTHERWISE";
0162:            public static final String ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = "ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE";
0163:            public static final String ER_NOT_ALLOWED_INSIDE_TEMPLATE = "ER_NOT_ALLOWED_INSIDE_TEMPLATE";
0164:            public static final String ER_UNKNOWN_EXT_NS_PREFIX = "ER_UNKNOWN_EXT_NS_PREFIX";
0165:            public static final String ER_IMPORTS_AS_FIRST_ELEM = "ER_IMPORTS_AS_FIRST_ELEM";
0166:            public static final String ER_IMPORTING_ITSELF = "ER_IMPORTING_ITSELF";
0167:            public static final String ER_XMLSPACE_ILLEGAL_VAL = "ER_XMLSPACE_ILLEGAL_VAL";
0168:            public static final String ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = "ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL";
0169:            public static final String ER_SAX_EXCEPTION = "ER_SAX_EXCEPTION";
0170:            public static final String ER_XSLT_ERROR = "ER_XSLT_ERROR";
0171:            public static final String ER_CURRENCY_SIGN_ILLEGAL = "ER_CURRENCY_SIGN_ILLEGAL";
0172:            public static final String ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = "ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM";
0173:            public static final String ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = "ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER";
0174:            public static final String ER_REDIRECT_COULDNT_GET_FILENAME = "ER_REDIRECT_COULDNT_GET_FILENAME";
0175:            public static final String ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = "ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT";
0176:            public static final String ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = "ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX";
0177:            public static final String ER_MISSING_NS_URI = "ER_MISSING_NS_URI";
0178:            public static final String ER_MISSING_ARG_FOR_OPTION = "ER_MISSING_ARG_FOR_OPTION";
0179:            public static final String ER_INVALID_OPTION = "ER_INVALID_OPTION";
0180:            public static final String ER_MALFORMED_FORMAT_STRING = "ER_MALFORMED_FORMAT_STRING";
0181:            public static final String ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = "ER_STYLESHEET_REQUIRES_VERSION_ATTRIB";
0182:            public static final String ER_ILLEGAL_ATTRIBUTE_VALUE = "ER_ILLEGAL_ATTRIBUTE_VALUE";
0183:            public static final String ER_CHOOSE_REQUIRES_WHEN = "ER_CHOOSE_REQUIRES_WHEN";
0184:            public static final String ER_NO_APPLY_IMPORT_IN_FOR_EACH = "ER_NO_APPLY_IMPORT_IN_FOR_EACH";
0185:            public static final String ER_CANT_USE_DTM_FOR_OUTPUT = "ER_CANT_USE_DTM_FOR_OUTPUT";
0186:            public static final String ER_CANT_USE_DTM_FOR_INPUT = "ER_CANT_USE_DTM_FOR_INPUT";
0187:            public static final String ER_CALL_TO_EXT_FAILED = "ER_CALL_TO_EXT_FAILED";
0188:            public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE";
0189:            public static final String ER_INVALID_UTF16_SURROGATE = "ER_INVALID_UTF16_SURROGATE";
0190:            public static final String ER_XSLATTRSET_USED_ITSELF = "ER_XSLATTRSET_USED_ITSELF";
0191:            public static final String ER_CANNOT_MIX_XERCESDOM = "ER_CANNOT_MIX_XERCESDOM";
0192:            public static final String ER_TOO_MANY_LISTENERS = "ER_TOO_MANY_LISTENERS";
0193:            public static final String ER_IN_ELEMTEMPLATEELEM_READOBJECT = "ER_IN_ELEMTEMPLATEELEM_READOBJECT";
0194:            public static final String ER_DUPLICATE_NAMED_TEMPLATE = "ER_DUPLICATE_NAMED_TEMPLATE";
0195:            public static final String ER_INVALID_KEY_CALL = "ER_INVALID_KEY_CALL";
0196:            public static final String ER_REFERENCING_ITSELF = "ER_REFERENCING_ITSELF";
0197:            public static final String ER_ILLEGAL_DOMSOURCE_INPUT = "ER_ILLEGAL_DOMSOURCE_INPUT";
0198:            public static final String ER_CLASS_NOT_FOUND_FOR_OPTION = "ER_CLASS_NOT_FOUND_FOR_OPTION";
0199:            public static final String ER_REQUIRED_ELEM_NOT_FOUND = "ER_REQUIRED_ELEM_NOT_FOUND";
0200:            public static final String ER_INPUT_CANNOT_BE_NULL = "ER_INPUT_CANNOT_BE_NULL";
0201:            public static final String ER_URI_CANNOT_BE_NULL = "ER_URI_CANNOT_BE_NULL";
0202:            public static final String ER_FILE_CANNOT_BE_NULL = "ER_FILE_CANNOT_BE_NULL";
0203:            public static final String ER_SOURCE_CANNOT_BE_NULL = "ER_SOURCE_CANNOT_BE_NULL";
0204:            public static final String ER_CANNOT_INIT_BSFMGR = "ER_CANNOT_INIT_BSFMGR";
0205:            public static final String ER_CANNOT_CMPL_EXTENSN = "ER_CANNOT_CMPL_EXTENSN";
0206:            public static final String ER_CANNOT_CREATE_EXTENSN = "ER_CANNOT_CREATE_EXTENSN";
0207:            public static final String ER_INSTANCE_MTHD_CALL_REQUIRES = "ER_INSTANCE_MTHD_CALL_REQUIRES";
0208:            public static final String ER_INVALID_ELEMENT_NAME = "ER_INVALID_ELEMENT_NAME";
0209:            public static final String ER_ELEMENT_NAME_METHOD_STATIC = "ER_ELEMENT_NAME_METHOD_STATIC";
0210:            public static final String ER_EXTENSION_FUNC_UNKNOWN = "ER_EXTENSION_FUNC_UNKNOWN";
0211:            public static final String ER_MORE_MATCH_CONSTRUCTOR = "ER_MORE_MATCH_CONSTRUCTOR";
0212:            public static final String ER_MORE_MATCH_METHOD = "ER_MORE_MATCH_METHOD";
0213:            public static final String ER_MORE_MATCH_ELEMENT = "ER_MORE_MATCH_ELEMENT";
0214:            public static final String ER_INVALID_CONTEXT_PASSED = "ER_INVALID_CONTEXT_PASSED";
0215:            public static final String ER_POOL_EXISTS = "ER_POOL_EXISTS";
0216:            public static final String ER_NO_DRIVER_NAME = "ER_NO_DRIVER_NAME";
0217:            public static final String ER_NO_URL = "ER_NO_URL";
0218:            public static final String ER_POOL_SIZE_LESSTHAN_ONE = "ER_POOL_SIZE_LESSTHAN_ONE";
0219:            public static final String ER_INVALID_DRIVER = "ER_INVALID_DRIVER";
0220:            public static final String ER_NO_STYLESHEETROOT = "ER_NO_STYLESHEETROOT";
0221:            public static final String ER_ILLEGAL_XMLSPACE_VALUE = "ER_ILLEGAL_XMLSPACE_VALUE";
0222:            public static final String ER_PROCESSFROMNODE_FAILED = "ER_PROCESSFROMNODE_FAILED";
0223:            public static final String ER_RESOURCE_COULD_NOT_LOAD = "ER_RESOURCE_COULD_NOT_LOAD";
0224:            public static final String ER_BUFFER_SIZE_LESSTHAN_ZERO = "ER_BUFFER_SIZE_LESSTHAN_ZERO";
0225:            public static final String ER_UNKNOWN_ERROR_CALLING_EXTENSION = "ER_UNKNOWN_ERROR_CALLING_EXTENSION";
0226:            public static final String ER_NO_NAMESPACE_DECL = "ER_NO_NAMESPACE_DECL";
0227:            public static final String ER_ELEM_CONTENT_NOT_ALLOWED = "ER_ELEM_CONTENT_NOT_ALLOWED";
0228:            public static final String ER_STYLESHEET_DIRECTED_TERMINATION = "ER_STYLESHEET_DIRECTED_TERMINATION";
0229:            public static final String ER_ONE_OR_TWO = "ER_ONE_OR_TWO";
0230:            public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE";
0231:            public static final String ER_COULD_NOT_LOAD_RESOURCE = "ER_COULD_NOT_LOAD_RESOURCE";
0232:            public static final String ER_CANNOT_INIT_DEFAULT_TEMPLATES = "ER_CANNOT_INIT_DEFAULT_TEMPLATES";
0233:            public static final String ER_RESULT_NULL = "ER_RESULT_NULL";
0234:            public static final String ER_RESULT_COULD_NOT_BE_SET = "ER_RESULT_COULD_NOT_BE_SET";
0235:            public static final String ER_NO_OUTPUT_SPECIFIED = "ER_NO_OUTPUT_SPECIFIED";
0236:            public static final String ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = "ER_CANNOT_TRANSFORM_TO_RESULT_TYPE";
0237:            public static final String ER_CANNOT_TRANSFORM_SOURCE_TYPE = "ER_CANNOT_TRANSFORM_SOURCE_TYPE";
0238:            public static final String ER_NULL_CONTENT_HANDLER = "ER_NULL_CONTENT_HANDLER";
0239:            public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER";
0240:            public static final String ER_CANNOT_CALL_PARSE = "ER_CANNOT_CALL_PARSE";
0241:            public static final String ER_NO_PARENT_FOR_FILTER = "ER_NO_PARENT_FOR_FILTER";
0242:            public static final String ER_NO_STYLESHEET_IN_MEDIA = "ER_NO_STYLESHEET_IN_MEDIA";
0243:            public static final String ER_NO_STYLESHEET_PI = "ER_NO_STYLESHEET_PI";
0244:            public static final String ER_NOT_SUPPORTED = "ER_NOT_SUPPORTED";
0245:            public static final String ER_PROPERTY_VALUE_BOOLEAN = "ER_PROPERTY_VALUE_BOOLEAN";
0246:            public static final String ER_COULD_NOT_FIND_EXTERN_SCRIPT = "ER_COULD_NOT_FIND_EXTERN_SCRIPT";
0247:            public static final String ER_RESOURCE_COULD_NOT_FIND = "ER_RESOURCE_COULD_NOT_FIND";
0248:            public static final String ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = "ER_OUTPUT_PROPERTY_NOT_RECOGNIZED";
0249:            public static final String ER_FAILED_CREATING_ELEMLITRSLT = "ER_FAILED_CREATING_ELEMLITRSLT";
0250:            public static final String ER_VALUE_SHOULD_BE_NUMBER = "ER_VALUE_SHOULD_BE_NUMBER";
0251:            public static final String ER_VALUE_SHOULD_EQUAL = "ER_VALUE_SHOULD_EQUAL";
0252:            public static final String ER_FAILED_CALLING_METHOD = "ER_FAILED_CALLING_METHOD";
0253:            public static final String ER_FAILED_CREATING_ELEMTMPL = "ER_FAILED_CREATING_ELEMTMPL";
0254:            public static final String ER_CHARS_NOT_ALLOWED = "ER_CHARS_NOT_ALLOWED";
0255:            public static final String ER_ATTR_NOT_ALLOWED = "ER_ATTR_NOT_ALLOWED";
0256:            public static final String ER_BAD_VALUE = "ER_BAD_VALUE";
0257:            public static final String ER_ATTRIB_VALUE_NOT_FOUND = "ER_ATTRIB_VALUE_NOT_FOUND";
0258:            public static final String ER_ATTRIB_VALUE_NOT_RECOGNIZED = "ER_ATTRIB_VALUE_NOT_RECOGNIZED";
0259:            public static final String ER_NULL_URI_NAMESPACE = "ER_NULL_URI_NAMESPACE";
0260:            public static final String ER_NUMBER_TOO_BIG = "ER_NUMBER_TOO_BIG";
0261:            public static final String ER_CANNOT_FIND_SAX1_DRIVER = "ER_CANNOT_FIND_SAX1_DRIVER";
0262:            public static final String ER_SAX1_DRIVER_NOT_LOADED = "ER_SAX1_DRIVER_NOT_LOADED";
0263:            public static final String ER_SAX1_DRIVER_NOT_INSTANTIATED = "ER_SAX1_DRIVER_NOT_INSTANTIATED";
0264:            public static final String ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = "ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER";
0265:            public static final String ER_PARSER_PROPERTY_NOT_SPECIFIED = "ER_PARSER_PROPERTY_NOT_SPECIFIED";
0266:            public static final String ER_PARSER_ARG_CANNOT_BE_NULL = "ER_PARSER_ARG_CANNOT_BE_NULL";
0267:            public static final String ER_FEATURE = "ER_FEATURE";
0268:            public static final String ER_PROPERTY = "ER_PROPERTY";
0269:            public static final String ER_NULL_ENTITY_RESOLVER = "ER_NULL_ENTITY_RESOLVER";
0270:            public static final String ER_NULL_DTD_HANDLER = "ER_NULL_DTD_HANDLER";
0271:            public static final String ER_NO_DRIVER_NAME_SPECIFIED = "ER_NO_DRIVER_NAME_SPECIFIED";
0272:            public static final String ER_NO_URL_SPECIFIED = "ER_NO_URL_SPECIFIED";
0273:            public static final String ER_POOLSIZE_LESS_THAN_ONE = "ER_POOLSIZE_LESS_THAN_ONE";
0274:            public static final String ER_INVALID_DRIVER_NAME = "ER_INVALID_DRIVER_NAME";
0275:            public static final String ER_ERRORLISTENER = "ER_ERRORLISTENER";
0276:            public static final String ER_ASSERT_NO_TEMPLATE_PARENT = "ER_ASSERT_NO_TEMPLATE_PARENT";
0277:            public static final String ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = "ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR";
0278:            public static final String ER_NOT_ALLOWED_IN_POSITION = "ER_NOT_ALLOWED_IN_POSITION";
0279:            public static final String ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = "ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION";
0280:            public static final String INVALID_TCHAR = "INVALID_TCHAR";
0281:            public static final String INVALID_QNAME = "INVALID_QNAME";
0282:            public static final String INVALID_ENUM = "INVALID_ENUM";
0283:            public static final String INVALID_NMTOKEN = "INVALID_NMTOKEN";
0284:            public static final String INVALID_NCNAME = "INVALID_NCNAME";
0285:            public static final String INVALID_BOOLEAN = "INVALID_BOOLEAN";
0286:            public static final String INVALID_NUMBER = "INVALID_NUMBER";
0287:            public static final String ER_ARG_LITERAL = "ER_ARG_LITERAL";
0288:            public static final String ER_DUPLICATE_GLOBAL_VAR = "ER_DUPLICATE_GLOBAL_VAR";
0289:            public static final String ER_DUPLICATE_VAR = "ER_DUPLICATE_VAR";
0290:            public static final String ER_TEMPLATE_NAME_MATCH = "ER_TEMPLATE_NAME_MATCH";
0291:            public static final String ER_INVALID_PREFIX = "ER_INVALID_PREFIX";
0292:            public static final String ER_NO_ATTRIB_SET = "ER_NO_ATTRIB_SET";
0293:
0294:            public static final String WG_FOUND_CURLYBRACE = "WG_FOUND_CURLYBRACE";
0295:            public static final String WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = "WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR";
0296:            public static final String WG_EXPR_ATTRIB_CHANGED_TO_SELECT = "WG_EXPR_ATTRIB_CHANGED_TO_SELECT";
0297:            public static final String WG_NO_LOCALE_IN_FORMATNUMBER = "WG_NO_LOCALE_IN_FORMATNUMBER";
0298:            public static final String WG_LOCALE_NOT_FOUND = "WG_LOCALE_NOT_FOUND";
0299:            public static final String WG_CANNOT_MAKE_URL_FROM = "WG_CANNOT_MAKE_URL_FROM";
0300:            public static final String WG_CANNOT_LOAD_REQUESTED_DOC = "WG_CANNOT_LOAD_REQUESTED_DOC";
0301:            public static final String WG_CANNOT_FIND_COLLATOR = "WG_CANNOT_FIND_COLLATOR";
0302:            public static final String WG_FUNCTIONS_SHOULD_USE_URL = "WG_FUNCTIONS_SHOULD_USE_URL";
0303:            public static final String WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = "WG_ENCODING_NOT_SUPPORTED_USING_UTF8";
0304:            public static final String WG_ENCODING_NOT_SUPPORTED_USING_JAVA = "WG_ENCODING_NOT_SUPPORTED_USING_JAVA";
0305:            public static final String WG_SPECIFICITY_CONFLICTS = "WG_SPECIFICITY_CONFLICTS";
0306:            public static final String WG_PARSING_AND_PREPARING = "WG_PARSING_AND_PREPARING";
0307:            public static final String WG_ATTR_TEMPLATE = "WG_ATTR_TEMPLATE";
0308:            public static final String WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = "WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESP";
0309:            public static final String WG_ATTRIB_NOT_HANDLED = "WG_ATTRIB_NOT_HANDLED";
0310:            public static final String WG_NO_DECIMALFORMAT_DECLARATION = "WG_NO_DECIMALFORMAT_DECLARATION";
0311:            public static final String WG_OLD_XSLT_NS = "WG_OLD_XSLT_NS";
0312:            public static final String WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = "WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED";
0313:            public static final String WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = "WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE";
0314:            public static final String WG_ILLEGAL_ATTRIBUTE = "WG_ILLEGAL_ATTRIBUTE";
0315:            public static final String WG_COULD_NOT_RESOLVE_PREFIX = "WG_COULD_NOT_RESOLVE_PREFIX";
0316:            public static final String WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = "WG_STYLESHEET_REQUIRES_VERSION_ATTRIB";
0317:            public static final String WG_ILLEGAL_ATTRIBUTE_NAME = "WG_ILLEGAL_ATTRIBUTE_NAME";
0318:            public static final String WG_ILLEGAL_ATTRIBUTE_VALUE = "WG_ILLEGAL_ATTRIBUTE_VALUE";
0319:            public static final String WG_EMPTY_SECOND_ARG = "WG_EMPTY_SECOND_ARG";
0320:            public static final String WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = "WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML";
0321:            public static final String WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = "WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME";
0322:            public static final String WG_ILLEGAL_ATTRIBUTE_POSITION = "WG_ILLEGAL_ATTRIBUTE_POSITION";
0323:
0324:            //  public static final int ER_NO_CURLYBRACE = 1;
0325:            /*
0326:             * Now fill in the message text.
0327:             * Then fill in the message text for that message code in the
0328:             * array. Use the new error code as the index into the array.
0329:             */
0330:
0331:            // Error messages...
0332:            /** Get the lookup table for error messages.   
0333:             *
0334:             * @return The int to message lookup table.
0335:             */
0336:            public Object[][] getContents() {
0337:                return new Object[][] {
0338:
0339:                        /** Error message ID that has a null message, but takes in a single object.    */
0340:                        { "ER0000", "{0}" },
0341:
0342:                        /** ER_NO_CURLYBRACE          */
0343:
0344:                        //  public static final int ER_NO_CURLYBRACE = 1;
0345:                        { ER_NO_CURLYBRACE,
0346:                                "Fehler: '{' darf nicht innerhalb des Ausdrucks stehen." },
0347:
0348:                        /** ER_ILLEGAL_ATTRIBUTE          */
0349:                        // public static final int ER_ILLEGAL_ATTRIBUTE = 2;
0350:                        { ER_ILLEGAL_ATTRIBUTE,
0351:                                "{0} hat ein unzul\u00e4ssiges Attribut {1}." },
0352:
0353:                        /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
0354:                        //  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
0355:                        { ER_NULL_SOURCENODE_APPLYIMPORTS,
0356:                                "sourceNode ist Null in xsl:apply-imports!" },
0357:
0358:                        /** ER_CANNOT_ADD          */
0359:                        // public static final int ER_CANNOT_ADD = 4;
0360:                        { ER_CANNOT_ADD,
0361:                                "{0} kann nicht {1} hinzugef\u00fcgt werden." },
0362:
0363:                        /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
0364:                        //  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
0365:
0366:                        { ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES,
0367:                                "sourceNode ist Null in handleApplyTemplatesInstruction!" },
0368:
0369:                        /** ER_NO_NAME_ATTRIB          */
0370:                        //  public static final int ER_NO_NAME_ATTRIB = 6;
0371:
0372:                        { ER_NO_NAME_ATTRIB,
0373:                                "{0} muss ein Namensattribut haben." },
0374:
0375:                        /** ER_TEMPLATE_NOT_FOUND          */
0376:                        //public static final int ER_TEMPLATE_NOT_FOUND = 7;
0377:
0378:                        { ER_TEMPLATE_NOT_FOUND,
0379:                                "Vorlage konnte nicht gefunden werden: {0}" },
0380:
0381:                        /** ER_CANT_RESOLVE_NAME_AVT          */
0382:                        // public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
0383:                        {
0384:                                ER_CANT_RESOLVE_NAME_AVT,
0385:                                "Namensvorlage f\u00fcr den Attributwert in xsl:call-template konnte nicht aufgel\u00f6st werden." },
0386:
0387:                        /** ER_REQUIRES_ATTRIB          */
0388:                        //public static final int ER_REQUIRES_ATTRIB = 9;
0389:
0390:                        { ER_REQUIRES_ATTRIB, "{0} erfordert das Attribut {1}." },
0391:
0392:                        /** ER_MUST_HAVE_TEST_ATTRIB          */
0393:                        // public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
0394:
0395:                        { ER_MUST_HAVE_TEST_ATTRIB,
0396:                                "{0} muss \u00fcber ein Attribut ''test'' verf\u00fcgen." },
0397:
0398:                        /** ER_BAD_VAL_ON_LEVEL_ATTRIB          */
0399:                        //  public static final int ER_BAD_VAL_ON_LEVEL_ATTRIB = 11;
0400:
0401:                        { ER_BAD_VAL_ON_LEVEL_ATTRIB,
0402:                                "Falscher Wert f\u00fcr Ebenenattribut: {0}." },
0403:
0404:                        /** ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML          */
0405:                        //  public static final int ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 12;
0406:
0407:                        { ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
0408:                                "Name der Verarbeitungsanweisung darf nicht 'xml' sein." },
0409:
0410:                        /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
0411:                        //  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
0412:
0413:                        {
0414:                                ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
0415:                                "Name der Verarbeitungsanweisung muss ein g\u00fcltiges NCName-Format haben: {0}." },
0416:
0417:                        /** ER_NEED_MATCH_ATTRIB          */
0418:                        //  public static final int ER_NEED_MATCH_ATTRIB = 14;
0419:
0420:                        {
0421:                                ER_NEED_MATCH_ATTRIB,
0422:                                "{0} muss \u00fcber ein entsprechendes Attribut verf\u00fcgen, wenn ein Modus vorhanden ist." },
0423:
0424:                        /** ER_NEED_NAME_OR_MATCH_ATTRIB          */
0425:                        //  public static final int ER_NEED_NAME_OR_MATCH_ATTRIB = 15;
0426:
0427:                        { ER_NEED_NAME_OR_MATCH_ATTRIB,
0428:                                "{0} erfordert einen Namen oder ein \u00dcbereinstimmungsattribut." },
0429:
0430:                        /** ER_CANT_RESOLVE_NSPREFIX          */
0431:                        //  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
0432:
0433:                        { ER_CANT_RESOLVE_NSPREFIX,
0434:                                "Pr\u00e4fix des Namensbereichs kann nicht aufgel\u00f6st werden: {0}." },
0435:
0436:                        /** ER_ILLEGAL_VALUE          */
0437:                        //  public static final int ER_ILLEGAL_VALUE = 17;
0438:
0439:                        { ER_ILLEGAL_VALUE,
0440:                                "xml:space weist einen ung\u00fcltigen Wert auf: {0}" },
0441:
0442:                        /** ER_NO_OWNERDOC          */
0443:                        //  public static final int ER_NO_OWNERDOC = 18;
0444:
0445:                        { ER_NO_OWNERDOC,
0446:                                "Der Kindknoten hat kein Eignerdokument!" },
0447:
0448:                        /** ER_ELEMTEMPLATEELEM_ERR          */
0449:                        //  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
0450:
0451:                        { ER_ELEMTEMPLATEELEM_ERR,
0452:                                "ElemTemplateElement-Fehler: {0}" },
0453:
0454:                        /** ER_NULL_CHILD          */
0455:                        //  public static final int ER_NULL_CHILD = 20;
0456:
0457:                        { ER_NULL_CHILD,
0458:                                "Es wird versucht, ein leeres Kind hinzuzuf\u00fcgen!" },
0459:
0460:                        /** ER_NEED_SELECT_ATTRIB          */
0461:                        //  public static final int ER_NEED_SELECT_ATTRIB = 21;
0462:
0463:                        { ER_NEED_SELECT_ATTRIB,
0464:                                "{0} erfordert ein Attribut ''select''." },
0465:
0466:                        /** ER_NEED_TEST_ATTRIB          */
0467:                        //  public static final int ER_NEED_TEST_ATTRIB = 22;
0468:
0469:                        { ER_NEED_TEST_ATTRIB,
0470:                                "xsl:when muss \u00fcber ein Attribut 'test' verf\u00fcgen." },
0471:
0472:                        /** ER_NEED_NAME_ATTRIB          */
0473:                        //  public static final int ER_NEED_NAME_ATTRIB = 23;
0474:
0475:                        { ER_NEED_NAME_ATTRIB,
0476:                                "xsl:with-param muss \u00fcber ein Attribut 'name' verf\u00fcgen." },
0477:
0478:                        /** ER_NO_CONTEXT_OWNERDOC          */
0479:                        //  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
0480:
0481:                        { ER_NO_CONTEXT_OWNERDOC,
0482:                                "Der Kontextknoten verf\u00fcgt nicht \u00fcber ein Eignerdokument!" },
0483:
0484:                        /** ER_COULD_NOT_CREATE_XML_PROC_LIAISON          */
0485:                        //  public static final int ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 25;
0486:
0487:                        { ER_COULD_NOT_CREATE_XML_PROC_LIAISON,
0488:                                "XML-TransformerFactory-Liaison konnte nicht erstellt werden: {0}" },
0489:
0490:                        /** ER_PROCESS_NOT_SUCCESSFUL          */
0491:                        //  public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
0492:
0493:                        { ER_PROCESS_NOT_SUCCESSFUL,
0494:                                "Xalan:-Prozess konnte nicht erfolgreich durchgef\u00fchrt werden." },
0495:
0496:                        /** ER_NOT_SUCCESSFUL          */
0497:                        //  public static final int ER_NOT_SUCCESSFUL = 27;
0498:
0499:                        { ER_NOT_SUCCESSFUL, "Xalan: war nicht erfolgreich." },
0500:
0501:                        /** ER_ENCODING_NOT_SUPPORTED          */
0502:                        //  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
0503:
0504:                        { ER_ENCODING_NOT_SUPPORTED,
0505:                                "Verschl\u00fcsselung wird nicht unterst\u00fctzt: {0}." },
0506:
0507:                        /** ER_COULD_NOT_CREATE_TRACELISTENER          */
0508:                        //  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
0509:
0510:                        { ER_COULD_NOT_CREATE_TRACELISTENER,
0511:                                "TraceListener konnte nicht erstellt werden: {0}." },
0512:
0513:                        /** ER_KEY_REQUIRES_NAME_ATTRIB          */
0514:                        //  public static final int ER_KEY_REQUIRES_NAME_ATTRIB = 30;
0515:
0516:                        { ER_KEY_REQUIRES_NAME_ATTRIB,
0517:                                "xsl:key erfordert ein Attribut 'name'!" },
0518:
0519:                        /** ER_KEY_REQUIRES_MATCH_ATTRIB          */
0520:                        //  public static final int ER_KEY_REQUIRES_MATCH_ATTRIB = 31;
0521:
0522:                        { ER_KEY_REQUIRES_MATCH_ATTRIB,
0523:                                "xsl:key erfordert ein Attribut 'match'!" },
0524:
0525:                        /** ER_KEY_REQUIRES_USE_ATTRIB          */
0526:                        //  public static final int ER_KEY_REQUIRES_USE_ATTRIB = 32;
0527:
0528:                        { ER_KEY_REQUIRES_USE_ATTRIB,
0529:                                "xsl:key erfordert ein Attribut 'use'!" },
0530:
0531:                        /** ER_REQUIRES_ELEMENTS_ATTRIB          */
0532:                        //  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
0533:
0534:                        { ER_REQUIRES_ELEMENTS_ATTRIB,
0535:                                "(StylesheetHandler) {0} erfordert ein Attribut ''elements''!" },
0536:
0537:                        /** ER_MISSING_PREFIX_ATTRIB          */
0538:                        //  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
0539:
0540:                        { ER_MISSING_PREFIX_ATTRIB,
0541:                                "(StylesheetHandler) {0}: Das Attribut ''prefix'' fehlt. " },
0542:
0543:                        /** ER_BAD_STYLESHEET_URL          */
0544:                        //  public static final int ER_BAD_STYLESHEET_URL = 35;
0545:
0546:                        { ER_BAD_STYLESHEET_URL,
0547:                                "Formatvorlagen-URL-Adresse ist ung\u00fcltig: {0}." },
0548:
0549:                        /** ER_FILE_NOT_FOUND          */
0550:                        //  public static final int ER_FILE_NOT_FOUND = 36;
0551:
0552:                        { ER_FILE_NOT_FOUND,
0553:                                "Formatvorlagendatei konnte nicht gefunden werden: {0}." },
0554:
0555:                        /** ER_IOEXCEPTION          */
0556:                        //  public static final int ER_IOEXCEPTION = 37;
0557:
0558:                        {
0559:                                ER_IOEXCEPTION,
0560:                                "Bei folgender Formatvorlagendatei ist eine E/A-Ausnahmebedingung aufgetreten: {0}." },
0561:
0562:                        /** ER_NO_HREF_ATTRIB          */
0563:                        //  public static final int ER_NO_HREF_ATTRIB = 38;
0564:
0565:                        {
0566:                                ER_NO_HREF_ATTRIB,
0567:                                "(StylesheetHandler) Attribut 'href' f\u00fcr {0} konnte nicht gefunden werden." },
0568:
0569:                        /** ER_STYLESHEET_INCLUDES_ITSELF          */
0570:                        //  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
0571:
0572:                        {
0573:                                ER_STYLESHEET_INCLUDES_ITSELF,
0574:                                "(StylesheetHandler) {0} schlie\u00dft sich selbst direkt oder indirekt mit ein!" },
0575:
0576:                        /** ER_PROCESSINCLUDE_ERROR          */
0577:                        //  public static final int ER_PROCESSINCLUDE_ERROR = 40;
0578:
0579:                        { ER_PROCESSINCLUDE_ERROR,
0580:                                "Fehler in StylesheetHandler.processInclude, {0}." },
0581:
0582:                        /** ER_MISSING_LANG_ATTRIB          */
0583:                        //  public static final int ER_MISSING_LANG_ATTRIB = 41;
0584:
0585:                        { ER_MISSING_LANG_ATTRIB,
0586:                                "(StylesheetHandler) {0}: Das Attribut ''lang'' fehlt. " },
0587:
0588:                        /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
0589:                        //  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
0590:                        {
0591:                                ER_MISSING_CONTAINER_ELEMENT_COMPONENT,
0592:                                "(StylesheetHandler) Element {0} an falscher Position?? Fehlendes Containerelement ''component''. " },
0593:
0594:                        /** ER_CAN_ONLY_OUTPUT_TO_ELEMENT          */
0595:                        //  public static final int ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 43;
0596:                        {
0597:                                ER_CAN_ONLY_OUTPUT_TO_ELEMENT,
0598:                                "Ausgabe kann nur an ein Element, Dokumentfragment, Dokument oder Druckausgabeprogramm erfolgen." },
0599:
0600:                        /** ER_PROCESS_ERROR          */
0601:                        //  public static final int ER_PROCESS_ERROR = 44;
0602:                        { ER_PROCESS_ERROR, "Fehler in StylesheetRoot.process" },
0603:
0604:                        /** ER_UNIMPLNODE_ERROR          */
0605:                        //  public static final int ER_UNIMPLNODE_ERROR = 45;
0606:                        { ER_UNIMPLNODE_ERROR, "UnImplNode-Fehler: {0}" },
0607:
0608:                        /** ER_NO_SELECT_EXPRESSION          */
0609:                        //  public static final int ER_NO_SELECT_EXPRESSION = 46;
0610:                        { ER_NO_SELECT_EXPRESSION,
0611:                                "Fehler! xpath-Auswahlausdruck (-select) konnte nicht gefunden werden." },
0612:
0613:                        /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
0614:                        //  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
0615:                        { ER_CANNOT_SERIALIZE_XSLPROCESSOR,
0616:                                "XSLProcessor kann nicht serialisiert werden!" },
0617:
0618:                        /** ER_NO_INPUT_STYLESHEET          */
0619:                        //  public static final int ER_NO_INPUT_STYLESHEET = 48;
0620:                        { ER_NO_INPUT_STYLESHEET,
0621:                                "Formatvorlageneingabe wurde nicht angegeben!" },
0622:
0623:                        /** ER_FAILED_PROCESS_STYLESHEET          */
0624:                        //  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
0625:                        { ER_FAILED_PROCESS_STYLESHEET,
0626:                                "Verarbeitung der Formatvorlage fehlgeschlagen!" },
0627:
0628:                        /** ER_COULDNT_PARSE_DOC          */
0629:                        //  public static final int ER_COULDNT_PARSE_DOC = 50;
0630:                        { ER_COULDNT_PARSE_DOC,
0631:                                "Dokument {0} konnte nicht syntaktisch analysiert werden!" },
0632:
0633:                        /** ER_COULDNT_FIND_FRAGMENT          */
0634:                        //  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
0635:                        { ER_COULDNT_FIND_FRAGMENT,
0636:                                "Fragment konnte nicht gefunden werden: {0}." },
0637:
0638:                        /** ER_NODE_NOT_ELEMENT          */
0639:                        // public static final int ER_NODE_NOT_ELEMENT = 52;
0640:                        {
0641:                                ER_NODE_NOT_ELEMENT,
0642:                                "Der Knoten, auf den von einer Fragment-ID verwiesen wurde, war kein Element: {0}." },
0643:
0644:                        /** ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB          */
0645:                        //  public static final int ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 53;
0646:                        { ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB,
0647:                                "'for-each' muss entweder ein Attribut 'match' oder 'name' haben." },
0648:
0649:                        /** ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB          */
0650:                        //  public static final int ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 54;
0651:                        { ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB,
0652:                                "Vorlagen m\u00fcssen entweder ein Attribut 'match' oder 'name' haben." },
0653:
0654:                        /** ER_NO_CLONE_OF_DOCUMENT_FRAG          */
0655:                        //  public static final int ER_NO_CLONE_OF_DOCUMENT_FRAG = 55;
0656:                        { ER_NO_CLONE_OF_DOCUMENT_FRAG,
0657:                                "Kein Klon eines Dokumentfragments!" },
0658:
0659:                        /** ER_CANT_CREATE_ITEM          */
0660:                        //  public static final int ER_CANT_CREATE_ITEM = 56;
0661:                        { ER_CANT_CREATE_ITEM,
0662:                                "Im Ergebnisbaum kann kein Eintrag erzeugt werden: {0}." },
0663:
0664:                        /** ER_XMLSPACE_ILLEGAL_VALUE          */
0665:                        //  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
0666:                        { ER_XMLSPACE_ILLEGAL_VALUE,
0667:                                "xml:space in der Quellen-XML hat einen ung\u00fcltigen Wert: {0}." },
0668:
0669:                        /** ER_NO_XSLKEY_DECLARATION          */
0670:                        //  public static final int ER_NO_XSLKEY_DECLARATION = 58;
0671:                        { ER_NO_XSLKEY_DECLARATION,
0672:                                "Keine Deklaration xsl:key f\u00fcr {0} vorhanden!" },
0673:
0674:                        /** ER_CANT_CREATE_URL          */
0675:                        //  public static final int ER_CANT_CREATE_URL = 59;
0676:                        { ER_CANT_CREATE_URL,
0677:                                "Fehler! URL kann nicht erstellt werden f\u00fcr: {0}" },
0678:
0679:                        /** ER_XSLFUNCTIONS_UNSUPPORTED          */
0680:                        //  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
0681:                        { ER_XSLFUNCTIONS_UNSUPPORTED,
0682:                                "xsl:functions wird nicht unterst\u00fctzt." },
0683:
0684:                        /** ER_PROCESSOR_ERROR          */
0685:                        //  public static final int ER_PROCESSOR_ERROR = 61;
0686:                        { ER_PROCESSOR_ERROR, "XSLT-TransformerFactory-Fehler" },
0687:
0688:                        /** ER_NOT_ALLOWED_INSIDE_STYLESHEET          */
0689:                        //  public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
0690:                        { ER_NOT_ALLOWED_INSIDE_STYLESHEET,
0691:                                "(StylesheetHandler) {0} nicht zul\u00e4ssig innerhalb einer Formatvorlage!" },
0692:
0693:                        /** ER_RESULTNS_NOT_SUPPORTED          */
0694:                        //  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
0695:                        {
0696:                                ER_RESULTNS_NOT_SUPPORTED,
0697:                                "result-ns wird nicht mehr unterst\u00fctzt!  Verwenden Sie stattdessen xsl:output." },
0698:
0699:                        /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
0700:                        //  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
0701:                        {
0702:                                ER_DEFAULTSPACE_NOT_SUPPORTED,
0703:                                "default-space wird nicht mehr unterst\u00fctzt!  Verwenden Sie stattdessen xsl:strip-space oder xsl:preserve-space." },
0704:
0705:                        /** ER_INDENTRESULT_NOT_SUPPORTED          */
0706:                        //  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
0707:                        {
0708:                                ER_INDENTRESULT_NOT_SUPPORTED,
0709:                                "indent-result wird nicht mehr unterst\u00fctzt!  Verwenden Sie stattdessen xsl:output." },
0710:
0711:                        /** ER_ILLEGAL_ATTRIB          */
0712:                        //  public static final int ER_ILLEGAL_ATTRIB = 66;
0713:                        { ER_ILLEGAL_ATTRIB,
0714:                                "(StylesheetHandler) {0} hat ein ung\u00fcltiges Attribut: {1}." },
0715:
0716:                        /** ER_UNKNOWN_XSL_ELEM          */
0717:                        //  public static final int ER_UNKNOWN_XSL_ELEM = 67;
0718:                        { ER_UNKNOWN_XSL_ELEM, "Unbekanntes XSL-Element: {0}" },
0719:
0720:                        /** ER_BAD_XSLSORT_USE          */
0721:                        //  public static final int ER_BAD_XSLSORT_USE = 68;
0722:                        {
0723:                                ER_BAD_XSLSORT_USE,
0724:                                "(StylesheetHandler) xsl:sort kann nur mit xsl:apply-templates oder xsl:for-each verwendet werden." },
0725:
0726:                        /** ER_MISPLACED_XSLWHEN          */
0727:                        //  public static final int ER_MISPLACED_XSLWHEN = 69;
0728:                        { ER_MISPLACED_XSLWHEN,
0729:                                "(StylesheetHandler) xsl:when steht an der falschen Position!" },
0730:
0731:                        /** ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE          */
0732:                        //  public static final int ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 70;
0733:                        {
0734:                                ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE,
0735:                                "(StylesheetHandler) F\u00fcr xsl:when ist xsl:choose nicht als Elter definiert!" },
0736:
0737:                        /** ER_MISPLACED_XSLOTHERWISE          */
0738:                        //  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
0739:                        { ER_MISPLACED_XSLOTHERWISE,
0740:                                "(StylesheetHandler) xsl:otherwise steht an der falschen Position!" },
0741:
0742:                        /** ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE          */
0743:                        //  public static final int ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 72;
0744:                        {
0745:                                ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE,
0746:                                "(StylesheetHandler) F\u00fcr xsl:otherwise ist xsl:choose nicht als Elter definiert!" },
0747:
0748:                        /** ER_NOT_ALLOWED_INSIDE_TEMPLATE          */
0749:                        //  public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
0750:                        { ER_NOT_ALLOWED_INSIDE_TEMPLATE,
0751:                                "(StylesheetHandler) {0} ist innerhalb einer Vorlage nicht zul\u00e4ssig!" },
0752:
0753:                        /** ER_UNKNOWN_EXT_NS_PREFIX          */
0754:                        //  public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
0755:                        {
0756:                                ER_UNKNOWN_EXT_NS_PREFIX,
0757:                                "(StylesheetHandler) {0}: Erweiterung des Namensbereichspr\u00e4fixes {1} ist unbekannt" },
0758:
0759:                        /** ER_IMPORTS_AS_FIRST_ELEM          */
0760:                        //  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
0761:                        {
0762:                                ER_IMPORTS_AS_FIRST_ELEM,
0763:                                "(StylesheetHandler) Importe k\u00f6nnen nur als erste Elemente in der Formatvorlage auftreten!" },
0764:
0765:                        /** ER_IMPORTING_ITSELF          */
0766:                        //  public static final int ER_IMPORTING_ITSELF = 76;
0767:                        { ER_IMPORTING_ITSELF,
0768:                                "(StylesheetHandler) {0} importiert sich direkt oder indirekt selbst!" },
0769:
0770:                        /** ER_XMLSPACE_ILLEGAL_VAL          */
0771:                        //  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
0772:                        { ER_XMLSPACE_ILLEGAL_VAL,
0773:                                "(StylesheetHandler) xml:space hat einen ung\u00fcltigen Wert: {0}. " },
0774:
0775:                        /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
0776:                        //  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
0777:                        { ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL,
0778:                                "processStylesheet nicht erfolgreich!" },
0779:
0780:                        /** ER_SAX_EXCEPTION          */
0781:                        //  public static final int ER_SAX_EXCEPTION = 79;
0782:                        { ER_SAX_EXCEPTION, "SAX-Ausnahmebedingung" },
0783:
0784:                        /** ER_FUNCTION_NOT_SUPPORTED          */
0785:                        //  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
0786:                        //{ ER_FUNCTION_NOT_SUPPORTED,
0787:                        // "Function not supported!"},
0788:                        /** ER_XSLT_ERROR          */
0789:                        //  public static final int ER_XSLT_ERROR = 81;
0790:                        { ER_XSLT_ERROR, "XSLT-Fehler" },
0791:
0792:                        /** ER_CURRENCY_SIGN_ILLEGAL          */
0793:                        //  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
0794:                        {
0795:                                ER_CURRENCY_SIGN_ILLEGAL,
0796:                                "Ein W\u00e4hrungssymbol ist in der Formatmusterzeichenfolge nicht zul\u00e4ssig." },
0797:
0798:                        /** ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM          */
0799:                        //  public static final int ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 83;
0800:                        {
0801:                                ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM,
0802:                                "Eine Dokumentfunktion wird in der Dokumentobjektmodell-Formatvorlage nicht unterst\u00fctzt!" },
0803:
0804:                        /** ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER          */
0805:                        //  public static final int ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 84;
0806:                        {
0807:                                ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER,
0808:                                "Pr\u00e4fix einer Aufl\u00f6sung ohne Pr\u00e4fix kann nicht aufgel\u00f6st werden!" },
0809:
0810:                        /** ER_REDIRECT_COULDNT_GET_FILENAME          */
0811:                        //  public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
0812:                        {
0813:                                ER_REDIRECT_COULDNT_GET_FILENAME,
0814:                                "Umleitungserweiterung: Dateiname konnte nicht abgerufen werden - Datei oder Attribut 'select' muss eine g\u00fcltige Zeichenfolge zur\u00fcckgeben. " },
0815:
0816:                        /** ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT          */
0817:                        //  public static final int ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 86;
0818:                        { ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT,
0819:                                "FormatterListener kann in Umleitungserweiterung nicht erstellt werden!" },
0820:
0821:                        /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX          */
0822:                        //  public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
0823:                        { ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX,
0824:                                "Pr\u00e4fix in exclude-result-prefixes ist nicht g\u00fcltig: {0}." },
0825:
0826:                        /** ER_MISSING_NS_URI          */
0827:                        //  public static final int ER_MISSING_NS_URI = 88;
0828:                        { ER_MISSING_NS_URI,
0829:                                "Fehlende Namensbereichs-URI f\u00fcr angegebenes Pr\u00e4fix." },
0830:
0831:                        /** ER_MISSING_ARG_FOR_OPTION          */
0832:                        //  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
0833:                        { ER_MISSING_ARG_FOR_OPTION,
0834:                                "Fehlendes Argument f\u00fcr Option: {0}." },
0835:
0836:                        /** ER_INVALID_OPTION          */
0837:                        //  public static final int ER_INVALID_OPTION = 90;
0838:                        { ER_INVALID_OPTION, "Ung\u00fcltige Option: {0}" },
0839:
0840:                        /** ER_MALFORMED_FORMAT_STRING          */
0841:                        //  public static final int ER_MALFORMED_FORMAT_STRING = 91;
0842:                        { ER_MALFORMED_FORMAT_STRING,
0843:                                "Syntaktisch falsche Formatzeichenfolge: {0}" },
0844:
0845:                        /** ER_STYLESHEET_REQUIRES_VERSION_ATTRIB          */
0846:                        //  public static final int ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 92;
0847:                        { ER_STYLESHEET_REQUIRES_VERSION_ATTRIB,
0848:                                "xsl:stylesheet erfordert ein Attribut 'version'!" },
0849:
0850:                        /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
0851:                        //  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
0852:                        { ER_ILLEGAL_ATTRIBUTE_VALUE,
0853:                                "Attribut {0} weist einen ung\u00fcltigen Wert auf: {1}" },
0854:
0855:                        /** ER_CHOOSE_REQUIRES_WHEN          */
0856:                        //  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
0857:                        { ER_CHOOSE_REQUIRES_WHEN,
0858:                                "xsl:choose erfordert xsl:when." },
0859:
0860:                        /** ER_NO_APPLY_IMPORT_IN_FOR_EACH          */
0861:                        //  public static final int ER_NO_APPLY_IMPORT_IN_FOR_EACH = 95;
0862:                        { ER_NO_APPLY_IMPORT_IN_FOR_EACH,
0863:                                "xsl:apply-imports ist in xsl:for-each nicht zul\u00e4ssig." },
0864:
0865:                        /** ER_CANT_USE_DTM_FOR_OUTPUT          */
0866:                        //  public static final int ER_CANT_USE_DTM_FOR_OUTPUT = 96;
0867:                        {
0868:                                ER_CANT_USE_DTM_FOR_OUTPUT,
0869:                                "DTMLiaison kann nicht f\u00fcr einen Ausgabe-Dokumentobjektmodellknoten verwendet werden... \u00dcbergeben Sie stattdessen org.apache.xpath.DOM2Helper!" },
0870:
0871:                        /** ER_CANT_USE_DTM_FOR_INPUT          */
0872:                        //  public static final int ER_CANT_USE_DTM_FOR_INPUT = 97;
0873:                        {
0874:                                ER_CANT_USE_DTM_FOR_INPUT,
0875:                                "DTMLiaison kann nicht f\u00fcr einen Eingabe-Dokumentobjektmodellknoten verwendet werden... \u00dcbergeben Sie stattdessen org.apache.xpath.DOM2Helper!" },
0876:
0877:                        /** ER_CALL_TO_EXT_FAILED          */
0878:                        //  public static final int ER_CALL_TO_EXT_FAILED = 98;
0879:                        { ER_CALL_TO_EXT_FAILED,
0880:                                "Aufruf an Erweiterungselement fehlgeschlagen: {0}." },
0881:
0882:                        /** ER_PREFIX_MUST_RESOLVE          */
0883:                        //  public static final int ER_PREFIX_MUST_RESOLVE = 99;
0884:                        { ER_PREFIX_MUST_RESOLVE,
0885:                                "Das Pr\u00e4fix muss in einen Namensbereich aufgel\u00f6st werden: {0}" },
0886:
0887:                        /** ER_INVALID_UTF16_SURROGATE          */
0888:                        //  public static final int ER_INVALID_UTF16_SURROGATE = 100;
0889:                        { ER_INVALID_UTF16_SURROGATE,
0890:                                "Ung\u00fcltige UTF-16-Ersetzung festgestellt: {0} ?" },
0891:
0892:                        /** ER_XSLATTRSET_USED_ITSELF          */
0893:                        // public static final int ER_XSLATTRSET_USED_ITSELF = 101;
0894:                        {
0895:                                ER_XSLATTRSET_USED_ITSELF,
0896:                                "xsl:attribute-set {0} verwendet sich selbst, wodurch eine Endlosschleife verursacht wird." },
0897:
0898:                        /** ER_CANNOT_MIX_XERCESDOM          */
0899:                        //  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
0900:                        {
0901:                                ER_CANNOT_MIX_XERCESDOM,
0902:                                "Nicht-Xerces-Dokumentobjektmodelleingabe kann nicht mit Xerces-Dokumentobjektmodellausgabe gemischt werden!" },
0903:
0904:                        /** ER_TOO_MANY_LISTENERS          */
0905:                        //  public static final int ER_TOO_MANY_LISTENERS = 103;
0906:                        { ER_TOO_MANY_LISTENERS,
0907:                                "addTraceListenersToStylesheet - TooManyListenersException" },
0908:
0909:                        /** ER_IN_ELEMTEMPLATEELEM_READOBJECT          */
0910:                        //  public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
0911:                        { ER_IN_ELEMTEMPLATEELEM_READOBJECT,
0912:                                "In ElemTemplateElement.readObject: {0}" },
0913:
0914:                        /** ER_DUPLICATE_NAMED_TEMPLATE          */
0915:                        //  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
0916:                        { ER_DUPLICATE_NAMED_TEMPLATE,
0917:                                "Mehrere Vorlagen mit folgendem Namen gefunden: {0}." },
0918:
0919:                        /** ER_INVALID_KEY_CALL          */
0920:                        //  public static final int ER_INVALID_KEY_CALL = 106;
0921:                        {
0922:                                ER_INVALID_KEY_CALL,
0923:                                "Ung\u00fcltiger Funktionsaufruf: rekursive Aufrufe 'key()'sind nicht zul\u00e4ssig." },
0924:
0925:                        /** Variable is referencing itself          */
0926:                        //  public static final int ER_REFERENCING_ITSELF = 107;
0927:                        { ER_REFERENCING_ITSELF,
0928:                                "Variable {0} verweist direkt oder indirekt auf sich selbst!" },
0929:
0930:                        /** Illegal DOMSource input          */
0931:                        //  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
0932:                        {
0933:                                ER_ILLEGAL_DOMSOURCE_INPUT,
0934:                                "Der Eingabeknoten kann f\u00fcr DOMSource f\u00fcr newTemplates nicht Null sein!" },
0935:
0936:                        /** Class not found for option         */
0937:                        //  public static final int ER_CLASS_NOT_FOUND_FOR_OPTION = 109;
0938:                        { ER_CLASS_NOT_FOUND_FOR_OPTION,
0939:                                "Klassendatei f\u00fcr Option {0} wurde nicht gefunden." },
0940:
0941:                        /** Required Element not found         */
0942:                        //  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
0943:                        { ER_REQUIRED_ELEM_NOT_FOUND,
0944:                                "Erforderliches Element nicht gefunden: {0}." },
0945:
0946:                        /** InputStream cannot be null         */
0947:                        //  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
0948:                        { ER_INPUT_CANNOT_BE_NULL,
0949:                                "InputStream kann nicht Null sein." },
0950:
0951:                        /** URI cannot be null         */
0952:                        //  public static final int ER_URI_CANNOT_BE_NULL = 112;
0953:                        { ER_URI_CANNOT_BE_NULL, "URI kann nicht Null sein." },
0954:
0955:                        /** File cannot be null         */
0956:                        //  public static final int ER_FILE_CANNOT_BE_NULL = 113;
0957:                        { ER_FILE_CANNOT_BE_NULL,
0958:                                "Eine Datei kann nicht Null sein." },
0959:
0960:                        /** InputSource cannot be null         */
0961:                        //  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
0962:                        { ER_SOURCE_CANNOT_BE_NULL,
0963:                                "InputSource kann nicht Null sein." },
0964:
0965:                        /** Can't overwrite cause         */
0966:                        //  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
0967:                        //{ ER_CANNOT_OVERWRITE_CAUSE,
0968:                        //      "Cannot overwrite cause"},
0969:                        /** Could not initialize BSF Manager        */
0970:                        //  public static final int ER_CANNOT_INIT_BSFMGR = 116;
0971:                        { ER_CANNOT_INIT_BSFMGR,
0972:                                "BSF Manager kann nicht initialisiert werden." },
0973:
0974:                        /** Could not compile extension       */
0975:                        //  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
0976:                        { ER_CANNOT_CMPL_EXTENSN,
0977:                                "Erweiterung konnte nicht kompiliert werden." },
0978:
0979:                        /** Could not create extension       */
0980:                        //  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
0981:                        { ER_CANNOT_CREATE_EXTENSN,
0982:                                "Erweiterung {0} konnte nicht erstellt werden. Ursache: {1}." },
0983:
0984:                        /** Instance method call to method {0} requires an Object instance as first argument       */
0985:                        //  public static final int ER_INSTANCE_MTHD_CALL_REQUIRES = 119;
0986:                        {
0987:                                ER_INSTANCE_MTHD_CALL_REQUIRES,
0988:                                "Der Aufruf einer Exemplardefinitionsmethode von Methode {0} erfordert ein Objektexemplar als erstes Argument." },
0989:
0990:                        /** Invalid element name specified       */
0991:                        //  public static final int ER_INVALID_ELEMENT_NAME = 120;
0992:                        { ER_INVALID_ELEMENT_NAME,
0993:                                "Ung\u00fcltiger Elementname angegeben {0}." },
0994:
0995:                        /** Element name method must be static      */
0996:                        //  public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
0997:                        { ER_ELEMENT_NAME_METHOD_STATIC,
0998:                                "Elementnamenmethode muss statisch sein: {0}" },
0999:
1000:                        /** Extension function {0} : {1} is unknown      */
1001:                        //  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
1002:                        { ER_EXTENSION_FUNC_UNKNOWN,
1003:                                "Erweiterungsfunktion {0} : {1} ist unbekannt." },
1004:
1005:                        /** More than one best match for constructor for       */
1006:                        //  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
1007:                        { ER_MORE_MATCH_CONSTRUCTOR,
1008:                                "Mehrere passende Entsprechungen f\u00fcr Konstruktor f\u00fcr {0}." },
1009:
1010:                        /** More than one best match for method      */
1011:                        //  public static final int ER_MORE_MATCH_METHOD = 124;
1012:                        { ER_MORE_MATCH_METHOD,
1013:                                "Mehrere passende Entsprechungen f\u00fcr Methode {0}." },
1014:
1015:                        /** More than one best match for element method      */
1016:                        //  public static final int ER_MORE_MATCH_ELEMENT = 125;
1017:                        { ER_MORE_MATCH_ELEMENT,
1018:                                "Mehrere passende Entsprechungen f\u00fcr Elementmethode {0}." },
1019:
1020:                        /** Invalid context passed to evaluate       */
1021:                        //  public static final int ER_INVALID_CONTEXT_PASSED = 126;
1022:                        { ER_INVALID_CONTEXT_PASSED,
1023:                                "Ung\u00fcltiger Kontext zur Auswertung von {0} \u00fcbergeben." },
1024:
1025:                        /** Pool already exists       */
1026:                        //  public static final int ER_POOL_EXISTS = 127;
1027:                        { ER_POOL_EXISTS, "Pool ist bereits vorhanden." },
1028:
1029:                        /** No driver Name specified      */
1030:                        //  public static final int ER_NO_DRIVER_NAME = 128;
1031:                        { ER_NO_DRIVER_NAME, "Kein Treibername angegeben." },
1032:
1033:                        /** No URL specified     */
1034:                        //  public static final int ER_NO_URL = 129;
1035:                        { ER_NO_URL, "Keine URL-Adresse angegeben." },
1036:
1037:                        /** Pool size is less than one    */
1038:                        //  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
1039:                        { ER_POOL_SIZE_LESSTHAN_ONE,
1040:                                "Poolgr\u00f6\u00dfe ist kleiner als Eins!" },
1041:
1042:                        /** Invalid driver name specified    */
1043:                        //  public static final int ER_INVALID_DRIVER = 131;
1044:                        { ER_INVALID_DRIVER,
1045:                                "Ung\u00fcltiger Treibername angegeben!" },
1046:
1047:                        /** Did not find the stylesheet root    */
1048:                        //  public static final int ER_NO_STYLESHEETROOT = 132;
1049:                        { ER_NO_STYLESHEETROOT,
1050:                                "Root der Formatvorlage konnte nicht gefunden werden!" },
1051:
1052:                        /** Illegal value for xml:space     */
1053:                        //  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
1054:                        { ER_ILLEGAL_XMLSPACE_VALUE,
1055:                                "Ung\u00fcltiger Wert f\u00fcr xml:space" },
1056:
1057:                        /** processFromNode failed     */
1058:                        //  public static final int ER_PROCESSFROMNODE_FAILED = 134;
1059:                        { ER_PROCESSFROMNODE_FAILED,
1060:                                "processFromNode ist fehlgeschlagen." },
1061:
1062:                        /** The resource [] could not load:     */
1063:                        //  public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
1064:                        { ER_RESOURCE_COULD_NOT_LOAD,
1065:                                "Die Ressource [ {0} ] konnte nicht geladen werden: {1} \n {2} \t {3}" },
1066:
1067:                        /** Buffer size <=0     */
1068:                        //  public static final int ER_BUFFER_SIZE_LESSTHAN_ZERO = 136;
1069:                        { ER_BUFFER_SIZE_LESSTHAN_ZERO,
1070:                                "Puffergr\u00f6\u00dfe <=0" },
1071:
1072:                        /** Unknown error when calling extension    */
1073:                        //  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
1074:                        { ER_UNKNOWN_ERROR_CALLING_EXTENSION,
1075:                                "Unbekannter Fehler beim Aufrufen der Erweiterung." },
1076:
1077:                        /** Prefix {0} does not have a corresponding namespace declaration    */
1078:                        //  public static final int ER_NO_NAMESPACE_DECL = 138;
1079:                        { ER_NO_NAMESPACE_DECL,
1080:                                "Pr\u00e4fix {0} hat keine entsprechende Namensbereichdeklaration." },
1081:
1082:                        /** Element content not allowed for lang=javaclass   */
1083:                        //  public static final int ER_ELEM_CONTENT_NOT_ALLOWED = 139;
1084:                        { ER_ELEM_CONTENT_NOT_ALLOWED,
1085:                                "Elementinhalt nicht zul\u00e4ssig f\u00fcr lang=javaclass {0}." },
1086:
1087:                        /** Stylesheet directed termination   */
1088:                        //  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
1089:                        { ER_STYLESHEET_DIRECTED_TERMINATION,
1090:                                "Formatvorlage hat die Beendigung \u00fcbertragen." },
1091:
1092:                        /** 1 or 2   */
1093:                        //  public static final int ER_ONE_OR_TWO = 141;
1094:                        { ER_ONE_OR_TWO, "1 oder 2" },
1095:
1096:                        /** 2 or 3   */
1097:                        //  public static final int ER_TWO_OR_THREE = 142;
1098:                        { ER_TWO_OR_THREE, "2 oder 3" },
1099:
1100:                        /** Could not load {0} (check CLASSPATH), now using just the defaults   */
1101:                        //  public static final int ER_COULD_NOT_LOAD_RESOURCE = 143;
1102:                        {
1103:                                ER_COULD_NOT_LOAD_RESOURCE,
1104:                                "{0} (CLASSPATH pr\u00fcfen) konnte nicht geladen werden; es werden die Standardwerte verwendet." },
1105:
1106:                        /** Cannot initialize default templates   */
1107:                        //  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
1108:                        { ER_CANNOT_INIT_DEFAULT_TEMPLATES,
1109:                                "Standardvorlagen k\u00f6nnen nicht initialisiert werden." },
1110:
1111:                        /** Result should not be null   */
1112:                        //  public static final int ER_RESULT_NULL = 145;
1113:                        { ER_RESULT_NULL, "Das Ergebnis darf nicht Null sein." },
1114:
1115:                        /** Result could not be set   */
1116:                        //  public static final int ER_RESULT_COULD_NOT_BE_SET = 146;
1117:                        { ER_RESULT_COULD_NOT_BE_SET,
1118:                                "Das Ergebnis konnte nicht festgelegt werden." },
1119:
1120:                        /** No output specified   */
1121:                        //  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
1122:                        { ER_NO_OUTPUT_SPECIFIED, "Keine Ausgabe angegeben." },
1123:
1124:                        /** Can't transform to a Result of type   */
1125:                        //  public static final int ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 148;
1126:                        { ER_CANNOT_TRANSFORM_TO_RESULT_TYPE,
1127:                                "Umsetzen in ein Ergebnis des Typs {0} ist nicht m\u00f6glich. " },
1128:
1129:                        /** Can't transform to a Source of type   */
1130:                        //  public static final int ER_CANNOT_TRANSFORM_SOURCE_TYPE = 149;
1131:                        { ER_CANNOT_TRANSFORM_SOURCE_TYPE,
1132:                                "Umsetzen einer Quelle des Typs {0} ist nicht m\u00f6glich. " },
1133:
1134:                        /** Null content handler  */
1135:                        //  public static final int ER_NULL_CONTENT_HANDLER = 150;
1136:                        { ER_NULL_CONTENT_HANDLER,
1137:                                "Es ist keine Inhaltssteuerroutine vorhanden." },
1138:
1139:                        /** Null error handler  */
1140:                        //  public static final int ER_NULL_ERROR_HANDLER = 151;
1141:                        { ER_NULL_ERROR_HANDLER,
1142:                                "Kein Fehlerbehandlungsprogramm vorhanden" },
1143:
1144:                        /** parse can not be called if the ContentHandler has not been set */
1145:                        //  public static final int ER_CANNOT_CALL_PARSE = 152;
1146:                        {
1147:                                ER_CANNOT_CALL_PARSE,
1148:                                "Die Syntaxanalyse kann nicht aufgerufen werden, wenn ContentHandler nicht festgelegt wurde." },
1149:
1150:                        /**  No parent for filter */
1151:                        //  public static final int ER_NO_PARENT_FOR_FILTER = 153;
1152:                        { ER_NO_PARENT_FOR_FILTER,
1153:                                "Kein Elter f\u00fcr Filter vorhanden" },
1154:
1155:                        /**  No stylesheet found in: {0}, media */
1156:                        //  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
1157:                        { ER_NO_STYLESHEET_IN_MEDIA,
1158:                                "Keine Formatvorlage gefunden in: {0}, Datentr\u00e4ger= {1}." },
1159:
1160:                        /**  No xml-stylesheet PI found in */
1161:                        //  public static final int ER_NO_STYLESHEET_PI = 155;
1162:                        { ER_NO_STYLESHEET_PI,
1163:                                "Keine Verarbeitungsanweisung f\u00fcr xml-stylesheet gefunden in {0}." },
1164:
1165:                        /**  No default implementation found */
1166:                        //  public static final int ER_NO_DEFAULT_IMPL = 156;
1167:                        //{ ER_NO_DEFAULT_IMPL,
1168:                        //    "No default implementation found "},
1169:                        /**  ChunkedIntArray({0}) not currently supported */
1170:                        //  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
1171:                        //{ ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
1172:                        //  "ChunkedIntArray({0}) not currently supported"},
1173:                        /**  Offset bigger than slot */
1174:                        //  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
1175:                        //{ ER_OFFSET_BIGGER_THAN_SLOT,
1176:                        //  "Offset bigger than slot"},
1177:                        /**  Coroutine not available, id= */
1178:                        //  public static final int ER_COROUTINE_NOT_AVAIL = 159;
1179:                        //{ ER_COROUTINE_NOT_AVAIL,
1180:                        //   "Coroutine not available, id={0}"},
1181:                        /**  CoroutineManager recieved co_exit() request */
1182:                        //  public static final int ER_COROUTINE_CO_EXIT = 160;
1183:                        //{ ER_COROUTINE_CO_EXIT,
1184:                        //  "CoroutineManager received co_exit() request"},
1185:                        /**  co_joinCoroutineSet() failed */
1186:                        //  public static final int ER_COJOINROUTINESET_FAILED = 161;
1187:                        //{ ER_COJOINROUTINESET_FAILED,
1188:                        //   "co_joinCoroutineSet() failed"},
1189:                        /**  Coroutine parameter error () */
1190:                        //  public static final int ER_COROUTINE_PARAM = 162;
1191:                        //{ ER_COROUTINE_PARAM,
1192:                        //   "Coroutine parameter error ({0})"},
1193:                        /**  UNEXPECTED: Parser doTerminate answers  */
1194:                        //  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
1195:                        //{ ER_PARSER_DOTERMINATE_ANSWERS,
1196:                        //   "\nUNEXPECTED: Parser doTerminate answers {0}"},
1197:                        /**  parse may not be called while parsing */
1198:                        //  public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
1199:                        //{ ER_NO_PARSE_CALL_WHILE_PARSING,
1200:                        //   "parse may not be called while parsing"},
1201:                        /**  Error: typed iterator for axis  {0} not implemented  */
1202:                        //  public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
1203:                        //{ ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
1204:                        //  "Error: typed iterator for axis  {0} not implemented"},
1205:                        /**  Error: iterator for axis {0} not implemented  */
1206:                        //  public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
1207:                        //{ ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
1208:                        //   "Error: iterator for axis {0} not implemented "},
1209:                        /**  Iterator clone not supported  */
1210:                        //  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
1211:                        //{ ER_ITERATOR_CLONE_NOT_SUPPORTED,
1212:                        //  "Iterator clone not supported"},
1213:                        /**  Unknown axis traversal type  */
1214:                        //  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
1215:                        //{ ER_UNKNOWN_AXIS_TYPE,
1216:                        //   "Unknown axis traversal type: {0}"},
1217:                        /**  Axis traverser not supported  */
1218:                        //  public static final int ER_AXIS_NOT_SUPPORTED = 169;
1219:                        //{ ER_AXIS_NOT_SUPPORTED,
1220:                        //   "Axis traverser not supported: {0}"},
1221:                        /**  No more DTM IDs are available  */
1222:                        //  public static final int ER_NO_DTMIDS_AVAIL = 170;
1223:                        //{ ER_NO_DTMIDS_AVAIL,
1224:                        //  "No more DTM IDs are available"},
1225:                        /**  Not supported  */
1226:                        //  public static final int ER_NOT_SUPPORTED = 171;
1227:                        { ER_NOT_SUPPORTED, "Nicht unterst\u00fctzt: {0}" },
1228:
1229:                        /**  node must be non-null for getDTMHandleFromNode  */
1230:                        //  public static final int ER_NODE_NON_NULL = 172;
1231:                        //{ ER_NODE_NON_NULL,
1232:                        //   "Node must be non-null for getDTMHandleFromNode"},
1233:                        /**  Could not resolve the node to a handle  */
1234:                        //  public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
1235:                        //{ ER_COULD_NOT_RESOLVE_NODE,
1236:                        //   "Could not resolve the node to a handle"},
1237:                        /**  startParse may not be called while parsing */
1238:                        //  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
1239:                        //{ ER_STARTPARSE_WHILE_PARSING,
1240:                        //  "startParse may not be called while parsing"},
1241:                        /**  startParse needs a non-null SAXParser  */
1242:                        //  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
1243:                        //{ ER_STARTPARSE_NEEDS_SAXPARSER,
1244:                        //   "startParse needs a non-null SAXParser"},
1245:                        /**  could not initialize parser with */
1246:                        //  public static final int ER_COULD_NOT_INIT_PARSER = 176;
1247:                        //{ ER_COULD_NOT_INIT_PARSER,
1248:                        //  "could not initialize parser with"},
1249:                        /**  Value for property {0} should be a Boolean instance  */
1250:                        //  public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
1251:                        { ER_PROPERTY_VALUE_BOOLEAN,
1252:                                "Der Wert f\u00fcr Merkmal {0} sollte ein Boolesches Exemplar sein." },
1253:
1254:                        /**  exception creating new instance for pool  */
1255:                        //  public static final int ER_EXCEPTION_CREATING_POOL = 178;
1256:                        //{ ER_EXCEPTION_CREATING_POOL,
1257:                        //   "exception creating new instance for pool"},
1258:                        /**  Path contains invalid escape sequence  */
1259:                        //  public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
1260:                        //{ ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
1261:                        //   "Path contains invalid escape sequence"},
1262:                        /**  Scheme is required!  */
1263:                        //  public static final int ER_SCHEME_REQUIRED = 180;
1264:                        //{ ER_SCHEME_REQUIRED,
1265:                        //  "Scheme is required!"},
1266:                        /**  No scheme found in URI  */
1267:                        //  public static final int ER_NO_SCHEME_IN_URI = 181;
1268:                        //{ ER_NO_SCHEME_IN_URI,
1269:                        //   "No scheme found in URI: {0}"},
1270:                        /**  No scheme found in URI  */
1271:                        //  public static final int ER_NO_SCHEME_INURI = 182;
1272:                        //{ ER_NO_SCHEME_INURI,
1273:                        //   "No scheme found in URI"},
1274:                        /**  Path contains invalid character:   */
1275:                        //  public static final int ER_PATH_INVALID_CHAR = 183;
1276:                        //{ ER_PATH_INVALID_CHAR,
1277:                        //   "Path contains invalid character: {0}"},
1278:                        /**  Cannot set scheme from null string  */
1279:                        //  public static final int ER_SCHEME_FROM_NULL_STRING = 184;
1280:                        //{ ER_SCHEME_FROM_NULL_STRING,
1281:                        //   "Cannot set scheme from null string"},
1282:                        /**  The scheme is not conformant. */
1283:                        //  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
1284:                        //{ ER_SCHEME_NOT_CONFORMANT,
1285:                        //   "The scheme is not conformant."},
1286:                        /**  Host is not a well formed address  */
1287:                        //  public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
1288:                        //{ ER_HOST_ADDRESS_NOT_WELLFORMED,
1289:                        //   "Host is not a well formed address"},
1290:                        /**  Port cannot be set when host is null  */
1291:                        //  public static final int ER_PORT_WHEN_HOST_NULL = 187;
1292:                        //{ ER_PORT_WHEN_HOST_NULL,
1293:                        //   "Port cannot be set when host is null"},
1294:                        /**  Invalid port number  */
1295:                        //  public static final int ER_INVALID_PORT = 188;
1296:                        //{ ER_INVALID_PORT,
1297:                        //   "Invalid port number"},
1298:                        /**  Fragment can only be set for a generic URI  */
1299:                        //  public static final int ER_FRAG_FOR_GENERIC_URI = 189;
1300:                        //{ ER_FRAG_FOR_GENERIC_URI,
1301:                        //   "Fragment can only be set for a generic URI"},
1302:                        /**  Fragment cannot be set when path is null  */
1303:                        //  public static final int ER_FRAG_WHEN_PATH_NULL = 190;
1304:                        //{ ER_FRAG_WHEN_PATH_NULL,
1305:                        //   "Fragment cannot be set when path is null"},
1306:                        /**  Fragment contains invalid character  */
1307:                        //  public static final int ER_FRAG_INVALID_CHAR = 191;
1308:                        //{ ER_FRAG_INVALID_CHAR,
1309:                        //   "Fragment contains invalid character"},
1310:
1311:                        /** Parser is already in use  */
1312:                        //  public static final int ER_PARSER_IN_USE = 192;
1313:                        //{ ER_PARSER_IN_USE,
1314:                        //    "Parser is already in use"},
1315:                        /** Parser is already in use  */
1316:                        //  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
1317:                        //{ ER_CANNOT_CHANGE_WHILE_PARSING,
1318:                        //    "Cannot change {0} {1} while parsing"},
1319:                        /** Self-causation not permitted  */
1320:                        //  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
1321:                        //{ ER_SELF_CAUSATION_NOT_PERMITTED,
1322:                        //   "Self-causation not permitted"},
1323:                        /** src attribute not yet supported for  */
1324:                        //  public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
1325:                        { ER_COULD_NOT_FIND_EXTERN_SCRIPT,
1326:                                "Externes Script bei {0} konnte nicht erreicht werden." },
1327:
1328:                        /** The resource [] could not be found     */
1329:                        //  public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
1330:                        { ER_RESOURCE_COULD_NOT_FIND,
1331:                                "Die Ressource [ {0} ] konnte nicht gefunden werden.\n {1}" },
1332:
1333:                        /** output property not recognized:  */
1334:                        //  public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
1335:                        { ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
1336:                                "Ausgabemerkmal nicht erkannt: {0}" },
1337:
1338:                        /** Userinfo may not be specified if host is not specified   */
1339:                        //  public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
1340:                        //{ ER_NO_USERINFO_IF_NO_HOST,
1341:                        //    "Userinfo may not be specified if host is not specified"},
1342:                        /** Port may not be specified if host is not specified   */
1343:                        //  public static final int ER_NO_PORT_IF_NO_HOST = 199;
1344:                        //{ ER_NO_PORT_IF_NO_HOST,
1345:                        //    "Port may not be specified if host is not specified"},
1346:                        /** Query string cannot be specified in path and query string   */
1347:                        //  public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
1348:                        //{ ER_NO_QUERY_STRING_IN_PATH,
1349:                        //    "Query string cannot be specified in path and query string"},
1350:                        /** Fragment cannot be specified in both the path and fragment   */
1351:                        //  public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
1352:                        //{ ER_NO_FRAGMENT_STRING_IN_PATH,
1353:                        //    "Fragment cannot be specified in both the path and fragment"},
1354:                        /** Cannot initialize URI with empty parameters   */
1355:                        //  public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
1356:                        //{ ER_CANNOT_INIT_URI_EMPTY_PARMS,
1357:                        //    "Cannot initialize URI with empty parameters"},
1358:                        /** Failed creating ElemLiteralResult instance   */
1359:                        //  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
1360:                        { ER_FAILED_CREATING_ELEMLITRSLT,
1361:                                "Das Erstellen des Exemplars ElemLiteralResult ist fehlgeschlagen." },
1362:
1363:                        //Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
1364:                        // In latest Xalan code base key name is  ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
1365:                        //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
1366:                        //NOTE: Not only the key name but message has also been changed.
1367:
1368:                        /** Priority value does not contain a parsable number   */
1369:                        //  public static final int ER_VALUE_SHOULD_BE_NUMBER = 204;
1370:                        { ER_VALUE_SHOULD_BE_NUMBER,
1371:                                "Der Wert f\u00fcr {0} sollte eine syntaktisch analysierbare Zahl sein." },
1372:
1373:                        /**  Value for {0} should equal 'yes' or 'no'   */
1374:                        //  public static final int ER_VALUE_SHOULD_EQUAL = 205;
1375:                        { ER_VALUE_SHOULD_EQUAL,
1376:                                "Der Wert f\u00fcr {0} sollte ''yes'' oder ''no'' entsprechen." },
1377:
1378:                        /**  Failed calling {0} method   */
1379:                        //  public static final int ER_FAILED_CALLING_METHOD = 206;
1380:                        { ER_FAILED_CALLING_METHOD,
1381:                                "Aufruf von Methode {0} ist fehlgeschlagen" },
1382:
1383:                        /** Failed creating ElemLiteralResult instance   */
1384:                        //  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
1385:                        { ER_FAILED_CREATING_ELEMTMPL,
1386:                                "Das Erstellen des Exemplars ElemTemplateElement ist fehlgeschlagen." },
1387:
1388:                        /**  Characters are not allowed at this point in the document   */
1389:                        //  public static final int ER_CHARS_NOT_ALLOWED = 208;
1390:                        { ER_CHARS_NOT_ALLOWED,
1391:                                "Zeichen sind an dieser Stelle im Dokument nicht zul\u00e4ssig." },
1392:
1393:                        /**  attribute is not allowed on the element   */
1394:                        //  public static final int ER_ATTR_NOT_ALLOWED = 209;
1395:                        { ER_ATTR_NOT_ALLOWED,
1396:                                "Das Attribut \"{0}\" ist im Element {1} nicht zul\u00e4ssig!" },
1397:
1398:                        /**  Method not yet supported    */
1399:                        //  public static final int ER_METHOD_NOT_SUPPORTED = 210;
1400:                        //{ ER_METHOD_NOT_SUPPORTED,
1401:                        //   "Method not yet supported "},
1402:                        /**  Bad value    */
1403:                        //  public static final int ER_BAD_VALUE = 211;
1404:                        { ER_BAD_VALUE, "{0} ung\u00fcltiger Wert {1} " },
1405:
1406:                        /**  attribute value not found   */
1407:                        //  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
1408:                        { ER_ATTRIB_VALUE_NOT_FOUND,
1409:                                "Attributwert {0} wurde nicht gefunden " },
1410:
1411:                        /**  attribute value not recognized    */
1412:                        //  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
1413:                        { ER_ATTRIB_VALUE_NOT_RECOGNIZED,
1414:                                "Attributwert {0} wurde nicht erkannt " },
1415:
1416:                        /** IncrementalSAXSource_Filter not currently restartable   */
1417:                        //  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
1418:                        //{ ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
1419:                        //  "IncrementalSAXSource_Filter not currently restartable"},
1420:                        /** IncrementalSAXSource_Filter not currently restartable   */
1421:                        //  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
1422:                        //{ ER_XMLRDR_NOT_BEFORE_STARTPARSE,
1423:                        // "XMLReader not before startParse request"},
1424:                        /** Attempting to generate a namespace prefix with a null URI   */
1425:                        //  public static final int ER_NULL_URI_NAMESPACE = 216;
1426:                        {
1427:                                ER_NULL_URI_NAMESPACE,
1428:                                "Es wird versucht, ein Namensbereichpr\u00e4fix mit einer Null-URI zu erzeugen." },
1429:
1430:                        //New ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
1431:
1432:                        /** Attempting to generate a namespace prefix with a null URI   */
1433:                        //  public static final int ER_NUMBER_TOO_BIG = 217;
1434:                        {
1435:                                ER_NUMBER_TOO_BIG,
1436:                                "Es wird versucht, eine gr\u00f6\u00dfere Zahl als die gr\u00f6\u00dfte erweiterte Ganzzahl zu formatieren." },
1437:
1438:                        //ER_CANNOT_FIND_SAX1_DRIVER
1439:
1440:                        //  public static final int  ER_CANNOT_FIND_SAX1_DRIVER = 218;
1441:
1442:                        { ER_CANNOT_FIND_SAX1_DRIVER,
1443:                                "SAX1-Treiberklasse {0} konnte nicht gefunden werden." },
1444:
1445:                        //ER_SAX1_DRIVER_NOT_LOADED
1446:                        //  public static final int  ER_SAX1_DRIVER_NOT_LOADED = 219;
1447:
1448:                        { ER_SAX1_DRIVER_NOT_LOADED,
1449:                                "SAX1-Treiberklasse {0} gefunden, kann aber nicht geladen werden." },
1450:
1451:                        //ER_SAX1_DRIVER_NOT_INSTANTIATED
1452:                        //  public static final int  ER_SAX1_DRIVER_NOT_INSTANTIATED = 220 ;
1453:
1454:                        { ER_SAX1_DRIVER_NOT_INSTANTIATED,
1455:                                "SAX1-Treiberklasse {0} geladen, kann aber nicht instanziert werden." },
1456:
1457:                        // ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER
1458:                        //  public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 221;
1459:
1460:                        { ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER,
1461:                                "SAX1-Treiberklasse {0} implementiert nicht org.xml.sax.Parser." },
1462:
1463:                        // ER_PARSER_PROPERTY_NOT_SPECIFIED
1464:                        //  public static final int  ER_PARSER_PROPERTY_NOT_SPECIFIED = 222;
1465:
1466:                        { ER_PARSER_PROPERTY_NOT_SPECIFIED,
1467:                                "Systemmerkmal org.xml.sax.parser ist nicht angegeben." },
1468:
1469:                        //ER_PARSER_ARG_CANNOT_BE_NULL
1470:                        //  public static final int  ER_PARSER_ARG_CANNOT_BE_NULL = 223 ;
1471:
1472:                        { ER_PARSER_ARG_CANNOT_BE_NULL,
1473:                                "Parserargument darf nicht Null sein." },
1474:
1475:                        // ER_FEATURE
1476:                        //  public static final int  ER_FEATURE = 224;
1477:
1478:                        { ER_FEATURE, "Feature: {0}" },
1479:
1480:                        // ER_PROPERTY
1481:                        //  public static final int ER_PROPERTY = 225 ;
1482:
1483:                        { ER_PROPERTY, "Merkmal: {0}" },
1484:
1485:                        // ER_NULL_ENTITY_RESOLVER
1486:                        //  public static final int ER_NULL_ENTITY_RESOLVER  = 226;
1487:
1488:                        { ER_NULL_ENTITY_RESOLVER,
1489:                                "Es ist keine Entit\u00e4tenaufl\u00f6sungsroutine vorhanden." },
1490:
1491:                        // ER_NULL_DTD_HANDLER
1492:                        //  public static final int  ER_NULL_DTD_HANDLER = 227 ;
1493:
1494:                        { ER_NULL_DTD_HANDLER,
1495:                                "Es ist keine Steuerroutine f\u00fcr Dokumenttypbeschreibungen vorhanden." },
1496:
1497:                        // No Driver Name Specified!
1498:                        //  public static final int ER_NO_DRIVER_NAME_SPECIFIED = 228;
1499:                        { ER_NO_DRIVER_NAME_SPECIFIED,
1500:                                "Kein Treibername angegeben!" },
1501:
1502:                        // No URL Specified!
1503:                        //  public static final int ER_NO_URL_SPECIFIED = 229;
1504:                        { ER_NO_URL_SPECIFIED, "Keine URL-Adresse angegeben!" },
1505:
1506:                        // Pool size is less than 1!
1507:                        //  public static final int ER_POOLSIZE_LESS_THAN_ONE = 230;
1508:                        { ER_POOLSIZE_LESS_THAN_ONE,
1509:                                "Poolgr\u00f6\u00dfe ist kleiner als 1!" },
1510:
1511:                        // Invalid Driver Name Specified!
1512:                        //  public static final int ER_INVALID_DRIVER_NAME = 231;
1513:                        { ER_INVALID_DRIVER_NAME,
1514:                                "Ung\u00fcltiger Treibername angegeben!" },
1515:
1516:                        // ErrorListener
1517:                        //  public static final int ER_ERRORLISTENER = 232;
1518:                        { ER_ERRORLISTENER, "ErrorListener" },
1519:
1520:                        // Programmer's error! expr has no ElemTemplateElement parent!
1521:                        //  public static final int ER_ASSERT_NO_TEMPLATE_PARENT = 233;
1522:                        { ER_ASSERT_NO_TEMPLATE_PARENT,
1523:                                "Programmierfehler! 'expr' hat kein Elter ElemTemplateElement!" },
1524:
1525:                        // Programmer''s assertion in RundundentExprEliminator: {0}
1526:                        //  public static final int ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 234;
1527:                        { ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
1528:                                "Programmiererfestlegung in RedundentExprEliminator: {0} " },
1529:
1530:                        // Axis traverser not supported: {0}
1531:                        //  public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
1532:                        //{ ER_AXIS_TRAVERSER_NOT_SUPPORTED,
1533:                        // "Axis traverser not supported: {0}"},
1534:
1535:                        // ListingErrorHandler created with null PrintWriter!
1536:                        //  public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = 236;
1537:                        //{ ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
1538:                        // "ListingErrorHandler created with null PrintWriter!"},
1539:
1540:                        // {0}is not allowed in this position in the stylesheet!
1541:                        //  public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
1542:                        { ER_NOT_ALLOWED_IN_POSITION,
1543:                                "{0} ist an dieser Position in der Formatvorlage nicht zul\u00e4ssig!" },
1544:
1545:                        // Non-whitespace text is not allowed in this position in the stylesheet!
1546:                        //  public static final int ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 238;
1547:                        {
1548:                                ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION,
1549:                                "Anderer Text als Leerzeichen ist an dieser Position in der Formatvorlage nicht zul\u00e4ssig!" },
1550:
1551:                        // This code is shared with warning codes.
1552:                        // Illegal value: {1} used for CHAR attribute: {0}.  An attribute of type CHAR must be only 1 character!
1553:                        //  public static final int INVALID_TCHAR = 239;
1554:                        // SystemId Unknown
1555:                        {
1556:                                INVALID_TCHAR,
1557:                                "Unzul\u00e4ssiger Wert {1} f\u00fcr CHAR-Attribut verwendet: {0}.  Ein Attribut des Typs CHAR darf nur ein Zeichen umfassen!" },
1558:
1559:                        //  public static final int ER_SYSTEMID_UNKNOWN = 240;
1560:                        //{ ER_SYSTEMID_UNKNOWN,
1561:                        // "SystemId Unknown"},
1562:
1563:                        // Location of error unknown
1564:                        //  public static final int ER_LOCATION_UNKNOWN = 241;
1565:                        //{ ER_LOCATION_UNKNOWN,
1566:                        // "Location of error unknown"},
1567:
1568:                        // Note to translators:  The following message is used if the value of
1569:                        // an attribute in a stylesheet is invalid.  "QNAME" is the XML data-type of
1570:                        // the attribute, and should not be translated.  The substitution text {1} is
1571:                        // the attribute value and {0} is the attribute name.
1572:                        // INVALID_QNAME
1573:
1574:                        //The following codes are shared with the warning codes...
1575:                        // Illegal value: {1} used for QNAME attribute: {0}
1576:                        //  public static final int INVALID_QNAME = 242;
1577:                        { INVALID_QNAME,
1578:                                "Unzul\u00e4ssiger Wert {1} f\u00fcr QNAME-Attribut verwendet: {0}" },
1579:
1580:                        // Note to translators:  The following message is used if the value of
1581:                        // an attribute in a stylesheet is invalid.  "ENUM" is the XML data-type of
1582:                        // the attribute, and should not be translated.  The substitution text {1} is
1583:                        // the attribute value, {0} is the attribute name, and {2} is a list of valid
1584:                        // values.
1585:                        // INVALID_ENUM
1586:
1587:                        // Illegal value: {1} used for ENUM attribute: {0}.  Valid values are: {2}.
1588:                        //  public static final int INVALID_ENUM = 243;
1589:                        {
1590:                                INVALID_ENUM,
1591:                                "Unzul\u00e4ssiger Wert {1} f\u00fcr ENUM-Attribut verwendet: {0}.  Folgende Werte sind g\u00fcltig: {2}." },
1592:
1593:                        // Note to translators:  The following message is used if the value of
1594:                        // an attribute in a stylesheet is invalid.  "NMTOKEN" is the XML data-type
1595:                        // of the attribute, and should not be translated.  The substitution text {1} is
1596:                        // the attribute value and {0} is the attribute name.
1597:                        // INVALID_NMTOKEN
1598:
1599:                        // Illegal value: {1} used for NMTOKEN attribute: {0}.
1600:                        //  public static final int INVALID_NMTOKEN = 244;
1601:                        { INVALID_NMTOKEN,
1602:                                "Unzul\u00e4ssiger Wert {1} f\u00fcr NMTOKEN-Attribut verwendet: {0}. " },
1603:
1604:                        // Note to translators:  The following message is used if the value of
1605:                        // an attribute in a stylesheet is invalid.  "NCNAME" is the XML data-type
1606:                        // of the attribute, and should not be translated.  The substitution text {1} is
1607:                        // the attribute value and {0} is the attribute name.
1608:                        // INVALID_NCNAME
1609:
1610:                        // Illegal value: {1} used for NCNAME attribute: {0}.
1611:                        //  public static final int INVALID_NCNAME = 245;
1612:                        { INVALID_NCNAME,
1613:                                "Unzul\u00e4ssiger Wert {1} f\u00fcr NCNAME-Attribut verwendet: {0}. " },
1614:
1615:                        // Note to translators:  The following message is used if the value of
1616:                        // an attribute in a stylesheet is invalid.  "boolean" is the XSLT data-type
1617:                        // of the attribute, and should not be translated.  The substitution text {1} is
1618:                        // the attribute value and {0} is the attribute name.
1619:                        // INVALID_BOOLEAN
1620:
1621:                        // Illegal value: {1} used for boolean attribute: {0}.
1622:                        //  public static final int INVALID_BOOLEAN = 246;
1623:
1624:                        { INVALID_BOOLEAN,
1625:                                "Unzul\u00e4ssiger Wert {1} f\u00fcr BOOLEAN-Attribut verwendet: {0}. " },
1626:
1627:                        // Note to translators:  The following message is used if the value of
1628:                        // an attribute in a stylesheet is invalid.  "number" is the XSLT data-type
1629:                        // of the attribute, and should not be translated.  The substitution text {1} is
1630:                        // the attribute value and {0} is the attribute name.
1631:                        // INVALID_NUMBER
1632:
1633:                        // Illegal value: {1} used for number attribute: {0}.
1634:                        //  public static final int INVALID_NUMBER = 247;
1635:                        { INVALID_NUMBER,
1636:                                "Unzul\u00e4ssiger Wert {1} f\u00fcr NUMBER-Attribut verwendet: {0}. " },
1637:
1638:                        // End of shared codes...
1639:
1640:                        // Note to translators:  A "match pattern" is a special form of XPath expression
1641:                        // that is used for matching patterns.  The substitution text is the name of
1642:                        // a function.  The message indicates that when this function is referenced in
1643:                        // a match pattern, its argument must be a string literal (or constant.)
1644:                        // ER_ARG_LITERAL - new error message for bugzilla //5202
1645:
1646:                        // Argument to {0} in match pattern must be a literal.
1647:                        //  public static final int ER_ARG_LITERAL             = 248;
1648:                        { ER_ARG_LITERAL,
1649:                                "Argument von {0} in Suchmuster muss ein Literal sein." },
1650:
1651:                        // Note to translators:  The following message indicates that two definitions of
1652:                        // a variable.  A "global variable" is a variable that is accessible everywher
1653:                        // in the stylesheet.
1654:                        // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
1655:
1656:                        // Duplicate global variable declaration.
1657:                        //  public static final int ER_DUPLICATE_GLOBAL_VAR    = 249;
1658:                        { ER_DUPLICATE_GLOBAL_VAR,
1659:                                "Doppelte Deklaration einer globalen Variablen." },
1660:
1661:                        // Note to translators:  The following message indicates that two definitions of
1662:                        // a variable were encountered.
1663:                        // ER_DUPLICATE_VAR - new error message for bugzilla #790
1664:
1665:                        // Duplicate variable declaration.
1666:                        //  public static final int ER_DUPLICATE_VAR           = 250;
1667:                        { ER_DUPLICATE_VAR,
1668:                                "Doppelte Deklaration einer Variablen." },
1669:
1670:                        // Note to translators:  "xsl:template, "name" and "match" are XSLT keywords
1671:                        // which must not be translated.
1672:                        // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
1673:
1674:                        // xsl:template must have a name or match attribute (or both)
1675:                        //  public static final int ER_TEMPLATE_NAME_MATCH     = 251;
1676:                        { ER_TEMPLATE_NAME_MATCH,
1677:                                "xsl:template muss ein Attribut 'name' und/oder 'match' haben." },
1678:
1679:                        // Note to translators:  "exclude-result-prefixes" is an XSLT keyword which
1680:                        // should not be translated.  The message indicates that a namespace prefix
1681:                        // encountered as part of the value of the exclude-result-prefixes attribute
1682:                        // was in error.
1683:                        // ER_INVALID_PREFIX - new error message for bugzilla #788
1684:
1685:                        // Prefix in exclude-result-prefixes is not valid: {0}
1686:                        //  public static final int ER_INVALID_PREFIX          = 252;
1687:                        { ER_INVALID_PREFIX,
1688:                                "Pr\u00e4fix in exclude-result-prefixes ist nicht g\u00fcltig: {0}." },
1689:
1690:                        // Note to translators:  An "attribute set" is a set of attributes that can be
1691:                        // added to an element in the output document as a group.  The message indicates
1692:                        // that there was a reference to an attribute set named {0} that was never
1693:                        // defined.
1694:                        // ER_NO_ATTRIB_SET - new error message for bugzilla #782
1695:
1696:                        // attribute-set named {0} does not exist
1697:                        //  public static final int ER_NO_ATTRIB_SET           = 253;
1698:                        { ER_NO_ATTRIB_SET,
1699:                                "Die Attributgruppe {0} ist nicht vorhanden." },
1700:
1701:                        // Warnings...
1702:
1703:                        /** WG_FOUND_CURLYBRACE          */
1704:                        //  public static final int WG_FOUND_CURLYBRACE = 1;
1705:                        { WG_FOUND_CURLYBRACE,
1706:                                "'}' gefunden, es ist aber keine Attributvorlage ge\u00f6ffnet!" },
1707:
1708:                        /** WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR          */
1709:                        //  public static final int WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 2;
1710:                        {
1711:                                WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR,
1712:                                "Warnung: Attribut 'count' entspricht keinem \u00fcbergeordneten Fensterobjekt in xsl:number! Ziel = {0}" },
1713:
1714:                        /** WG_EXPR_ATTRIB_CHANGED_TO_SELECT          */
1715:                        //  public static final int WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 3;
1716:                        {
1717:                                WG_EXPR_ATTRIB_CHANGED_TO_SELECT,
1718:                                "Veraltete Syntax: Der Name des Attributs 'expr' wurde in 'select' ge\u00e4ndert." },
1719:
1720:                        /** WG_NO_LOCALE_IN_FORMATNUMBER          */
1721:                        //  public static final int WG_NO_LOCALE_IN_FORMATNUMBER = 4;
1722:                        {
1723:                                WG_NO_LOCALE_IN_FORMATNUMBER,
1724:                                "Xalan bearbeitet noch nicht den L\u00e4ndereinstellungsnamen in der Funktion 'format-number'." },
1725:
1726:                        /** WG_LOCALE_NOT_FOUND          */
1727:                        //  public static final int WG_LOCALE_NOT_FOUND = 5;
1728:                        {
1729:                                WG_LOCALE_NOT_FOUND,
1730:                                "Warnung: L\u00e4ndereinstellung f\u00fcr xml:lang={0} konnte nicht gefunden werden." },
1731:
1732:                        /** WG_CANNOT_MAKE_URL_FROM          */
1733:                        //  public static final int WG_CANNOT_MAKE_URL_FROM = 6;
1734:                        { WG_CANNOT_MAKE_URL_FROM,
1735:                                "URL konnte nicht erstellt werden aus: {0}" },
1736:
1737:                        /** WG_CANNOT_LOAD_REQUESTED_DOC          */
1738:                        //  public static final int WG_CANNOT_LOAD_REQUESTED_DOC = 7;
1739:                        { WG_CANNOT_LOAD_REQUESTED_DOC,
1740:                                "Angeforderte Dokumentation kann nicht geladen werden: {0}" },
1741:
1742:                        /** WG_CANNOT_FIND_COLLATOR          */
1743:                        //  public static final int WG_CANNOT_FIND_COLLATOR = 8;
1744:                        { WG_CANNOT_FIND_COLLATOR,
1745:                                "Collator f\u00fcr <sort xml:lang={0} konnte nicht gefunden werden." },
1746:
1747:                        /** WG_FUNCTIONS_SHOULD_USE_URL          */
1748:                        //  public static final int WG_FUNCTIONS_SHOULD_USE_URL = 9;
1749:                        {
1750:                                WG_FUNCTIONS_SHOULD_USE_URL,
1751:                                "Veraltete Syntax: Die Funktionsanweisung sollte eine URL-Adresse {0} verwenden." },
1752:
1753:                        /** WG_ENCODING_NOT_SUPPORTED_USING_UTF8          */
1754:                        //  public static final int WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 10;
1755:                        { WG_ENCODING_NOT_SUPPORTED_USING_UTF8,
1756:                                "Verschl\u00fcsselung nicht unterst\u00fctzt: {0}, UTF-8 wird verwendet." },
1757:
1758:                        /** WG_ENCODING_NOT_SUPPORTED_USING_JAVA          */
1759:                        //  public static final int WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 11;
1760:                        { WG_ENCODING_NOT_SUPPORTED_USING_JAVA,
1761:                                "Verschl\u00fcsselung nicht unterst\u00fctzt: {0}, Java {1} wird verwendet." },
1762:
1763:                        /** WG_SPECIFICITY_CONFLICTS          */
1764:                        //  public static final int WG_SPECIFICITY_CONFLICTS = 12;
1765:                        {
1766:                                WG_SPECIFICITY_CONFLICTS,
1767:                                "Genauigkeitskonflikte gefunden: {0}. Die letzte Angabe in der Formatvorlage wird verwendet." },
1768:
1769:                        /** WG_PARSING_AND_PREPARING          */
1770:                        //  public static final int WG_PARSING_AND_PREPARING = 13;
1771:                        { WG_PARSING_AND_PREPARING,
1772:                                "========= Syntaxanalyse und Vorbereitung von {0} ==========" },
1773:
1774:                        /** WG_ATTR_TEMPLATE          */
1775:                        //  public static final int WG_ATTR_TEMPLATE = 14;
1776:                        { WG_ATTR_TEMPLATE, "Attributvorlage, {0}" },
1777:
1778:                        /** WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE          */
1779:                        //  public static final int WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = 15;
1780:                        {
1781:                                WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE,
1782:                                "\u00dcbereinstimmungskonflikt zwischen xsl:strip-space und xsl:preserve-space" },
1783:
1784:                        /** WG_ATTRIB_NOT_HANDLED          */
1785:                        //  public static final int WG_ATTRIB_NOT_HANDLED = 16;
1786:                        { WG_ATTRIB_NOT_HANDLED,
1787:                                "Xalan bearbeitet noch nicht das Attribut {0}!" },
1788:
1789:                        /** WG_NO_DECIMALFORMAT_DECLARATION          */
1790:                        //  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
1791:                        { WG_NO_DECIMALFORMAT_DECLARATION,
1792:                                "Keine Deklaration f\u00fcr Dezimalformat gefunden: {0}" },
1793:
1794:                        /** WG_OLD_XSLT_NS          */
1795:                        //  public static final int WG_OLD_XSLT_NS = 18;
1796:                        { WG_OLD_XSLT_NS,
1797:                                "Fehlender oder ung\u00fcltiger XSLT-Namensbereich " },
1798:
1799:                        /** WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED          */
1800:                        //  public static final int WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 19;
1801:                        { WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED,
1802:                                "Nur eine Standarddeklaration xsl:decimal-format ist zul\u00e4ssig." },
1803:
1804:                        /** WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE          */
1805:                        //  public static final int WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 20;
1806:                        {
1807:                                WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE,
1808:                                "Namen in xsl:decimal-format m\u00fcssen eindeutig sein. Name \"{0}\" wurde dupliziert." },
1809:
1810:                        /** WG_ILLEGAL_ATTRIBUTE          */
1811:                        //public static final int WG_ILLEGAL_ATTRIBUTE = 21;
1812:                        { WG_ILLEGAL_ATTRIBUTE,
1813:                                "{0} hat ein unzul\u00e4ssiges Attribut {1}." },
1814:
1815:                        /** WG_COULD_NOT_RESOLVE_PREFIX          */
1816:                        //  public static final int WG_COULD_NOT_RESOLVE_PREFIX = 22;
1817:                        {
1818:                                WG_COULD_NOT_RESOLVE_PREFIX,
1819:                                "Namensbereichpr\u00e4fix konnte nicht aufgel\u00f6st werden: {0}. Der Knoten wird ignoriert." },
1820:
1821:                        /** WG_STYLESHEET_REQUIRES_VERSION_ATTRIB          */
1822:                        //  public static final int WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 23;
1823:                        { WG_STYLESHEET_REQUIRES_VERSION_ATTRIB,
1824:                                "xsl:stylesheet erfordert ein Attribut 'version'!" },
1825:
1826:                        /** WG_ILLEGAL_ATTRIBUTE_NAME          */
1827:                        //  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
1828:                        { WG_ILLEGAL_ATTRIBUTE_NAME,
1829:                                "Unzul\u00e4ssiger Attributname: {0}" },
1830:
1831:                        /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
1832:                        //  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
1833:                        { WG_ILLEGAL_ATTRIBUTE_VALUE,
1834:                                "Unzul\u00e4ssiger Wert f\u00fcr Attribut {0} verwendet: {1}" },
1835:
1836:                        /** WG_EMPTY_SECOND_ARG          */
1837:                        //  public static final int WG_EMPTY_SECOND_ARG = 26;
1838:                        {
1839:                                WG_EMPTY_SECOND_ARG,
1840:                                "Die Ergebnisknoteneinstellung des zweiten Arguments der Dokumentfunktion ist leer. Geben Sie eine leere Knotengruppe zur\u00fcck." },
1841:
1842:                        //Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
1843:
1844:                        // Note to translators:  "name" and "xsl:processing-instruction" are keywords
1845:                        // and must not be translated.
1846:                        // WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML
1847:
1848:                        /** WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML          */
1849:                        //  public static final int WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 27;
1850:                        {
1851:                                WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
1852:                                "Der Wert des Attributs 'name' von xsl:processing-instruction darf nicht 'xml' sein." },
1853:
1854:                        // Note to translators:  "name" and "xsl:processing-instruction" are keywords
1855:                        // and must not be translated.  "NCName" is an XML data-type and must not be
1856:                        // translated.
1857:                        // WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME
1858:
1859:                        /** WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
1860:                        //  public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;
1861:                        {
1862:                                WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
1863:                                "Der Wert des Attributs 'name' von xsl:processing-instruction muss ein g\u00fcltiger NCName sein: {0}" },
1864:
1865:                        // Note to translators:  This message is reported if the stylesheet that is
1866:                        // being processed attempted to construct an XML document with an attribute in a
1867:                        // place other than on an element.  The substitution text specifies the name of
1868:                        // the attribute.
1869:                        // WG_ILLEGAL_ATTRIBUTE_POSITION
1870:
1871:                        /** WG_ILLEGAL_ATTRIBUTE_POSITION         */
1872:                        //  public static final int WG_ILLEGAL_ATTRIBUTE_POSITION = 29;
1873:                        {
1874:                                WG_ILLEGAL_ATTRIBUTE_POSITION,
1875:                                "Attribut {0} kann nicht nach Kindknoten oder vor dem Erstellen eines Elements hinzugef\u00fcgt werden.  Das Attribut wird ignoriert." },
1876:
1877:                        //Check: WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
1878:
1879:                        // Other miscellaneous text used inside the code...
1880:                        { "ui_language", "de" },
1881:                        { "help_language", "de" },
1882:                        { "language", "de" },
1883:                        {
1884:                                "BAD_CODE",
1885:                                "Der Parameter f\u00fcr createMessage lag au\u00dferhalb des g\u00fcltigen Bereichs" },
1886:                        {
1887:                                "FORMAT_FAILED",
1888:                                "W\u00e4hrend des Aufrufs von messageFormat wurde eine Ausnahmebedingung ausgel\u00f6st" },
1889:                        { "version", ">>>>>>> Xalan-Version " },
1890:                        { "version2", "<<<<<<<" },
1891:                        { "yes", "ja" },
1892:                        { "line", "Zeilennummer" },
1893:                        { "column", "Spaltennummer" },
1894:                        { "xsldone", "XSLProcessor: fertig" },
1895:
1896:                        // Note to translators:  The following messages provide usage information
1897:                        // for the Xalan Process command line.  "Process" is the name of a Java class,
1898:                        // and should not be translated.
1899:                        { "xslProc_option",
1900:                                "Optionen f\u00fcr Verarbeitungsklassen in der Xalan-J-Befehlszeile:" },
1901:                        { "xslProc_option",
1902:                                "Optionen f\u00fcr Verarbeitungsklassen in der Xalan-J-Befehlszeile\u003a" },
1903:                        { "xslProc_invalid_xsltc_option",
1904:                                "Die Option {0} wird im XSLTC-Modus nicht unterst\u00fctzt." },
1905:                        { "xslProc_invalid_xalan_option",
1906:                                "Die Option {0} kann nur mit -XSLTC verwendet werden." },
1907:                        {
1908:                                "xslProc_no_input",
1909:                                "Fehler: Es wurde keine Formatvorlagen- oder Eingabe-XML angegeben. F\u00fchren Sie diesen Befehl ohne Optionen f\u00fcr Syntaxanweisungen aus." },
1910:                        { "xslProc_common_options", "-Allgemeine Optionen-" },
1911:                        { "xslProc_xalan_options", "-Optionen f\u00fcr Xalan-" },
1912:                        { "xslProc_xsltc_options", "-Optionen f\u00fcr XSLTC-" },
1913:                        { "xslProc_return_to_continue",
1914:                                "(Dr\u00fccken Sie die Eingabetaste, um fortzufahren.)" },
1915:
1916:                        // Note to translators: The option name and the parameter name do not need to
1917:                        // be translated. Only translate the messages in parentheses.  Note also that
1918:                        // leading whitespace in the messages is used to indent the usage information
1919:                        // for each option in the English messages.
1920:                        // Do not translate the keywords: XSLTC, SAX, DOM and DTM.
1921:                        { "optionXSLTC",
1922:                                "[-XSLTC (XSLTC f\u00fcr Umsetzung verwenden)]" },
1923:                        { "optionIN", "[-IN EingabeXMLURL]" },
1924:                        { "optionXSL", "[-XSL XSLUmsetzungsURL]" },
1925:                        { "optionOUT", "[-OUT AusgabeDateiName]" },
1926:                        { "optionLXCIN",
1927:                                "[-LXCIN kompilierteDateivorlageDateiNameEin]" },
1928:                        { "optionLXCOUT",
1929:                                "[-LXCOUT kompilierteDateivorlageDateiNameAus]" },
1930:                        { "optionPARSER",
1931:                                "[-PARSER vollst\u00e4ndig qualifizierter Klassenname der Parser-Liaison]" },
1932:                        { "optionE",
1933:                                "[-E (Entit\u00e4tenverweise nicht erweitern)]" },
1934:                        { "optionV",
1935:                                "[-E (Entit\u00e4tenverweise nicht erweitern)]" },
1936:                        { "optionQC",
1937:                                "[-QC (Unterdr\u00fcckte Musterkonfliktwarnungen)]" },
1938:                        { "optionQ", "[-Q  (Unterdr\u00fcckter Modus)]" },
1939:                        {
1940:                                "optionLF",
1941:                                "[-LF (Nur Zeilenvorschubzeichen bei Ausgabe verwenden {Standardeinstellung ist CR/LF})]" },
1942:                        {
1943:                                "optionCR",
1944:                                "[-CR (Nur Zeilenschaltung bei Ausgabe verwenden {Standardeinstellung ist CR/LF})]" },
1945:                        {
1946:                                "optionESCAPE",
1947:                                "[-ESCAPE (Zeichen, die mit einem Escapezeichen angegeben werden m\u00fcssen {Standardeinstellung ist <>&\"\'\\r\\n}]" },
1948:                        {
1949:                                "optionINDENT",
1950:                                "[-INDENT (Steuerung, um wie viele Leerzeichen einger\u00fcckt werden soll {Standardeinstellung ist 0})]" },
1951:                        { "optionTT",
1952:                                "[-TT (Trace f\u00fcr Vorlagen ausf\u00fchren, wenn sie aufgerufen werden.)]" },
1953:                        { "optionTG",
1954:                                "[-TG (Trace f\u00fcr jedes Generierungsereignis durchf\u00fchren.)]" },
1955:                        { "optionTS",
1956:                                "[-TS (Trace f\u00fcr jedes Auswahlereignis durchf\u00fchren.)]" },
1957:                        {
1958:                                "optionTTC",
1959:                                "[-TTC (Trace f\u00fcr die untergeordneten Vorlagen ausf\u00fchren, wenn sie verarbeitet werden.)]" },
1960:                        { "optionTCLASS",
1961:                                "[-TCLASS (TraceListener-Klasse f\u00fcr Trace-Erweiterungen.)]" },
1962:                        {
1963:                                "optionVALIDATE",
1964:                                "[-VALIDATE (Festlegen, ob eine G\u00fcltigkeitspr\u00fcfung erfolgen soll.  Die G\u00fcltigkeitspr\u00fcfung ist standardm\u00e4\u00dfig ausgeschaltet.)]" },
1965:                        { "optionEDUMP",
1966:                                "[-EDUMP {optionaler Dateiname} (Bei Fehler Stapelspeicherauszug erstellen.)]" },
1967:                        { "optionXML",
1968:                                "[-XML (XML-Formatierungsprogramm verwenden und XML-Header hinzuf\u00fcgen.)]" },
1969:                        { "optionTEXT",
1970:                                "[-TEXT (Einfaches Textformatierungsprogramm verwenden.)]" },
1971:                        { "optionHTML",
1972:                                "[-HTML (HTML-Formatierungsprogramm verwenden.)]" },
1973:                        { "optionPARAM",
1974:                                "[-PARAM Name Ausdruck (Festlegen eines Formatvorlagenparameters)]" },
1975:                        { "noParsermsg1",
1976:                                "XSL-Prozess konnte nicht erfolgreich durchgef\u00fchrt werden." },
1977:                        { "noParsermsg2",
1978:                                "** Parser konnte nicht gefunden werden **" },
1979:                        { "noParsermsg3",
1980:                                "Bitte \u00fcberpr\u00fcfen Sie den Klassenpfad." },
1981:                        {
1982:                                "noParsermsg4",
1983:                                "Wenn Sie nicht \u00fcber einen IBM XML-Parser f\u00fcr Java verf\u00fcgen, k\u00f6nnen Sie ihn herunterladen:" },
1984:                        { "noParsermsg5",
1985:                                "IBM AlphaWorks: http://www.alphaworks.ibm.com/formula/xml" },
1986:                        {
1987:                                "optionURIRESOLVER",
1988:                                "[-URIRESOLVER vollst\u00e4ndiger Klassenname (URIResolver wird zum Aufl\u00f6sen von URIs verwendet)]" },
1989:                        {
1990:                                "optionENTITYRESOLVER",
1991:                                "[-ENTITYRESOLVER vollst\u00e4ndiger Klassenname (EntityResolver wird zum Aufl\u00f6sen von Entit\u00e4ten verwendet)]" },
1992:                        {
1993:                                "optionCONTENTHANDLER",
1994:                                "[-CONTENTHANDLER vollst\u00e4ndiger Klassenname (ContentHandler wird zum Serialisieren der Ausgabe verwendet)]" },
1995:                        { "optionLINENUMBERS",
1996:                                "[-L Zeilennummern f\u00fcr das Quellendokument verwenden]" },
1997:
1998:                        // Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
1999:
2000:                        {
2001:                                "optionMEDIA",
2002:                                "[-MEDIA Datentr\u00e4gerTyp (Datentr\u00e4gerattribut verwenden, um die einem Dokument zugeordnete Formatvorlage zu suchen.)]" },
2003:                        {
2004:                                "optionFLAVOR",
2005:                                "[-FLAVOR WunschName (Explizit s2s=SAX oder d2d=DOM verwenden, um die Umsetzung auszuf\u00fchren.)]" }, // Added by sboag/scurcuru; experimental
2006:                        { "optionDIAG",
2007:                                "[-DIAG (Gesamtanzahl Millisekunden f\u00fcr die Umsetzung ausgeben.)]" },
2008:                        {
2009:                                "optionINCREMENTAL",
2010:                                "[-INCREMENTAL (Inkrementelle DTM-Erstellung mit der Einstellung 'true' f\u00fcr http://xml.apache.org/xalan/features/incremental anfordern.)]" },
2011:                        {
2012:                                "optionNOOPTIMIMIZE",
2013:                                "[-NOOPTIMIMIZE (Mit der Einstellung 'false' f\u00fcr http://xml.apache.org/xalan/features/optimize anfordern, dass keine Formatvorlagenoptimierung ausgef\u00fchrt wird.)]" },
2014:                        {
2015:                                "optionRL",
2016:                                "[-RL Verschachtelungsbegrenzung (Numerische Begrenzung f\u00fcr Verschachtelungstiefe der Formatvorlage festlegen.)]" },
2017:                        { "optionXO",
2018:                                "[-XO [transletName] (Namen dem generierten Translet zuordnen)]" },
2019:                        { "optionXD",
2020:                                "[-XD ZielVerzeichnis (Ein Zielverzeichnis f\u00fcr Translet angeben)]" },
2021:                        {
2022:                                "optionXJ",
2023:                                "[-XJ jardatei (Translet-Klassen in eine jar-Datei mit dem Namen <jardatei> packen)]" },
2024:                        {
2025:                                "optionXP",
2026:                                "[-XP paket (Ein Paketnamenpr\u00e4fix f\u00fcr alle generierten Translet-Klassen angeben)]" },
2027:
2028:                        //AddITIONAL  STRINGS that need L10n
2029:                        // Note to translators:  The following message describes usage of a particular
2030:                        // command-line option that is used to enable the "template inlining"
2031:                        // optimization.  The optimization involves making a copy of the code
2032:                        // generated for a template in another template that refers to it.
2033:                        { "optionXN",
2034:                                "[-XN (Inline-Anordnung f\u00fcr Vorlagen aktivieren)]" },
2035:                        { "optionXX",
2036:                                "[-XX (Zus\u00e4tzliche Debugnachrichtenausgabe aktivieren)]" },
2037:                        { "optionXT",
2038:                                "[-XT (Translet f\u00fcr Umsetzung verwenden, wenn m\u00f6glich)]" },
2039:                        { "diagTiming",
2040:                                "--------- Umsetzung von {0} \u00fcber {1} betrug {2} Millisekunden" },
2041:                        { "recursionTooDeep",
2042:                                "Vorlagenverschachtelung ist zu stark. Verschachtelung = {0}, Vorlage {1} {2}" },
2043:                        { "nameIs", "Der Name ist" },
2044:                        { "matchPatternIs", "Das Suchmuster ist" }
2045:
2046:                };
2047:            }
2048:
2049:            // ================= INFRASTRUCTURE ======================
2050:
2051:            /** String for use when a bad error code was encountered.    */
2052:            public static final String BAD_CODE = "FEHLERHAFTER_CODE";
2053:
2054:            /** String for use when formatting of the error string failed.   */
2055:            public static final String FORMAT_FAILED = "FORMAT_FEHLGESCHLAGEN";
2056:
2057:            /** General error string.   */
2058:            public static final String ERROR_STRING = "#Fehler";
2059:
2060:            /** String to prepend to error messages.  */
2061:            public static final String ERROR_HEADER = "Fehler: ";
2062:
2063:            /** String to prepend to warning messages.    */
2064:            public static final String WARNING_HEADER = "Achtung: ";
2065:
2066:            /** String to specify the XSLT module.  */
2067:            public static final String XSL_HEADER = "XSLT ";
2068:
2069:            /** String to specify the XML parser module.  */
2070:            public static final String XML_HEADER = "XML ";
2071:
2072:            /** I don't think this is used any more.
2073:             * @deprecated  */
2074:            public static final String QUERY_HEADER = "MUSTER ";
2075:
2076:            /**
2077:             *   Return a named ResourceBundle for a particular locale.  This method mimics the behavior
2078:             *   of ResourceBundle.getBundle().
2079:             *
2080:             *   @param className the name of the class that implements the resource bundle.
2081:             *   @return the ResourceBundle
2082:             *   @throws MissingResourceException
2083:             */
2084:            public static final XSLTErrorResources loadResourceBundle(
2085:                    String className) throws MissingResourceException {
2086:
2087:                Locale locale = Locale.getDefault();
2088:                String suffix = getResourceSuffix(locale);
2089:
2090:                try {
2091:
2092:                    // first try with the given locale
2093:                    return (XSLTErrorResources) ResourceBundle.getBundle(
2094:                            className + suffix, locale);
2095:                } catch (MissingResourceException e) {
2096:                    try // try to fall back to en_US if we can't load
2097:                    {
2098:
2099:                        // Since we can't find the localized property file,
2100:                        // fall back to en_US.
2101:                        return (XSLTErrorResources) ResourceBundle.getBundle(
2102:                                className, new Locale("en", "US"));
2103:                    } catch (MissingResourceException e2) {
2104:
2105:                        // Now we are really in trouble.
2106:                        // very bad, definitely very bad...not going to get very far
2107:                        throw new MissingResourceException(
2108:                                "Could not load any resource bundles.",
2109:                                className, "");
2110:                    }
2111:                }
2112:            }
2113:
2114:            /**
2115:             * Return the resource file suffic for the indicated locale
2116:             * For most locales, this will be based the language code.  However
2117:             * for Chinese, we do distinguish between Taiwan and PRC
2118:             *
2119:             * @param locale the locale
2120:             * @return an String suffix which canbe appended to a resource name
2121:             */
2122:            private static final String getResourceSuffix(Locale locale) {
2123:
2124:                String suffix = "_" + locale.getLanguage();
2125:                String country = locale.getCountry();
2126:
2127:                if (country.equals("TW"))
2128:                    suffix += "_" + country;
2129:
2130:                return suffix;
2131:            }
2132:
2133:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.