Source Code Cross Referenced for XSLTErrorResources_ko.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_ko.java,v 1.9 2004/12/15 17:35:32 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_ko 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:                                "\uc624\ub958: \ud45c\ud604\uc2dd\uc5d0 '{'\uac00 \uc62c \uc218 \uc5c6\uc74c" },
0347:
0348:                        /** ER_ILLEGAL_ATTRIBUTE          */
0349:                        // public static final int ER_ILLEGAL_ATTRIBUTE = 2;
0350:                        {
0351:                                ER_ILLEGAL_ATTRIBUTE,
0352:                                "{0}\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc74c" },
0353:
0354:                        /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
0355:                        //  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
0356:                        {
0357:                                ER_NULL_SOURCENODE_APPLYIMPORTS,
0358:                                "xsl:apply-imports\uc5d0\uc11c sourceNode\uac00 \ub110(null)\uc785\ub2c8\ub2e4!" },
0359:
0360:                        /** ER_CANNOT_ADD          */
0361:                        // public static final int ER_CANNOT_ADD = 4;
0362:                        { ER_CANNOT_ADD,
0363:                                "{1}\uc5d0 {0}\uc744(\ub97c) \ucd94\uac00\ud560 \uc218 \uc5c6\uc74c" },
0364:
0365:                        /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
0366:                        //  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
0367:
0368:                        {
0369:                                ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES,
0370:                                "handleApplyTemplatesInstruction\uc5d0\uc11c sourceNode\uac00 \ub110(null)\uc785\ub2c8\ub2e4!" },
0371:
0372:                        /** ER_NO_NAME_ATTRIB          */
0373:                        //  public static final int ER_NO_NAME_ATTRIB = 6;
0374:
0375:                        {
0376:                                ER_NO_NAME_ATTRIB,
0377:                                "{0}\uc5d0 \uc774\ub984 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
0378:
0379:                        /** ER_TEMPLATE_NOT_FOUND          */
0380:                        //public static final int ER_TEMPLATE_NOT_FOUND = 7;
0381:
0382:                        {
0383:                                ER_TEMPLATE_NOT_FOUND,
0384:                                "{0} \uc774\ub984\uc758 \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0385:
0386:                        /** ER_CANT_RESOLVE_NAME_AVT          */
0387:                        // public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
0388:                        {
0389:                                ER_CANT_RESOLVE_NAME_AVT,
0390:                                "xsl:call-template\uc5d0 \uc788\ub294 \uc774\ub984 AVT\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0391:
0392:                        /** ER_REQUIRES_ATTRIB          */
0393:                        //public static final int ER_REQUIRES_ATTRIB = 9;
0394:
0395:                        { ER_REQUIRES_ATTRIB,
0396:                                "{0}\uc740(\ub294) {1} \uc18d\uc131\uc744 \ud544\uc694\ub85c \ud568" },
0397:
0398:                        /** ER_MUST_HAVE_TEST_ATTRIB          */
0399:                        // public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
0400:
0401:                        { ER_MUST_HAVE_TEST_ATTRIB,
0402:                                "{0}\uc5d0 ''test'' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4. " },
0403:
0404:                        /** ER_BAD_VAL_ON_LEVEL_ATTRIB          */
0405:                        //  public static final int ER_BAD_VAL_ON_LEVEL_ATTRIB = 11;
0406:
0407:                        {
0408:                                ER_BAD_VAL_ON_LEVEL_ATTRIB,
0409:                                "{0} \ub808\ubca8 \uc18d\uc131\uc5d0 \uc798\ubabb\ub41c \uac12\uc774 \uc788\uc74c" },
0410:
0411:                        /** ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML          */
0412:                        //  public static final int ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 12;
0413:
0414:                        {
0415:                                ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
0416:                                "\ucc98\ub9ac \uba85\ub839\uc5b4 \uc774\ub984\uc740 'xml'\uc774 \ub420 \uc218 \uc5c6\uc74c" },
0417:
0418:                        /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
0419:                        //  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
0420:
0421:                        {
0422:                                ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
0423:                                "\ucc98\ub9ac \uba85\ub839\uc5b4 \uc774\ub984\uc740 \uc62c\ubc14\ub978 NCName\uc774\uc5b4\uc57c \ud568: {0}" },
0424:
0425:                        /** ER_NEED_MATCH_ATTRIB          */
0426:                        //  public static final int ER_NEED_MATCH_ATTRIB = 14;
0427:
0428:                        {
0429:                                ER_NEED_MATCH_ATTRIB,
0430:                                "{0}\uc5d0 \ubaa8\ub4dc\uac00 \uc788\uc73c\uba74 \uc77c\uce58 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
0431:
0432:                        /** ER_NEED_NAME_OR_MATCH_ATTRIB          */
0433:                        //  public static final int ER_NEED_NAME_OR_MATCH_ATTRIB = 15;
0434:
0435:                        {
0436:                                ER_NEED_NAME_OR_MATCH_ATTRIB,
0437:                                "{0}\uc5d0 \uc774\ub984 \ub610\ub294 \uc77c\uce58 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4." },
0438:
0439:                        /** ER_CANT_RESOLVE_NSPREFIX          */
0440:                        //  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
0441:
0442:                        {
0443:                                ER_CANT_RESOLVE_NSPREFIX,
0444:                                "\uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
0445:
0446:                        /** ER_ILLEGAL_VALUE          */
0447:                        //  public static final int ER_ILLEGAL_VALUE = 17;
0448:
0449:                        { ER_ILLEGAL_VALUE,
0450:                                "xml:space\uc5d0 \uc798\ubabb\ub41c \uac12\uc774 \uc788\uc2b5\ub2c8\ub2e4: {0}" },
0451:
0452:                        /** ER_NO_OWNERDOC          */
0453:                        //  public static final int ER_NO_OWNERDOC = 18;
0454:
0455:                        {
0456:                                ER_NO_OWNERDOC,
0457:                                "\ud558\uc704 \ub178\ub4dc\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0458:
0459:                        /** ER_ELEMTEMPLATEELEM_ERR          */
0460:                        //  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
0461:
0462:                        { ER_ELEMTEMPLATEELEM_ERR,
0463:                                "ElemTemplateElement \uc624\ub958: {0}" },
0464:
0465:                        /** ER_NULL_CHILD          */
0466:                        //  public static final int ER_NULL_CHILD = 20;
0467:
0468:                        {
0469:                                ER_NULL_CHILD,
0470:                                "\ub110(null) \ud558\uc704\ub97c \ucd94\uac00\ud558\ub824\uace0 \uc2dc\ub3c4 \uc911\uc785\ub2c8\ub2e4!" },
0471:
0472:                        /** ER_NEED_SELECT_ATTRIB          */
0473:                        //  public static final int ER_NEED_SELECT_ATTRIB = 21;
0474:
0475:                        {
0476:                                ER_NEED_SELECT_ATTRIB,
0477:                                "{0}\uc5d0 \uc120\ud0dd\uc801 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4." },
0478:
0479:                        /** ER_NEED_TEST_ATTRIB          */
0480:                        //  public static final int ER_NEED_TEST_ATTRIB = 22;
0481:
0482:                        {
0483:                                ER_NEED_TEST_ATTRIB,
0484:                                "xsl:when\uc5d0 'test' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
0485:
0486:                        /** ER_NEED_NAME_ATTRIB          */
0487:                        //  public static final int ER_NEED_NAME_ATTRIB = 23;
0488:
0489:                        {
0490:                                ER_NEED_NAME_ATTRIB,
0491:                                "xsl:with-param\uc5d0 'name' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
0492:
0493:                        /** ER_NO_CONTEXT_OWNERDOC          */
0494:                        //  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
0495:
0496:                        {
0497:                                ER_NO_CONTEXT_OWNERDOC,
0498:                                "\ubb38\ub9e5\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0499:
0500:                        /** ER_COULD_NOT_CREATE_XML_PROC_LIAISON          */
0501:                        //  public static final int ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 25;
0502:
0503:                        {
0504:                                ER_COULD_NOT_CREATE_XML_PROC_LIAISON,
0505:                                "XML TransformerFactory Liaison\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
0506:
0507:                        /** ER_PROCESS_NOT_SUCCESSFUL          */
0508:                        //  public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
0509:
0510:                        { ER_PROCESS_NOT_SUCCESSFUL,
0511:                                "Xalan: \ud504\ub85c\uc138\uc2a4\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4." },
0512:
0513:                        /** ER_NOT_SUCCESSFUL          */
0514:                        //  public static final int ER_NOT_SUCCESSFUL = 27;
0515:
0516:                        { ER_NOT_SUCCESSFUL,
0517:                                "Xalan:\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4." },
0518:
0519:                        /** ER_ENCODING_NOT_SUPPORTED          */
0520:                        //  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
0521:
0522:                        { ER_ENCODING_NOT_SUPPORTED,
0523:                                "\uc778\ucf54\ub529\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc74c: {0}" },
0524:
0525:                        /** ER_COULD_NOT_CREATE_TRACELISTENER          */
0526:                        //  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
0527:
0528:                        { ER_COULD_NOT_CREATE_TRACELISTENER,
0529:                                "TraceListener\ub97c \uc791\uc131\ud560 \uc218 \uc5c6\uc74c: {0}" },
0530:
0531:                        /** ER_KEY_REQUIRES_NAME_ATTRIB          */
0532:                        //  public static final int ER_KEY_REQUIRES_NAME_ATTRIB = 30;
0533:
0534:                        { ER_KEY_REQUIRES_NAME_ATTRIB,
0535:                                "xsl:key\uc5d0 'name' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!" },
0536:
0537:                        /** ER_KEY_REQUIRES_MATCH_ATTRIB          */
0538:                        //  public static final int ER_KEY_REQUIRES_MATCH_ATTRIB = 31;
0539:
0540:                        { ER_KEY_REQUIRES_MATCH_ATTRIB,
0541:                                "xsl:key\uc5d0 'match' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!" },
0542:
0543:                        /** ER_KEY_REQUIRES_USE_ATTRIB          */
0544:                        //  public static final int ER_KEY_REQUIRES_USE_ATTRIB = 32;
0545:
0546:                        { ER_KEY_REQUIRES_USE_ATTRIB,
0547:                                "xsl:key\uc5d0 'use' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!" },
0548:
0549:                        /** ER_REQUIRES_ELEMENTS_ATTRIB          */
0550:                        //  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
0551:
0552:                        {
0553:                                ER_REQUIRES_ELEMENTS_ATTRIB,
0554:                                "(StylesheetHandler) {0}\uc5d0 ''elements'' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!" },
0555:
0556:                        /** ER_MISSING_PREFIX_ATTRIB          */
0557:                        //  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
0558:
0559:                        {
0560:                                ER_MISSING_PREFIX_ATTRIB,
0561:                                "(StylesheetHandler) {0} \uc18d\uc131 ''prefix''\uac00 \ub204\ub77d\ub418\uc5c8\uc74c" },
0562:
0563:                        /** ER_BAD_STYLESHEET_URL          */
0564:                        //  public static final int ER_BAD_STYLESHEET_URL = 35;
0565:
0566:                        { ER_BAD_STYLESHEET_URL,
0567:                                "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 URL\uc774 \uc798\ubabb\ub418\uc5c8\uc74c: {0}" },
0568:
0569:                        /** ER_FILE_NOT_FOUND          */
0570:                        //  public static final int ER_FILE_NOT_FOUND = 36;
0571:
0572:                        {
0573:                                ER_FILE_NOT_FOUND,
0574:                                "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
0575:
0576:                        /** ER_IOEXCEPTION          */
0577:                        //  public static final int ER_IOEXCEPTION = 37;
0578:
0579:                        {
0580:                                ER_IOEXCEPTION,
0581:                                "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ud30c\uc77c\uc5d0 \uc785\ucd9c\ub825 \uc608\uc678\uac00 \uc788\uc2b5\ub2c8\ub2e4: {0}" },
0582:
0583:                        /** ER_NO_HREF_ATTRIB          */
0584:                        //  public static final int ER_NO_HREF_ATTRIB = 38;
0585:
0586:                        {
0587:                                ER_NO_HREF_ATTRIB,
0588:                                "(StylesheetHandler) {0}\uc758 href \uc18d\uc131\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0589:
0590:                        /** ER_STYLESHEET_INCLUDES_ITSELF          */
0591:                        //  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
0592:
0593:                        {
0594:                                ER_STYLESHEET_INCLUDES_ITSELF,
0595:                                "(StylesheetHandler) {0}\uc774(\uac00) \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc73c\ub85c \uc790\uc2e0\uc744 \ud3ec\ud568\ud569\ub2c8\ub2e4!" },
0596:
0597:                        /** ER_PROCESSINCLUDE_ERROR          */
0598:                        //  public static final int ER_PROCESSINCLUDE_ERROR = 40;
0599:
0600:                        { ER_PROCESSINCLUDE_ERROR,
0601:                                "StylesheetHandler.processInclude \uc624\ub958, {0}" },
0602:
0603:                        /** ER_MISSING_LANG_ATTRIB          */
0604:                        //  public static final int ER_MISSING_LANG_ATTRIB = 41;
0605:
0606:                        {
0607:                                ER_MISSING_LANG_ATTRIB,
0608:                                "(StylesheetHandler) {0} \uc18d\uc131 ''lang''\uc774 \ub204\ub77d\ub418\uc5c8\uc74c" },
0609:
0610:                        /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
0611:                        //  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
0612:                        {
0613:                                ER_MISSING_CONTAINER_ELEMENT_COMPONENT,
0614:                                "(StylesheetHandler) {0} \uc694\uc18c\uac00 \uc798\ubabb\ub41c \uc704\uce58\uc5d0 \uc788\uc74c?? \ub204\ub77d\ub41c \ucee8\ud14c\uc774\ub108 \uc694\uc18c ''component''" },
0615:
0616:                        /** ER_CAN_ONLY_OUTPUT_TO_ELEMENT          */
0617:                        //  public static final int ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 43;
0618:                        {
0619:                                ER_CAN_ONLY_OUTPUT_TO_ELEMENT,
0620:                                "Element, DocumentFragment, Document \ub610\ub294 PrintWriter\ub85c\ub9cc \ucd9c\ub825\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4." },
0621:
0622:                        /** ER_PROCESS_ERROR          */
0623:                        //  public static final int ER_PROCESS_ERROR = 44;
0624:                        { ER_PROCESS_ERROR,
0625:                                "StylesheetRoot.process \uc624\ub958" },
0626:
0627:                        /** ER_UNIMPLNODE_ERROR          */
0628:                        //  public static final int ER_UNIMPLNODE_ERROR = 45;
0629:                        { ER_UNIMPLNODE_ERROR, "UnImplNode \uc624\ub958: {0}" },
0630:
0631:                        /** ER_NO_SELECT_EXPRESSION          */
0632:                        //  public static final int ER_NO_SELECT_EXPRESSION = 46;
0633:                        {
0634:                                ER_NO_SELECT_EXPRESSION,
0635:                                "\uc624\ub958! xpath \uc120\ud0dd \ud45c\ud604\uc2dd(-select)\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0636:
0637:                        /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
0638:                        //  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
0639:                        { ER_CANNOT_SERIALIZE_XSLPROCESSOR,
0640:                                "XSLProcessor\ub97c \uc9c1\ub82c\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0641:
0642:                        /** ER_NO_INPUT_STYLESHEET          */
0643:                        //  public static final int ER_NO_INPUT_STYLESHEET = 48;
0644:                        {
0645:                                ER_NO_INPUT_STYLESHEET,
0646:                                "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \uc785\ub825\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4!" },
0647:
0648:                        /** ER_FAILED_PROCESS_STYLESHEET          */
0649:                        //  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
0650:                        {
0651:                                ER_FAILED_PROCESS_STYLESHEET,
0652:                                "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8\ub97c \ucc98\ub9ac\ud558\ub294 \ub370 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4!" },
0653:
0654:                        /** ER_COULDNT_PARSE_DOC          */
0655:                        //  public static final int ER_COULDNT_PARSE_DOC = 50;
0656:                        {
0657:                                ER_COULDNT_PARSE_DOC,
0658:                                "{0} \ubb38\uc11c\ub97c \uad6c\ubb38 \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0659:
0660:                        /** ER_COULDNT_FIND_FRAGMENT          */
0661:                        //  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
0662:                        { ER_COULDNT_FIND_FRAGMENT,
0663:                                "\ub2e8\ud3b8\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
0664:
0665:                        /** ER_NODE_NOT_ELEMENT          */
0666:                        // public static final int ER_NODE_NOT_ELEMENT = 52;
0667:                        {
0668:                                ER_NODE_NOT_ELEMENT,
0669:                                "\ub2e8\ud3b8 ID\uac00 \uac00\ub9ac\ud0a4\ub294 \ub178\ub4dc\uac00 \uc694\uc18c\uac00 \uc544\ub2d9\ub2c8\ub2e4: {0}" },
0670:
0671:                        /** ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB          */
0672:                        //  public static final int ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 53;
0673:                        {
0674:                                ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB,
0675:                                "for-each\uc5d0\ub294 \uc77c\uce58 \ub610\ub294 \uc774\ub984 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
0676:
0677:                        /** ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB          */
0678:                        //  public static final int ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 54;
0679:                        {
0680:                                ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB,
0681:                                "\ud15c\ud50c\ub9ac\ud2b8\uc5d0\ub294 \uc77c\uce58 \ub610\ub294 \uc774\ub984 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
0682:
0683:                        /** ER_NO_CLONE_OF_DOCUMENT_FRAG          */
0684:                        //  public static final int ER_NO_CLONE_OF_DOCUMENT_FRAG = 55;
0685:                        {
0686:                                ER_NO_CLONE_OF_DOCUMENT_FRAG,
0687:                                "\ubb38\uc11c \ub2e8\ud3b8\uc758 \ubcf5\uc81c\ubcf8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0688:
0689:                        /** ER_CANT_CREATE_ITEM          */
0690:                        //  public static final int ER_CANT_CREATE_ITEM = 56;
0691:                        {
0692:                                ER_CANT_CREATE_ITEM,
0693:                                "\uacb0\uacfc \ud2b8\ub9ac\uc5d0 \ud56d\ubaa9\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.: {0}" },
0694:
0695:                        /** ER_XMLSPACE_ILLEGAL_VALUE          */
0696:                        //  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
0697:                        {
0698:                                ER_XMLSPACE_ILLEGAL_VALUE,
0699:                                "\uc6d0\ubcf8 XML\uc758 xml:space\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc774 \uc788\uc2b5\ub2c8\ub2e4.: {0}" },
0700:
0701:                        /** ER_NO_XSLKEY_DECLARATION          */
0702:                        //  public static final int ER_NO_XSLKEY_DECLARATION = 58;
0703:                        { ER_NO_XSLKEY_DECLARATION,
0704:                                "{0}\uc5d0 \ub300\ud55c xsl:key \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0705:
0706:                        /** ER_CANT_CREATE_URL          */
0707:                        //  public static final int ER_CANT_CREATE_URL = 59;
0708:                        {
0709:                                ER_CANT_CREATE_URL,
0710:                                "\uc624\ub958! url\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.: {0}" },
0711:
0712:                        /** ER_XSLFUNCTIONS_UNSUPPORTED          */
0713:                        //  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
0714:                        { ER_XSLFUNCTIONS_UNSUPPORTED,
0715:                                "xsl:functions\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0716:
0717:                        /** ER_PROCESSOR_ERROR          */
0718:                        //  public static final int ER_PROCESSOR_ERROR = 61;
0719:                        { ER_PROCESSOR_ERROR,
0720:                                "XSLT TransformerFactory \uc624\ub958" },
0721:
0722:                        /** ER_NOT_ALLOWED_INSIDE_STYLESHEET          */
0723:                        //  public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
0724:                        {
0725:                                ER_NOT_ALLOWED_INSIDE_STYLESHEET,
0726:                                "(StylesheetHandler) \uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub0b4\uc5d0 {0}\uc774(\uac00) \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0727:
0728:                        /** ER_RESULTNS_NOT_SUPPORTED          */
0729:                        //  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
0730:                        {
0731:                                ER_RESULTNS_NOT_SUPPORTED,
0732:                                "result-ns\uac00 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!  \ub300\uc2e0 xsl:output\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624." },
0733:
0734:                        /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
0735:                        //  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
0736:                        {
0737:                                ER_DEFAULTSPACE_NOT_SUPPORTED,
0738:                                "default-space\uac00 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!  \ub300\uc2e0 xsl:strip-space \ub610\ub294 xsl:preserve-space\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624." },
0739:
0740:                        /** ER_INDENTRESULT_NOT_SUPPORTED          */
0741:                        //  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
0742:                        {
0743:                                ER_INDENTRESULT_NOT_SUPPORTED,
0744:                                "indent-result\uac00 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!  \ub300\uc2e0 xsl:output\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624." },
0745:
0746:                        /** ER_ILLEGAL_ATTRIB          */
0747:                        //  public static final int ER_ILLEGAL_ATTRIB = 66;
0748:                        {
0749:                                ER_ILLEGAL_ATTRIB,
0750:                                "(StylesheetHandler) {0}\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc18d\uc131\uc774 \uc788\uc74c: {1}" },
0751:
0752:                        /** ER_UNKNOWN_XSL_ELEM          */
0753:                        //  public static final int ER_UNKNOWN_XSL_ELEM = 67;
0754:                        { ER_UNKNOWN_XSL_ELEM,
0755:                                "\uc54c \uc218 \uc5c6\ub294 XSL \uc694\uc18c: {0}" },
0756:
0757:                        /** ER_BAD_XSLSORT_USE          */
0758:                        //  public static final int ER_BAD_XSLSORT_USE = 68;
0759:                        {
0760:                                ER_BAD_XSLSORT_USE,
0761:                                "(StylesheetHandler) xsl:sort\ub294 xsl:apply-templates \ub610\ub294 xsl:for-each\uc640 \ud568\uaed8\ub9cc \uc0ac\uc6a9\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4." },
0762:
0763:                        /** ER_MISPLACED_XSLWHEN          */
0764:                        //  public static final int ER_MISPLACED_XSLWHEN = 69;
0765:                        {
0766:                                ER_MISPLACED_XSLWHEN,
0767:                                "(StylesheetHandler) xsl:when\uc774 \uc798\ubabb\ub41c \uc704\uce58\uc5d0 \ub193\uc5ec \uc788\uc2b5\ub2c8\ub2e4!" },
0768:
0769:                        /** ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE          */
0770:                        //  public static final int ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 70;
0771:                        {
0772:                                ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE,
0773:                                "(StylesheetHandler) xsl:when\uc774 xsl:choose\uc758 \uc0c1\uc704\uc5d0 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0774:
0775:                        /** ER_MISPLACED_XSLOTHERWISE          */
0776:                        //  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
0777:                        {
0778:                                ER_MISPLACED_XSLOTHERWISE,
0779:                                "(StylesheetHandler) xsl:otherwise\uac00 \uc798\ubabb\ub41c \uc704\uce58\uc5d0 \ub193\uc5ec \uc788\uc2b5\ub2c8\ub2e4!" },
0780:
0781:                        /** ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE          */
0782:                        //  public static final int ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 72;
0783:                        {
0784:                                ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE,
0785:                                "(StylesheetHandler) xsl:otherwise\uac00 xsl:choose\uc758 \uc0c1\uc704\uc5d0 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0786:
0787:                        /** ER_NOT_ALLOWED_INSIDE_TEMPLATE          */
0788:                        //  public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
0789:                        {
0790:                                ER_NOT_ALLOWED_INSIDE_TEMPLATE,
0791:                                "(StylesheetHandler) \ud15c\ud50c\ub9ac\ud2b8 \ub0b4\uc5d0 {0}\uc774(\uac00) \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0792:
0793:                        /** ER_UNKNOWN_EXT_NS_PREFIX          */
0794:                        //  public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
0795:                        {
0796:                                ER_UNKNOWN_EXT_NS_PREFIX,
0797:                                "(StylesheetHandler) {0} \ud655\uc7a5\uc790 \uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80 {1}\uc744(\ub97c) \uc54c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0798:
0799:                        /** ER_IMPORTS_AS_FIRST_ELEM          */
0800:                        //  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
0801:                        {
0802:                                ER_IMPORTS_AS_FIRST_ELEM,
0803:                                "(StylesheetHandler) \uac00\uc838\uc624\uae30\ub294 \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc5d0\uc11c \uccab \ubc88\uc9f8 \uc694\uc18c\ub85c\ub9cc \ub098\ud0c0\ub0a0 \uc218 \uc788\uc2b5\ub2c8\ub2e4!" },
0804:
0805:                        /** ER_IMPORTING_ITSELF          */
0806:                        //  public static final int ER_IMPORTING_ITSELF = 76;
0807:                        {
0808:                                ER_IMPORTING_ITSELF,
0809:                                "(StylesheetHandler) {0}\uc774(\uac00) \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc73c\ub85c \uc790\uc2e0\uc744 \uac00\uc838\uc635\ub2c8\ub2e4!" },
0810:
0811:                        /** ER_XMLSPACE_ILLEGAL_VAL          */
0812:                        //  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
0813:                        {
0814:                                ER_XMLSPACE_ILLEGAL_VAL,
0815:                                "(StylesheetHandler) xml:\uacf5\uac04\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc774 \uc788\uc74c: {0}" },
0816:
0817:                        /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
0818:                        //  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
0819:                        { ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL,
0820:                                "processStylesheet\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4!" },
0821:
0822:                        /** ER_SAX_EXCEPTION          */
0823:                        //  public static final int ER_SAX_EXCEPTION = 79;
0824:                        { ER_SAX_EXCEPTION, "SAX \uc608\uc678" },
0825:
0826:                        /** ER_FUNCTION_NOT_SUPPORTED          */
0827:                        //  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
0828:                        //{ ER_FUNCTION_NOT_SUPPORTED,
0829:                        // "Function not supported!"},
0830:                        /** ER_XSLT_ERROR          */
0831:                        //  public static final int ER_XSLT_ERROR = 81;
0832:                        { ER_XSLT_ERROR, "XSLT \uc624\ub958" },
0833:
0834:                        /** ER_CURRENCY_SIGN_ILLEGAL          */
0835:                        //  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
0836:                        {
0837:                                ER_CURRENCY_SIGN_ILLEGAL,
0838:                                "\ud3ec\ub9f7 \ud328\ud134 \ubb38\uc790\uc5f4\uc5d0 \ud1b5\ud654 \ubd80\ud638\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc74c" },
0839:
0840:                        /** ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM          */
0841:                        //  public static final int ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 83;
0842:                        {
0843:                                ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM,
0844:                                "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 DOM\uc5d0\uc11c Document \ud568\uc218\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0845:
0846:                        /** ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER          */
0847:                        //  public static final int ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 84;
0848:                        {
0849:                                ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER,
0850:                                "\ube44 \uc811\ub450\ubd80 \ubd84\uc11d\uc790\uc758 \uc811\ub450\ubd80\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0851:
0852:                        /** ER_REDIRECT_COULDNT_GET_FILENAME          */
0853:                        //  public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
0854:                        {
0855:                                ER_REDIRECT_COULDNT_GET_FILENAME,
0856:                                "Redirect extension: \ud30c\uc77c \uc774\ub984\uc744 \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ud30c\uc77c \ub610\ub294 \uc120\ud0dd\uc801 \uc18d\uc131\uc740 \uc62c\ubc14\ub978 \ubb38\uc790\uc5f4\uc744 \ub9ac\ud134\ud574\uc57c \ud569\ub2c8\ub2e4. " },
0857:
0858:                        /** ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT          */
0859:                        //  public static final int ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 86;
0860:                        {
0861:                                ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT,
0862:                                "\uacbd\ub85c \uc7ac\uc9c0\uc815 \ud655\uc7a5\uc5d0 FormatterListener\ub97c \ube4c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0863:
0864:                        /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX          */
0865:                        //  public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
0866:                        {
0867:                                ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX,
0868:                                "exclude-result-prefixes\uc5d0 \uc788\ub294 \uc811\ub450\ubd80\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}" },
0869:
0870:                        /** ER_MISSING_NS_URI          */
0871:                        //  public static final int ER_MISSING_NS_URI = 88;
0872:                        {
0873:                                ER_MISSING_NS_URI,
0874:                                "\uc9c0\uc815\ub41c \uc811\ub450\ubd80\uc758 \uc774\ub984 \uacf5\uac04 URI\uac00 \ub204\ub77d\ub418\uc5c8\uc2b5\ub2c8\ub2e4." },
0875:
0876:                        /** ER_MISSING_ARG_FOR_OPTION          */
0877:                        //  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
0878:                        {
0879:                                ER_MISSING_ARG_FOR_OPTION,
0880:                                "\uc635\uc158\uc758 \uc778\uc218\uac00 \ub204\ub77d\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}" },
0881:
0882:                        /** ER_INVALID_OPTION          */
0883:                        //  public static final int ER_INVALID_OPTION = 90;
0884:                        { ER_INVALID_OPTION,
0885:                                "\uc798\ubabb\ub41c \uc635\uc158: {0}" },
0886:
0887:                        /** ER_MALFORMED_FORMAT_STRING          */
0888:                        //  public static final int ER_MALFORMED_FORMAT_STRING = 91;
0889:                        { ER_MALFORMED_FORMAT_STRING,
0890:                                "\uc798\ubabb \ud615\uc2dd\ud654\ub41c \ud3ec\ub9f7 \ubb38\uc790\uc5f4: {0}" },
0891:
0892:                        /** ER_STYLESHEET_REQUIRES_VERSION_ATTRIB          */
0893:                        //  public static final int ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 92;
0894:                        {
0895:                                ER_STYLESHEET_REQUIRES_VERSION_ATTRIB,
0896:                                "xsl:stylesheet\uc5d0 'version' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!" },
0897:
0898:                        /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
0899:                        //  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
0900:                        {
0901:                                ER_ILLEGAL_ATTRIBUTE_VALUE,
0902:                                "\uc18d\uc131: {0}\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc774 \uc788\uc74c: {1}" },
0903:
0904:                        /** ER_CHOOSE_REQUIRES_WHEN          */
0905:                        //  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
0906:                        { ER_CHOOSE_REQUIRES_WHEN,
0907:                                "xsl:choose\uc5d0 xsl:when\uc774 \ud544\uc694\ud568" },
0908:
0909:                        /** ER_NO_APPLY_IMPORT_IN_FOR_EACH          */
0910:                        //  public static final int ER_NO_APPLY_IMPORT_IN_FOR_EACH = 95;
0911:                        {
0912:                                ER_NO_APPLY_IMPORT_IN_FOR_EACH,
0913:                                "xsl:apply-imports\ub294 xsl:for-each\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc74c" },
0914:
0915:                        /** ER_CANT_USE_DTM_FOR_OUTPUT          */
0916:                        //  public static final int ER_CANT_USE_DTM_FOR_OUTPUT = 96;
0917:                        {
0918:                                ER_CANT_USE_DTM_FOR_OUTPUT,
0919:                                "\ucd9c\ub825 DOM \ub178\ub4dc\uc5d0 DTMLiaison\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub300\uc2e0 org.apache.xpath.DOM2Helper\ub97c \uc804\ub2ec\ud558\uc2ed\uc2dc\uc624!" },
0920:
0921:                        /** ER_CANT_USE_DTM_FOR_INPUT          */
0922:                        //  public static final int ER_CANT_USE_DTM_FOR_INPUT = 97;
0923:                        {
0924:                                ER_CANT_USE_DTM_FOR_INPUT,
0925:                                "\uc785\ub825 DOM \ub178\ub4dc\uc5d0 DTMLiaison\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub300\uc2e0 org.apache.xpath.DOM2Helper\ub97c \uc804\ub2ec\ud558\uc2ed\uc2dc\uc624!" },
0926:
0927:                        /** ER_CALL_TO_EXT_FAILED          */
0928:                        //  public static final int ER_CALL_TO_EXT_FAILED = 98;
0929:                        { ER_CALL_TO_EXT_FAILED,
0930:                                "\ud655\uc7a5\uc790 \uc694\uc18c \ud638\ucd9c\uc5d0 \uc2e4\ud328\ud568: {0}" },
0931:
0932:                        /** ER_PREFIX_MUST_RESOLVE          */
0933:                        //  public static final int ER_PREFIX_MUST_RESOLVE = 99;
0934:                        {
0935:                                ER_PREFIX_MUST_RESOLVE,
0936:                                "\uc811\ub450\ubd80\ub294 \uc774\ub984 \uacf5\uac04\uc73c\ub85c \ubd84\uc11d\ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4: {0}" },
0937:
0938:                        /** ER_INVALID_UTF16_SURROGATE          */
0939:                        //  public static final int ER_INVALID_UTF16_SURROGATE = 100;
0940:                        {
0941:                                ER_INVALID_UTF16_SURROGATE,
0942:                                "\uc798\ubabb\ub41c UTF-16 \ub300\ub9ac\uc790\uac00 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0} ?" },
0943:
0944:                        /** ER_XSLATTRSET_USED_ITSELF          */
0945:                        // public static final int ER_XSLATTRSET_USED_ITSELF = 101;
0946:                        {
0947:                                ER_XSLATTRSET_USED_ITSELF,
0948:                                "xsl:attribute-set {0}\uc774(\uac00) \uc790\uc2e0\uc744 \uc0ac\uc6a9\ud588\uc73c\ubbc0\ub85c \ubb34\ud55c \ub8e8\ud504\ub97c \ucd08\ub798\ud569\ub2c8\ub2e4." },
0949:
0950:                        /** ER_CANNOT_MIX_XERCESDOM          */
0951:                        //  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
0952:                        {
0953:                                ER_CANNOT_MIX_XERCESDOM,
0954:                                "\ube44 Xerces-DOM \uc785\ub825\uacfc Xerces-DOM \ucd9c\ub825\uc744 \ud63c\ud569\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0955:
0956:                        /** ER_TOO_MANY_LISTENERS          */
0957:                        //  public static final int ER_TOO_MANY_LISTENERS = 103;
0958:                        { ER_TOO_MANY_LISTENERS,
0959:                                "addTraceListenersToStylesheet - TooManyListenersException" },
0960:
0961:                        /** ER_IN_ELEMTEMPLATEELEM_READOBJECT          */
0962:                        //  public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
0963:                        { ER_IN_ELEMTEMPLATEELEM_READOBJECT,
0964:                                "ElemTemplateElement.readObject\uc5d0\uc11c: {0}" },
0965:
0966:                        /** ER_DUPLICATE_NAMED_TEMPLATE          */
0967:                        //  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
0968:                        {
0969:                                ER_DUPLICATE_NAMED_TEMPLATE,
0970:                                "{0} \uc774\ub984\uc758 \ud15c\ud50c\ub9ac\ud2b8\uac00 \ub458 \uc774\uc0c1\uc785\ub2c8\ub2e4." },
0971:
0972:                        /** ER_INVALID_KEY_CALL          */
0973:                        //  public static final int ER_INVALID_KEY_CALL = 106;
0974:                        {
0975:                                ER_INVALID_KEY_CALL,
0976:                                "\uc798\ubabb\ub41c \ud568\uc218 \ud638\ucd9c: recursive key() \ud638\ucd9c\uc774 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc74c" },
0977:
0978:                        /** Variable is referencing itself          */
0979:                        //  public static final int ER_REFERENCING_ITSELF = 107;
0980:                        {
0981:                                ER_REFERENCING_ITSELF,
0982:                                "{0} \ubcc0\uc218\uac00 \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc73c\ub85c \uc790\uc2e0\uc744 \ucc38\uc870\ud569\ub2c8\ub2e4!" },
0983:
0984:                        /** Illegal DOMSource input          */
0985:                        //  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
0986:                        {
0987:                                ER_ILLEGAL_DOMSOURCE_INPUT,
0988:                                "newTemplates\uc758 DOMSource\uc5d0 \ub300\ud55c \uc785\ub825 \ub178\ub4dc\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0989:
0990:                        /** Class not found for option         */
0991:                        //  public static final int ER_CLASS_NOT_FOUND_FOR_OPTION = 109;
0992:                        {
0993:                                ER_CLASS_NOT_FOUND_FOR_OPTION,
0994:                                "{0} \uc635\uc158\uc5d0 \ub300\ud55c \ud074\ub798\uc2a4 \ud30c\uc77c\uc774 \uc5c6\uc74c" },
0995:
0996:                        /** Required Element not found         */
0997:                        //  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
0998:                        {
0999:                                ER_REQUIRED_ELEM_NOT_FOUND,
1000:                                "\ud544\uc218 \uc694\uc18c\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
1001:
1002:                        /** InputStream cannot be null         */
1003:                        //  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
1004:                        { ER_INPUT_CANNOT_BE_NULL,
1005:                                "InputStream\uc740 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1006:
1007:                        /** URI cannot be null         */
1008:                        //  public static final int ER_URI_CANNOT_BE_NULL = 112;
1009:                        { ER_URI_CANNOT_BE_NULL,
1010:                                "URI\uc740 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1011:
1012:                        /** File cannot be null         */
1013:                        //  public static final int ER_FILE_CANNOT_BE_NULL = 113;
1014:                        { ER_FILE_CANNOT_BE_NULL,
1015:                                "\ud30c\uc77c\uc740 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1016:
1017:                        /** InputSource cannot be null         */
1018:                        //  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
1019:                        { ER_SOURCE_CANNOT_BE_NULL,
1020:                                "InputSource\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1021:
1022:                        /** Can't overwrite cause         */
1023:                        //  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
1024:                        //{ ER_CANNOT_OVERWRITE_CAUSE,
1025:                        //      "Cannot overwrite cause"},
1026:                        /** Could not initialize BSF Manager        */
1027:                        //  public static final int ER_CANNOT_INIT_BSFMGR = 116;
1028:                        {
1029:                                ER_CANNOT_INIT_BSFMGR,
1030:                                "BSF \uad00\ub9ac\uc790\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1031:
1032:                        /** Could not compile extension       */
1033:                        //  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
1034:                        {
1035:                                ER_CANNOT_CMPL_EXTENSN,
1036:                                "\ud655\uc7a5\uc790\ub97c \ucef4\ud30c\uc77c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1037:
1038:                        /** Could not create extension       */
1039:                        //  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
1040:                        {
1041:                                ER_CANNOT_CREATE_EXTENSN,
1042:                                "\ud655\uc7a5\uc790\ub97c \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.: {0} \uc6d0\uc778: {1}" },
1043:
1044:                        /** Instance method call to method {0} requires an Object instance as first argument       */
1045:                        //  public static final int ER_INSTANCE_MTHD_CALL_REQUIRES = 119;
1046:                        {
1047:                                ER_INSTANCE_MTHD_CALL_REQUIRES,
1048:                                "{0} \uba54\uc18c\ub4dc\uc5d0 \ub300\ud55c \uc778\uc2a4\ud134\uc2a4 \uba54\uc18c\ub4dc \ud638\ucd9c\uc740 \uccab \ubc88\uc9f8 \uc778\uc218\ub85c \uc624\ube0c\uc81d\ud2b8 \uc778\uc2a4\ud134\uc2a4\ub97c \ud544\uc694\ub85c \ud569\ub2c8\ub2e4." },
1049:
1050:                        /** Invalid element name specified       */
1051:                        //  public static final int ER_INVALID_ELEMENT_NAME = 120;
1052:                        {
1053:                                ER_INVALID_ELEMENT_NAME,
1054:                                "\uc798\ubabb\ub41c \uc694\uc18c \uc774\ub984\uc774 \uc9c0\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}" },
1055:
1056:                        /** Element name method must be static      */
1057:                        //  public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
1058:                        {
1059:                                ER_ELEMENT_NAME_METHOD_STATIC,
1060:                                "\uc694\uc18c \uc774\ub984 \uba54\uc18c\ub4dc\ub294 static\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4: {0}" },
1061:
1062:                        /** Extension function {0} : {1} is unknown      */
1063:                        //  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
1064:                        {
1065:                                ER_EXTENSION_FUNC_UNKNOWN,
1066:                                "\ud655\uc7a5\uc790 \ud568\uc218 {0} : {1}\uc744(\ub97c) \uc54c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1067:
1068:                        /** More than one best match for constructor for       */
1069:                        //  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
1070:                        {
1071:                                ER_MORE_MATCH_CONSTRUCTOR,
1072:                                "{0}\uc5d0 \ub300\ud55c \uc0dd\uc131\uc790\uc5d0 \uac00\uc7a5 \uc77c\uce58\ud558\ub294 \uac83\uc774 \uc5c6\uc2b5\ub2c8\ub2e4." },
1073:
1074:                        /** More than one best match for method      */
1075:                        //  public static final int ER_MORE_MATCH_METHOD = 124;
1076:                        {
1077:                                ER_MORE_MATCH_METHOD,
1078:                                "{0} \uba54\uc18c\ub4dc\uc5d0 \uac00\uc7a5 \uc77c\uce58\ud558\ub294 \uac83\uc774 \uc5c6\uc2b5\ub2c8\ub2e4." },
1079:
1080:                        /** More than one best match for element method      */
1081:                        //  public static final int ER_MORE_MATCH_ELEMENT = 125;
1082:                        {
1083:                                ER_MORE_MATCH_ELEMENT,
1084:                                "{0} \uc694\uc18c \uba54\uc18c\ub4dc\uc5d0 \uac00\uc7a5 \uc77c\uce58\ud558\ub294 \uac83\uc774 \uc5c6\uc2b5\ub2c8\ub2e4." },
1085:
1086:                        /** Invalid context passed to evaluate       */
1087:                        //  public static final int ER_INVALID_CONTEXT_PASSED = 126;
1088:                        {
1089:                                ER_INVALID_CONTEXT_PASSED,
1090:                                "{0}\uc744(\ub97c) \ud3c9\uac00\ud558\ub294 \ub370 \uc798\ubabb\ub41c \ubb38\ub9e5\uc774 \uc804\ub2ec\ub418\uc5c8\uc2b5\ub2c8\ub2e4." },
1091:
1092:                        /** Pool already exists       */
1093:                        //  public static final int ER_POOL_EXISTS = 127;
1094:                        { ER_POOL_EXISTS,
1095:                                "\ud480\uc774 \uc774\ubbf8 \uc788\uc2b5\ub2c8\ub2e4." },
1096:
1097:                        /** No driver Name specified      */
1098:                        //  public static final int ER_NO_DRIVER_NAME = 128;
1099:                        {
1100:                                ER_NO_DRIVER_NAME,
1101:                                "\ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4." },
1102:
1103:                        /** No URL specified     */
1104:                        //  public static final int ER_NO_URL = 129;
1105:                        { ER_NO_URL,
1106:                                "URL\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4." },
1107:
1108:                        /** Pool size is less than one    */
1109:                        //  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
1110:                        { ER_POOL_SIZE_LESSTHAN_ONE,
1111:                                "\ud480 \ud06c\uae30\uac00 1 \ubbf8\ub9cc\uc785\ub2c8\ub2e4!" },
1112:
1113:                        /** Invalid driver name specified    */
1114:                        //  public static final int ER_INVALID_DRIVER = 131;
1115:                        {
1116:                                ER_INVALID_DRIVER,
1117:                                "\uc798\ubabb\ub41c \ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc744 \uc9c0\uc815\ud588\uc2b5\ub2c8\ub2e4!" },
1118:
1119:                        /** Did not find the stylesheet root    */
1120:                        //  public static final int ER_NO_STYLESHEETROOT = 132;
1121:                        {
1122:                                ER_NO_STYLESHEETROOT,
1123:                                "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub8e8\ud2b8\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
1124:
1125:                        /** Illegal value for xml:space     */
1126:                        //  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
1127:                        { ER_ILLEGAL_XMLSPACE_VALUE,
1128:                                "xml:space\uc5d0 \ub300\ud574 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12" },
1129:
1130:                        /** processFromNode failed     */
1131:                        //  public static final int ER_PROCESSFROMNODE_FAILED = 134;
1132:                        { ER_PROCESSFROMNODE_FAILED,
1133:                                "processFromNode\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4." },
1134:
1135:                        /** The resource [] could not load:     */
1136:                        //  public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
1137:                        {
1138:                                ER_RESOURCE_COULD_NOT_LOAD,
1139:                                "[ {0} ] \uc790\uc6d0\uc774 {1} \n {2} \t {3}\uc744 \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1140:
1141:                        /** Buffer size <=0     */
1142:                        //  public static final int ER_BUFFER_SIZE_LESSTHAN_ZERO = 136;
1143:                        { ER_BUFFER_SIZE_LESSTHAN_ZERO,
1144:                                "\ubc84\ud37c \ud06c\uae30 <=0" },
1145:
1146:                        /** Unknown error when calling extension    */
1147:                        //  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
1148:                        {
1149:                                ER_UNKNOWN_ERROR_CALLING_EXTENSION,
1150:                                "\ud655\uc7a5\uc790 \ud638\ucd9c \uc2dc \uc54c \uc218 \uc5c6\ub294 \uc624\ub958" },
1151:
1152:                        /** Prefix {0} does not have a corresponding namespace declaration    */
1153:                        //  public static final int ER_NO_NAMESPACE_DECL = 138;
1154:                        {
1155:                                ER_NO_NAMESPACE_DECL,
1156:                                "{0} \uc811\ub450\ubd80\uc5d0 \ud574\ub2f9\ud558\ub294 \uc774\ub984 \uacf5\uac04 \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4." },
1157:
1158:                        /** Element content not allowed for lang=javaclass   */
1159:                        //  public static final int ER_ELEM_CONTENT_NOT_ALLOWED = 139;
1160:                        {
1161:                                ER_ELEM_CONTENT_NOT_ALLOWED,
1162:                                "lang=javaclass {0}\uc5d0 \ub300\ud574 \uc694\uc18c \ucee8\ud150\uce20\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
1163:
1164:                        /** Stylesheet directed termination   */
1165:                        //  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
1166:                        {
1167:                                ER_STYLESHEET_DIRECTED_TERMINATION,
1168:                                "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uac00 \uc885\ub8cc\ub97c \uc9c0\uc2dc\ud588\uc2b5\ub2c8\ub2e4." },
1169:
1170:                        /** 1 or 2   */
1171:                        //  public static final int ER_ONE_OR_TWO = 141;
1172:                        { ER_ONE_OR_TWO, "1 \ub610\ub294 2" },
1173:
1174:                        /** 2 or 3   */
1175:                        //  public static final int ER_TWO_OR_THREE = 142;
1176:                        { ER_TWO_OR_THREE, "2 \ub610\ub294 3" },
1177:
1178:                        /** Could not load {0} (check CLASSPATH), now using just the defaults   */
1179:                        //  public static final int ER_COULD_NOT_LOAD_RESOURCE = 143;
1180:                        {
1181:                                ER_COULD_NOT_LOAD_RESOURCE,
1182:                                "{0}(check CLASSPATH)\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc73c\ubbc0\ub85c, \ud604\uc7ac \uae30\ubcf8\uac12\ub9cc\uc744 \uc0ac\uc6a9 \uc911\uc785\ub2c8\ub2e4." },
1183:
1184:                        /** Cannot initialize default templates   */
1185:                        //  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
1186:                        {
1187:                                ER_CANNOT_INIT_DEFAULT_TEMPLATES,
1188:                                "\uae30\ubcf8 \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1189:
1190:                        /** Result should not be null   */
1191:                        //  public static final int ER_RESULT_NULL = 145;
1192:                        { ER_RESULT_NULL,
1193:                                "\uacb0\uacfc\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1194:
1195:                        /** Result could not be set   */
1196:                        //  public static final int ER_RESULT_COULD_NOT_BE_SET = 146;
1197:                        { ER_RESULT_COULD_NOT_BE_SET,
1198:                                "\uacb0\uacfc\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1199:
1200:                        /** No output specified   */
1201:                        //  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
1202:                        { ER_NO_OUTPUT_SPECIFIED,
1203:                                "\ucd9c\ub825\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4." },
1204:
1205:                        /** Can't transform to a Result of type   */
1206:                        //  public static final int ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 148;
1207:                        {
1208:                                ER_CANNOT_TRANSFORM_TO_RESULT_TYPE,
1209:                                "{0} \uc720\ud615\uc758 \uacb0\uacfc\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1210:
1211:                        /** Can't transform to a Source of type   */
1212:                        //  public static final int ER_CANNOT_TRANSFORM_SOURCE_TYPE = 149;
1213:                        {
1214:                                ER_CANNOT_TRANSFORM_SOURCE_TYPE,
1215:                                "{0} \uc720\ud615\uc758 \uc18c\uc2a4\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1216:
1217:                        /** Null content handler  */
1218:                        //  public static final int ER_NULL_CONTENT_HANDLER = 150;
1219:                        { ER_NULL_CONTENT_HANDLER,
1220:                                "\ub110(null) \ucee8\ud150\uce20 \ud578\ub4e4\ub7ec" },
1221:
1222:                        /** Null error handler  */
1223:                        //  public static final int ER_NULL_ERROR_HANDLER = 151;
1224:                        { ER_NULL_ERROR_HANDLER,
1225:                                "\ub110(null) \uc624\ub958 \ud578\ub4e4\ub7ec" },
1226:
1227:                        /** parse can not be called if the ContentHandler has not been set */
1228:                        //  public static final int ER_CANNOT_CALL_PARSE = 152;
1229:                        {
1230:                                ER_CANNOT_CALL_PARSE,
1231:                                "ContentHandler\ub97c \uc124\uc815\ud558\uc9c0 \uc54a\uc740 \uacbd\uc6b0\uc5d0\ub294 parse\ub97c \ud638\ucd9c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1232:
1233:                        /**  No parent for filter */
1234:                        //  public static final int ER_NO_PARENT_FOR_FILTER = 153;
1235:                        { ER_NO_PARENT_FOR_FILTER,
1236:                                "\uc0c1\uc704 \ud544\ud130\uac00 \uc5c6\uc2b5\ub2c8\ub2e4." },
1237:
1238:                        /**  No stylesheet found in: {0}, media */
1239:                        //  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
1240:                        {
1241:                                ER_NO_STYLESHEET_IN_MEDIA,
1242:                                "{0}\uc5d0 \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub9e4\uccb4= {1}" },
1243:
1244:                        /**  No xml-stylesheet PI found in */
1245:                        //  public static final int ER_NO_STYLESHEET_PI = 155;
1246:                        {
1247:                                ER_NO_STYLESHEET_PI,
1248:                                "{0}\uc5d0 xml-\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 PI\uac00 \uc5c6\uc2b5\ub2c8\ub2e4." },
1249:
1250:                        /**  No default implementation found */
1251:                        //  public static final int ER_NO_DEFAULT_IMPL = 156;
1252:                        //{ ER_NO_DEFAULT_IMPL,
1253:                        //    "No default implementation found "},
1254:                        /**  ChunkedIntArray({0}) not currently supported */
1255:                        //  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
1256:                        //{ ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
1257:                        //  "ChunkedIntArray({0}) not currently supported"},
1258:                        /**  Offset bigger than slot */
1259:                        //  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
1260:                        //{ ER_OFFSET_BIGGER_THAN_SLOT,
1261:                        //  "Offset bigger than slot"},
1262:                        /**  Coroutine not available, id= */
1263:                        //  public static final int ER_COROUTINE_NOT_AVAIL = 159;
1264:                        //{ ER_COROUTINE_NOT_AVAIL,
1265:                        //   "Coroutine not available, id={0}"},
1266:                        /**  CoroutineManager recieved co_exit() request */
1267:                        //  public static final int ER_COROUTINE_CO_EXIT = 160;
1268:                        //{ ER_COROUTINE_CO_EXIT,
1269:                        //  "CoroutineManager received co_exit() request"},
1270:                        /**  co_joinCoroutineSet() failed */
1271:                        //  public static final int ER_COJOINROUTINESET_FAILED = 161;
1272:                        //{ ER_COJOINROUTINESET_FAILED,
1273:                        //   "co_joinCoroutineSet() failed"},
1274:                        /**  Coroutine parameter error () */
1275:                        //  public static final int ER_COROUTINE_PARAM = 162;
1276:                        //{ ER_COROUTINE_PARAM,
1277:                        //   "Coroutine parameter error ({0})"},
1278:                        /**  UNEXPECTED: Parser doTerminate answers  */
1279:                        //  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
1280:                        //{ ER_PARSER_DOTERMINATE_ANSWERS,
1281:                        //   "\nUNEXPECTED: Parser doTerminate answers {0}"},
1282:                        /**  parse may not be called while parsing */
1283:                        //  public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
1284:                        //{ ER_NO_PARSE_CALL_WHILE_PARSING,
1285:                        //   "parse may not be called while parsing"},
1286:                        /**  Error: typed iterator for axis  {0} not implemented  */
1287:                        //  public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
1288:                        //{ ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
1289:                        //  "Error: typed iterator for axis  {0} not implemented"},
1290:                        /**  Error: iterator for axis {0} not implemented  */
1291:                        //  public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
1292:                        //{ ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
1293:                        //   "Error: iterator for axis {0} not implemented "},
1294:                        /**  Iterator clone not supported  */
1295:                        //  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
1296:                        //{ ER_ITERATOR_CLONE_NOT_SUPPORTED,
1297:                        //  "Iterator clone not supported"},
1298:                        /**  Unknown axis traversal type  */
1299:                        //  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
1300:                        //{ ER_UNKNOWN_AXIS_TYPE,
1301:                        //   "Unknown axis traversal type: {0}"},
1302:                        /**  Axis traverser not supported  */
1303:                        //  public static final int ER_AXIS_NOT_SUPPORTED = 169;
1304:                        //{ ER_AXIS_NOT_SUPPORTED,
1305:                        //   "Axis traverser not supported: {0}"},
1306:                        /**  No more DTM IDs are available  */
1307:                        //  public static final int ER_NO_DTMIDS_AVAIL = 170;
1308:                        //{ ER_NO_DTMIDS_AVAIL,
1309:                        //  "No more DTM IDs are available"},
1310:                        /**  Not supported  */
1311:                        //  public static final int ER_NOT_SUPPORTED = 171;
1312:                        { ER_NOT_SUPPORTED,
1313:                                "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc74c: {0}" },
1314:
1315:                        /**  node must be non-null for getDTMHandleFromNode  */
1316:                        //  public static final int ER_NODE_NON_NULL = 172;
1317:                        //{ ER_NODE_NON_NULL,
1318:                        //   "Node must be non-null for getDTMHandleFromNode"},
1319:                        /**  Could not resolve the node to a handle  */
1320:                        //  public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
1321:                        //{ ER_COULD_NOT_RESOLVE_NODE,
1322:                        //   "Could not resolve the node to a handle"},
1323:                        /**  startParse may not be called while parsing */
1324:                        //  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
1325:                        //{ ER_STARTPARSE_WHILE_PARSING,
1326:                        //  "startParse may not be called while parsing"},
1327:                        /**  startParse needs a non-null SAXParser  */
1328:                        //  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
1329:                        //{ ER_STARTPARSE_NEEDS_SAXPARSER,
1330:                        //   "startParse needs a non-null SAXParser"},
1331:                        /**  could not initialize parser with */
1332:                        //  public static final int ER_COULD_NOT_INIT_PARSER = 176;
1333:                        //{ ER_COULD_NOT_INIT_PARSER,
1334:                        //  "could not initialize parser with"},
1335:                        /**  Value for property {0} should be a Boolean instance  */
1336:                        //  public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
1337:                        {
1338:                                ER_PROPERTY_VALUE_BOOLEAN,
1339:                                "{0} \ud2b9\uc131\uac12\uc740 \ubd80\uc6b8 \uc778\uc2a4\ud134\uc2a4\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
1340:
1341:                        /**  exception creating new instance for pool  */
1342:                        //  public static final int ER_EXCEPTION_CREATING_POOL = 178;
1343:                        //{ ER_EXCEPTION_CREATING_POOL,
1344:                        //   "exception creating new instance for pool"},
1345:                        /**  Path contains invalid escape sequence  */
1346:                        //  public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
1347:                        //{ ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
1348:                        //   "Path contains invalid escape sequence"},
1349:                        /**  Scheme is required!  */
1350:                        //  public static final int ER_SCHEME_REQUIRED = 180;
1351:                        //{ ER_SCHEME_REQUIRED,
1352:                        //  "Scheme is required!"},
1353:                        /**  No scheme found in URI  */
1354:                        //  public static final int ER_NO_SCHEME_IN_URI = 181;
1355:                        //{ ER_NO_SCHEME_IN_URI,
1356:                        //   "No scheme found in URI: {0}"},
1357:                        /**  No scheme found in URI  */
1358:                        //  public static final int ER_NO_SCHEME_INURI = 182;
1359:                        //{ ER_NO_SCHEME_INURI,
1360:                        //   "No scheme found in URI"},
1361:                        /**  Path contains invalid character:   */
1362:                        //  public static final int ER_PATH_INVALID_CHAR = 183;
1363:                        //{ ER_PATH_INVALID_CHAR,
1364:                        //   "Path contains invalid character: {0}"},
1365:                        /**  Cannot set scheme from null string  */
1366:                        //  public static final int ER_SCHEME_FROM_NULL_STRING = 184;
1367:                        //{ ER_SCHEME_FROM_NULL_STRING,
1368:                        //   "Cannot set scheme from null string"},
1369:                        /**  The scheme is not conformant. */
1370:                        //  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
1371:                        //{ ER_SCHEME_NOT_CONFORMANT,
1372:                        //   "The scheme is not conformant."},
1373:                        /**  Host is not a well formed address  */
1374:                        //  public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
1375:                        //{ ER_HOST_ADDRESS_NOT_WELLFORMED,
1376:                        //   "Host is not a well formed address"},
1377:                        /**  Port cannot be set when host is null  */
1378:                        //  public static final int ER_PORT_WHEN_HOST_NULL = 187;
1379:                        //{ ER_PORT_WHEN_HOST_NULL,
1380:                        //   "Port cannot be set when host is null"},
1381:                        /**  Invalid port number  */
1382:                        //  public static final int ER_INVALID_PORT = 188;
1383:                        //{ ER_INVALID_PORT,
1384:                        //   "Invalid port number"},
1385:                        /**  Fragment can only be set for a generic URI  */
1386:                        //  public static final int ER_FRAG_FOR_GENERIC_URI = 189;
1387:                        //{ ER_FRAG_FOR_GENERIC_URI,
1388:                        //   "Fragment can only be set for a generic URI"},
1389:                        /**  Fragment cannot be set when path is null  */
1390:                        //  public static final int ER_FRAG_WHEN_PATH_NULL = 190;
1391:                        //{ ER_FRAG_WHEN_PATH_NULL,
1392:                        //   "Fragment cannot be set when path is null"},
1393:                        /**  Fragment contains invalid character  */
1394:                        //  public static final int ER_FRAG_INVALID_CHAR = 191;
1395:                        //{ ER_FRAG_INVALID_CHAR,
1396:                        //   "Fragment contains invalid character"},
1397:
1398:                        /** Parser is already in use  */
1399:                        //  public static final int ER_PARSER_IN_USE = 192;
1400:                        //{ ER_PARSER_IN_USE,
1401:                        //    "Parser is already in use"},
1402:                        /** Parser is already in use  */
1403:                        //  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
1404:                        //{ ER_CANNOT_CHANGE_WHILE_PARSING,
1405:                        //    "Cannot change {0} {1} while parsing"},
1406:                        /** Self-causation not permitted  */
1407:                        //  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
1408:                        //{ ER_SELF_CAUSATION_NOT_PERMITTED,
1409:                        //   "Self-causation not permitted"},
1410:                        /** src attribute not yet supported for  */
1411:                        //  public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
1412:                        {
1413:                                ER_COULD_NOT_FIND_EXTERN_SCRIPT,
1414:                                "{0}\uc5d0 \uc788\ub294 \uc678\ubd80 \uc2a4\ud06c\ub9bd\ud2b8\uc5d0 \ub3c4\ub2ec\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1415:
1416:                        /** The resource [] could not be found     */
1417:                        //  public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
1418:                        {
1419:                                ER_RESOURCE_COULD_NOT_FIND,
1420:                                "[ {0} ] \uc790\uc6d0\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n {1}" },
1421:
1422:                        /** output property not recognized:  */
1423:                        //  public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
1424:                        {
1425:                                ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
1426:                                "\ucd9c\ub825 \ud2b9\uc131\uc774 \uc778\uc2dd\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}" },
1427:
1428:                        /** Userinfo may not be specified if host is not specified   */
1429:                        //  public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
1430:                        //{ ER_NO_USERINFO_IF_NO_HOST,
1431:                        //    "Userinfo may not be specified if host is not specified"},
1432:                        /** Port may not be specified if host is not specified   */
1433:                        //  public static final int ER_NO_PORT_IF_NO_HOST = 199;
1434:                        //{ ER_NO_PORT_IF_NO_HOST,
1435:                        //    "Port may not be specified if host is not specified"},
1436:                        /** Query string cannot be specified in path and query string   */
1437:                        //  public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
1438:                        //{ ER_NO_QUERY_STRING_IN_PATH,
1439:                        //    "Query string cannot be specified in path and query string"},
1440:                        /** Fragment cannot be specified in both the path and fragment   */
1441:                        //  public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
1442:                        //{ ER_NO_FRAGMENT_STRING_IN_PATH,
1443:                        //    "Fragment cannot be specified in both the path and fragment"},
1444:                        /** Cannot initialize URI with empty parameters   */
1445:                        //  public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
1446:                        //{ ER_CANNOT_INIT_URI_EMPTY_PARMS,
1447:                        //    "Cannot initialize URI with empty parameters"},
1448:                        /** Failed creating ElemLiteralResult instance   */
1449:                        //  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
1450:                        {
1451:                                ER_FAILED_CREATING_ELEMLITRSLT,
1452:                                "ElemLiteralResult \uc778\uc2a4\ud134\uc2a4 \uc791\uc131\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4." },
1453:
1454:                        //Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
1455:                        // In latest Xalan code base key name is  ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
1456:                        //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
1457:                        //NOTE: Not only the key name but message has also been changed.
1458:
1459:                        /** Priority value does not contain a parsable number   */
1460:                        //  public static final int ER_VALUE_SHOULD_BE_NUMBER = 204;
1461:                        {
1462:                                ER_VALUE_SHOULD_BE_NUMBER,
1463:                                "{0}\uc5d0 \ub300\ud55c \uac12\uc5d0 \uad6c\ubb38 \ubd84\uc11d \uac00\ub2a5\ud55c \uc22b\uc790\uac00 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
1464:
1465:                        /**  Value for {0} should equal 'yes' or 'no'   */
1466:                        //  public static final int ER_VALUE_SHOULD_EQUAL = 205;
1467:                        { ER_VALUE_SHOULD_EQUAL,
1468:                                "{0}\uc758 \uac12\uc740 yes \ub610\ub294 no\uc5ec\uc57c \ud569\ub2c8\ub2e4." },
1469:
1470:                        /**  Failed calling {0} method   */
1471:                        //  public static final int ER_FAILED_CALLING_METHOD = 206;
1472:                        {
1473:                                ER_FAILED_CALLING_METHOD,
1474:                                "{0} \uba54\uc18c\ub4dc \ud638\ucd9c\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4." },
1475:
1476:                        /** Failed creating ElemLiteralResult instance   */
1477:                        //  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
1478:                        {
1479:                                ER_FAILED_CREATING_ELEMTMPL,
1480:                                "ElemTemplateElement \uc778\uc2a4\ud134\uc2a4 \uc791\uc131\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4." },
1481:
1482:                        /**  Characters are not allowed at this point in the document   */
1483:                        //  public static final int ER_CHARS_NOT_ALLOWED = 208;
1484:                        {
1485:                                ER_CHARS_NOT_ALLOWED,
1486:                                "\ubb38\uc11c\uc758 \uc774 \uc9c0\uc810\uc5d0 \ubb38\uc790\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
1487:
1488:                        /**  attribute is not allowed on the element   */
1489:                        //  public static final int ER_ATTR_NOT_ALLOWED = 209;
1490:                        {
1491:                                ER_ATTR_NOT_ALLOWED,
1492:                                "{1} \uc694\uc18c\uc5d0 \"{0}\" \uc18d\uc131\uc774 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
1493:
1494:                        /**  Method not yet supported    */
1495:                        //  public static final int ER_METHOD_NOT_SUPPORTED = 210;
1496:                        //{ ER_METHOD_NOT_SUPPORTED,
1497:                        //   "Method not yet supported "},
1498:                        /**  Bad value    */
1499:                        //  public static final int ER_BAD_VALUE = 211;
1500:                        { ER_BAD_VALUE, "{0} \uc798\ubabb\ub41c \uac12 {1} " },
1501:
1502:                        /**  attribute value not found   */
1503:                        //  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
1504:                        { ER_ATTRIB_VALUE_NOT_FOUND,
1505:                                "{0} \uc18d\uc131\uac12\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. " },
1506:
1507:                        /**  attribute value not recognized    */
1508:                        //  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
1509:                        {
1510:                                ER_ATTRIB_VALUE_NOT_RECOGNIZED,
1511:                                "{0} \uc18d\uc131\uac12\uc774 \uc778\uc2dd\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. " },
1512:
1513:                        /** IncrementalSAXSource_Filter not currently restartable   */
1514:                        //  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
1515:                        //{ ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
1516:                        //  "IncrementalSAXSource_Filter not currently restartable"},
1517:                        /** IncrementalSAXSource_Filter not currently restartable   */
1518:                        //  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
1519:                        //{ ER_XMLRDR_NOT_BEFORE_STARTPARSE,
1520:                        // "XMLReader not before startParse request"},
1521:                        /** Attempting to generate a namespace prefix with a null URI   */
1522:                        //  public static final int ER_NULL_URI_NAMESPACE = 216;
1523:                        {
1524:                                ER_NULL_URI_NAMESPACE,
1525:                                "\ub110(null) URI\ub85c \uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80\ub97c \uc0dd\uc131\ud558\ub824\uace0 \uc2dc\ub3c4 \uc911\uc785\ub2c8\ub2e4." },
1526:
1527:                        //New ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
1528:
1529:                        /** Attempting to generate a namespace prefix with a null URI   */
1530:                        //  public static final int ER_NUMBER_TOO_BIG = 217;
1531:                        {
1532:                                ER_NUMBER_TOO_BIG,
1533:                                "\ucd5c\ub300\ub85c \uae34 \uc815\uc218\ubcf4\ub2e4 \ud070 \uc22b\uc790\ub97c \ud3ec\ub9f7\ud558\ub824\uace0 \uc2dc\ub3c4 \uc911\uc785\ub2c8\ub2e4." },
1534:
1535:                        //ER_CANNOT_FIND_SAX1_DRIVER
1536:
1537:                        //  public static final int  ER_CANNOT_FIND_SAX1_DRIVER = 218;
1538:
1539:                        {
1540:                                ER_CANNOT_FIND_SAX1_DRIVER,
1541:                                "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1542:
1543:                        //ER_SAX1_DRIVER_NOT_LOADED
1544:                        //  public static final int  ER_SAX1_DRIVER_NOT_LOADED = 219;
1545:
1546:                        {
1547:                                ER_SAX1_DRIVER_NOT_LOADED,
1548:                                "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc774(\uac00) \uc788\uc73c\ub098 \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1549:
1550:                        //ER_SAX1_DRIVER_NOT_INSTANTIATED
1551:                        //  public static final int  ER_SAX1_DRIVER_NOT_INSTANTIATED = 220 ;
1552:
1553:                        {
1554:                                ER_SAX1_DRIVER_NOT_INSTANTIATED,
1555:                                "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc744(\ub97c) \ub85c\ub4dc\ud588\uc73c\ub098 \uc778\uc2a4\ud134\uc2a4\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1556:
1557:                        // ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER
1558:                        //  public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 221;
1559:
1560:                        {
1561:                                ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER,
1562:                                "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc774(\uac00) org.xml.sax.Parser\ub97c \uad6c\ud604\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4." },
1563:
1564:                        // ER_PARSER_PROPERTY_NOT_SPECIFIED
1565:                        //  public static final int  ER_PARSER_PROPERTY_NOT_SPECIFIED = 222;
1566:
1567:                        {
1568:                                ER_PARSER_PROPERTY_NOT_SPECIFIED,
1569:                                "\uc2dc\uc2a4\ud15c \ud2b9\uc131 org.xml.sax.parser\ub97c \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4." },
1570:
1571:                        //ER_PARSER_ARG_CANNOT_BE_NULL
1572:                        //  public static final int  ER_PARSER_ARG_CANNOT_BE_NULL = 223 ;
1573:
1574:                        {
1575:                                ER_PARSER_ARG_CANNOT_BE_NULL,
1576:                                "\uad6c\ubb38 \ubd84\uc11d\uae30 \uc778\uc218\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1577:
1578:                        // ER_FEATURE
1579:                        //  public static final int  ER_FEATURE = 224;
1580:
1581:                        { ER_FEATURE, "\ud2b9\uc131: {0}" },
1582:
1583:                        // ER_PROPERTY
1584:                        //  public static final int ER_PROPERTY = 225 ;
1585:
1586:                        { ER_PROPERTY, "\ud2b9\uc131: {0}" },
1587:
1588:                        // ER_NULL_ENTITY_RESOLVER
1589:                        //  public static final int ER_NULL_ENTITY_RESOLVER  = 226;
1590:
1591:                        { ER_NULL_ENTITY_RESOLVER,
1592:                                "\ub110(null) \uc5d4\ud2f0\ud2f0 \ubd84\uc11d\uae30" },
1593:
1594:                        // ER_NULL_DTD_HANDLER
1595:                        //  public static final int  ER_NULL_DTD_HANDLER = 227 ;
1596:
1597:                        { ER_NULL_DTD_HANDLER,
1598:                                "\ub110(null) DTD \ud578\ub4e4\ub7ec" },
1599:
1600:                        // No Driver Name Specified!
1601:                        //  public static final int ER_NO_DRIVER_NAME_SPECIFIED = 228;
1602:                        {
1603:                                ER_NO_DRIVER_NAME_SPECIFIED,
1604:                                "\ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4!" },
1605:
1606:                        // No URL Specified!
1607:                        //  public static final int ER_NO_URL_SPECIFIED = 229;
1608:                        { ER_NO_URL_SPECIFIED,
1609:                                "URL\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4!" },
1610:
1611:                        // Pool size is less than 1!
1612:                        //  public static final int ER_POOLSIZE_LESS_THAN_ONE = 230;
1613:                        { ER_POOLSIZE_LESS_THAN_ONE,
1614:                                "\ud480 \ud06c\uae30\uac00 1 \ubbf8\ub9cc\uc785\ub2c8\ub2e4!" },
1615:
1616:                        // Invalid Driver Name Specified!
1617:                        //  public static final int ER_INVALID_DRIVER_NAME = 231;
1618:                        {
1619:                                ER_INVALID_DRIVER_NAME,
1620:                                "\uc798\ubabb\ub41c \ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc744 \uc9c0\uc815\ud588\uc2b5\ub2c8\ub2e4!" },
1621:
1622:                        // ErrorListener
1623:                        //  public static final int ER_ERRORLISTENER = 232;
1624:                        { ER_ERRORLISTENER, "ErrorListener" },
1625:
1626:                        // Programmer's error! expr has no ElemTemplateElement parent!
1627:                        //  public static final int ER_ASSERT_NO_TEMPLATE_PARENT = 233;
1628:                        {
1629:                                ER_ASSERT_NO_TEMPLATE_PARENT,
1630:                                "\ud504\ub85c\uadf8\ub798\uba38 \uc624\ub958! expr\uc5d0 ElemTemplateElement \uc0c1\uc704\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!" },
1631:
1632:                        // Programmer''s assertion in RundundentExprEliminator: {0}
1633:                        //  public static final int ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 234;
1634:                        {
1635:                                ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
1636:                                "RundundentExprEliminator\uc5d0 \ud504\ub85c\uadf8\ub798\uba38\uc758 \ub2e8\uc5b8\ubb38: {0}" },
1637:
1638:                        // Axis traverser not supported: {0}
1639:                        //  public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
1640:                        //{ ER_AXIS_TRAVERSER_NOT_SUPPORTED,
1641:                        // "Axis traverser not supported: {0}"},
1642:
1643:                        // ListingErrorHandler created with null PrintWriter!
1644:                        //  public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = 236;
1645:                        //{ ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
1646:                        // "ListingErrorHandler created with null PrintWriter!"},
1647:
1648:                        // {0}is not allowed in this position in the stylesheet!
1649:                        //  public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
1650:                        {
1651:                                ER_NOT_ALLOWED_IN_POSITION,
1652:                                "{0}\uc740(\ub294) \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc758 \uc774 \uc704\uce58\uc5d0\uc11c \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
1653:
1654:                        // Non-whitespace text is not allowed in this position in the stylesheet!
1655:                        //  public static final int ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 238;
1656:                        {
1657:                                ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION,
1658:                                "Non-whitespace \ud14d\uc2a4\ud2b8\ub294 \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc758 \uc774 \uc704\uce58\uc5d0\uc11c \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
1659:
1660:                        // This code is shared with warning codes.
1661:                        // Illegal value: {1} used for CHAR attribute: {0}.  An attribute of type CHAR must be only 1 character!
1662:                        //  public static final int INVALID_TCHAR = 239;
1663:                        // SystemId Unknown
1664:                        {
1665:                                INVALID_TCHAR,
1666:                                "{0} CHAR \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. CHAR \uc720\ud615\uc758 \uc18d\uc131\uc740 1 \ubb38\uc790\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4!" },
1667:
1668:                        //  public static final int ER_SYSTEMID_UNKNOWN = 240;
1669:                        //{ ER_SYSTEMID_UNKNOWN,
1670:                        // "SystemId Unknown"},
1671:
1672:                        // Location of error unknown
1673:                        //  public static final int ER_LOCATION_UNKNOWN = 241;
1674:                        //{ ER_LOCATION_UNKNOWN,
1675:                        // "Location of error unknown"},
1676:
1677:                        // Note to translators:  The following message is used if the value of
1678:                        // an attribute in a stylesheet is invalid.  "QNAME" is the XML data-type of
1679:                        // the attribute, and should not be translated.  The substitution text {1} is
1680:                        // the attribute value and {0} is the attribute name.
1681:                        // INVALID_QNAME
1682:
1683:                        //The following codes are shared with the warning codes...
1684:                        // Illegal value: {1} used for QNAME attribute: {0}
1685:                        //  public static final int INVALID_QNAME = 242;
1686:                        {
1687:                                INVALID_QNAME,
1688:                                "{0} QNAME \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
1689:
1690:                        // Note to translators:  The following message is used if the value of
1691:                        // an attribute in a stylesheet is invalid.  "ENUM" is the XML data-type of
1692:                        // the attribute, and should not be translated.  The substitution text {1} is
1693:                        // the attribute value, {0} is the attribute name, and {2} is a list of valid
1694:                        // values.
1695:                        // INVALID_ENUM
1696:
1697:                        // Illegal value: {1} used for ENUM attribute: {0}.  Valid values are: {2}.
1698:                        //  public static final int INVALID_ENUM = 243;
1699:                        {
1700:                                INVALID_ENUM,
1701:                                "{0} ENUM \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \uc62c\ubc14\ub978 \uac12\uc740 {2}\uc785\ub2c8\ub2e4." },
1702:
1703:                        // Note to translators:  The following message is used if the value of
1704:                        // an attribute in a stylesheet is invalid.  "NMTOKEN" is the XML data-type
1705:                        // of the attribute, and should not be translated.  The substitution text {1} is
1706:                        // the attribute value and {0} is the attribute name.
1707:                        // INVALID_NMTOKEN
1708:
1709:                        // Illegal value: {1} used for NMTOKEN attribute: {0}.
1710:                        //  public static final int INVALID_NMTOKEN = 244;
1711:                        {
1712:                                INVALID_NMTOKEN,
1713:                                "{0} NMTOKEN \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. " },
1714:
1715:                        // Note to translators:  The following message is used if the value of
1716:                        // an attribute in a stylesheet is invalid.  "NCNAME" is the XML data-type
1717:                        // of the attribute, and should not be translated.  The substitution text {1} is
1718:                        // the attribute value and {0} is the attribute name.
1719:                        // INVALID_NCNAME
1720:
1721:                        // Illegal value: {1} used for NCNAME attribute: {0}.
1722:                        //  public static final int INVALID_NCNAME = 245;
1723:                        {
1724:                                INVALID_NCNAME,
1725:                                "{0} NCNAME \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. " },
1726:
1727:                        // Note to translators:  The following message is used if the value of
1728:                        // an attribute in a stylesheet is invalid.  "boolean" is the XSLT data-type
1729:                        // of the attribute, and should not be translated.  The substitution text {1} is
1730:                        // the attribute value and {0} is the attribute name.
1731:                        // INVALID_BOOLEAN
1732:
1733:                        // Illegal value: {1} used for boolean attribute: {0}.
1734:                        //  public static final int INVALID_BOOLEAN = 246;
1735:
1736:                        {
1737:                                INVALID_BOOLEAN,
1738:                                "{0} \ubd80\uc6b8 \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. " },
1739:
1740:                        // Note to translators:  The following message is used if the value of
1741:                        // an attribute in a stylesheet is invalid.  "number" is the XSLT data-type
1742:                        // of the attribute, and should not be translated.  The substitution text {1} is
1743:                        // the attribute value and {0} is the attribute name.
1744:                        // INVALID_NUMBER
1745:
1746:                        // Illegal value: {1} used for number attribute: {0}.
1747:                        //  public static final int INVALID_NUMBER = 247;
1748:                        {
1749:                                INVALID_NUMBER,
1750:                                "{0} \uc22b\uc790 \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. " },
1751:
1752:                        // End of shared codes...
1753:
1754:                        // Note to translators:  A "match pattern" is a special form of XPath expression
1755:                        // that is used for matching patterns.  The substitution text is the name of
1756:                        // a function.  The message indicates that when this function is referenced in
1757:                        // a match pattern, its argument must be a string literal (or constant.)
1758:                        // ER_ARG_LITERAL - new error message for bugzilla //5202
1759:
1760:                        // Argument to {0} in match pattern must be a literal.
1761:                        //  public static final int ER_ARG_LITERAL             = 248;
1762:                        {
1763:                                ER_ARG_LITERAL,
1764:                                "\uc77c\uce58 \ud328\ud134\uc5d0\uc11c {0}\uc5d0 \ub300\ud55c \uc778\uc218\ub294 \ub9ac\ud130\ub7f4\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
1765:
1766:                        // Note to translators:  The following message indicates that two definitions of
1767:                        // a variable.  A "global variable" is a variable that is accessible everywher
1768:                        // in the stylesheet.
1769:                        // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
1770:
1771:                        // Duplicate global variable declaration.
1772:                        //  public static final int ER_DUPLICATE_GLOBAL_VAR    = 249;
1773:                        { ER_DUPLICATE_GLOBAL_VAR,
1774:                                "\uc911\ubcf5 \uae00\ub85c\ubc8c \ubcc0\uc218 \uc120\uc5b8\uc785\ub2c8\ub2e4." },
1775:
1776:                        // Note to translators:  The following message indicates that two definitions of
1777:                        // a variable were encountered.
1778:                        // ER_DUPLICATE_VAR - new error message for bugzilla #790
1779:
1780:                        // Duplicate variable declaration.
1781:                        //  public static final int ER_DUPLICATE_VAR           = 250;
1782:                        { ER_DUPLICATE_VAR,
1783:                                "\uc911\ubcf5 \ubcc0\uc218 \uc120\uc5b8\uc785\ub2c8\ub2e4." },
1784:
1785:                        // Note to translators:  "xsl:template, "name" and "match" are XSLT keywords
1786:                        // which must not be translated.
1787:                        // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
1788:
1789:                        // xsl:template must have a name or match attribute (or both)
1790:                        //  public static final int ER_TEMPLATE_NAME_MATCH     = 251;
1791:                        {
1792:                                ER_TEMPLATE_NAME_MATCH,
1793:                                "xsl:template\uc5d0 \uc774\ub984 \ub610\ub294 \uc77c\uce58 \uc18d\uc131(\ub610\ub294 \ub458 \ub2e4)\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4." },
1794:
1795:                        // Note to translators:  "exclude-result-prefixes" is an XSLT keyword which
1796:                        // should not be translated.  The message indicates that a namespace prefix
1797:                        // encountered as part of the value of the exclude-result-prefixes attribute
1798:                        // was in error.
1799:                        // ER_INVALID_PREFIX - new error message for bugzilla #788
1800:
1801:                        // Prefix in exclude-result-prefixes is not valid: {0}
1802:                        //  public static final int ER_INVALID_PREFIX          = 252;
1803:                        {
1804:                                ER_INVALID_PREFIX,
1805:                                "exclude-result-prefixes\uc5d0 \uc788\ub294 \uc811\ub450\ubd80\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}" },
1806:
1807:                        // Note to translators:  An "attribute set" is a set of attributes that can be
1808:                        // added to an element in the output document as a group.  The message indicates
1809:                        // that there was a reference to an attribute set named {0} that was never
1810:                        // defined.
1811:                        // ER_NO_ATTRIB_SET - new error message for bugzilla #782
1812:
1813:                        // attribute-set named {0} does not exist
1814:                        //  public static final int ER_NO_ATTRIB_SET           = 253;
1815:                        { ER_NO_ATTRIB_SET,
1816:                                "\uc774\ub984\uc774 {0}\uc778 attribute-set\uac00 \uc5c6\uc2b5\ub2c8\ub2e4." },
1817:
1818:                        // Warnings...
1819:
1820:                        /** WG_FOUND_CURLYBRACE          */
1821:                        //  public static final int WG_FOUND_CURLYBRACE = 1;
1822:                        {
1823:                                WG_FOUND_CURLYBRACE,
1824:                                "'}'\uac00 \ubc1c\uacac\ub418\uc5c8\uc73c\ub098 \uc5f4\ub9b0 \uc18d\uc131 \ud15c\ud50c\ub9ac\ud2b8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!" },
1825:
1826:                        /** WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR          */
1827:                        //  public static final int WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 2;
1828:                        {
1829:                                WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR,
1830:                                "\uacbd\uace0: \uacc4\uc218 \uc18d\uc131\uc774 xsl:number\uc758 \uc0c1\uc704 \uc694\uc18c\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! \ub300\uc0c1 = {0}" },
1831:
1832:                        /** WG_EXPR_ATTRIB_CHANGED_TO_SELECT          */
1833:                        //  public static final int WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 3;
1834:                        {
1835:                                WG_EXPR_ATTRIB_CHANGED_TO_SELECT,
1836:                                "\uc774\uc804 \uad6c\ubb38: 'expr' \uc18d\uc131\uc758 \uc774\ub984\uc774 'select'\ub85c \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4." },
1837:
1838:                        /** WG_NO_LOCALE_IN_FORMATNUMBER          */
1839:                        //  public static final int WG_NO_LOCALE_IN_FORMATNUMBER = 4;
1840:                        {
1841:                                WG_NO_LOCALE_IN_FORMATNUMBER,
1842:                                "Xalan\uc774 \uc544\uc9c1 format-number \ud568\uc218\uc5d0 \uc788\ub294 \ub85c\ucf00\uc77c \uc774\ub984\uc744 \ucc98\ub9ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
1843:
1844:                        /** WG_LOCALE_NOT_FOUND          */
1845:                        //  public static final int WG_LOCALE_NOT_FOUND = 5;
1846:                        {
1847:                                WG_LOCALE_NOT_FOUND,
1848:                                "\uacbd\uace0: xml:lang={0}\uc5d0 \ub300\ud55c \ub85c\ucf00\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1849:
1850:                        /** WG_CANNOT_MAKE_URL_FROM          */
1851:                        //  public static final int WG_CANNOT_MAKE_URL_FROM = 6;
1852:                        { WG_CANNOT_MAKE_URL_FROM,
1853:                                "{0}\uc5d0\uc11c URL\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1854:
1855:                        /** WG_CANNOT_LOAD_REQUESTED_DOC          */
1856:                        //  public static final int WG_CANNOT_LOAD_REQUESTED_DOC = 7;
1857:                        {
1858:                                WG_CANNOT_LOAD_REQUESTED_DOC,
1859:                                "\uc694\uccad\ub41c \ubb38\uc11c {0}\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1860:
1861:                        /** WG_CANNOT_FIND_COLLATOR          */
1862:                        //  public static final int WG_CANNOT_FIND_COLLATOR = 8;
1863:                        {
1864:                                WG_CANNOT_FIND_COLLATOR,
1865:                                "<sort xml:lang={0}\uc5d0 \ub300\ud55c Collator\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1866:
1867:                        /** WG_FUNCTIONS_SHOULD_USE_URL          */
1868:                        //  public static final int WG_FUNCTIONS_SHOULD_USE_URL = 9;
1869:                        {
1870:                                WG_FUNCTIONS_SHOULD_USE_URL,
1871:                                "\uc774\uc804 \uad6c\ubb38: \ud568\uc218 \uba85\ub839\uc5b4\ub294 {0}\uc758 url\uc744 \uc0ac\uc6a9\ud574\uc57c \ud569\ub2c8\ub2e4." },
1872:
1873:                        /** WG_ENCODING_NOT_SUPPORTED_USING_UTF8          */
1874:                        //  public static final int WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 10;
1875:                        {
1876:                                WG_ENCODING_NOT_SUPPORTED_USING_UTF8,
1877:                                "\uc778\ucf54\ub529\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}, UTF-8 \uc0ac\uc6a9" },
1878:
1879:                        /** WG_ENCODING_NOT_SUPPORTED_USING_JAVA          */
1880:                        //  public static final int WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 11;
1881:                        {
1882:                                WG_ENCODING_NOT_SUPPORTED_USING_JAVA,
1883:                                "\uc778\ucf54\ub529\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}, Java {1} \uc0ac\uc6a9" },
1884:
1885:                        /** WG_SPECIFICITY_CONFLICTS          */
1886:                        //  public static final int WG_SPECIFICITY_CONFLICTS = 12;
1887:                        {
1888:                                WG_SPECIFICITY_CONFLICTS,
1889:                                "\ud2b9\uc131 \ucda9\ub3cc\uc774 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0} \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc5d0\uc11c \ub9c8\uc9c0\ub9c9\uc73c\ub85c \ubc1c\uacac\ub41c \uac83\uc774 \uc0ac\uc6a9\ub429\ub2c8\ub2e4." },
1890:
1891:                        /** WG_PARSING_AND_PREPARING          */
1892:                        //  public static final int WG_PARSING_AND_PREPARING = 13;
1893:                        { WG_PARSING_AND_PREPARING,
1894:                                "========= \uad6c\ubb38 \ubd84\uc11d \ubc0f \uc900\ube44 {0} ==========" },
1895:
1896:                        /** WG_ATTR_TEMPLATE          */
1897:                        //  public static final int WG_ATTR_TEMPLATE = 14;
1898:                        { WG_ATTR_TEMPLATE,
1899:                                "Attr \ud15c\ud50c\ub9ac\ud2b8, {0}" },
1900:
1901:                        /** WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE          */
1902:                        //  public static final int WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = 15;
1903:                        {
1904:                                WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE,
1905:                                "xsl:strip-space \ubc0f xsl:preserve-space \uc0ac\uc774\uc758 \uc77c\uce58 \ucda9\ub3cc" },
1906:
1907:                        /** WG_ATTRIB_NOT_HANDLED          */
1908:                        //  public static final int WG_ATTRIB_NOT_HANDLED = 16;
1909:                        {
1910:                                WG_ATTRIB_NOT_HANDLED,
1911:                                "Xalan\uc774 \uc544\uc9c1 {0} \uc18d\uc131\uc744 \ucc98\ub9ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
1912:
1913:                        /** WG_NO_DECIMALFORMAT_DECLARATION          */
1914:                        //  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
1915:                        {
1916:                                WG_NO_DECIMALFORMAT_DECLARATION,
1917:                                "10\uc9c4\uc218 \ud3ec\ub9f7\uc5d0 \ub300\ud55c \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
1918:
1919:                        /** WG_OLD_XSLT_NS          */
1920:                        //  public static final int WG_OLD_XSLT_NS = 18;
1921:                        {
1922:                                WG_OLD_XSLT_NS,
1923:                                "XSLT \uc774\ub984 \uacf5\uac04\uc774 \ub204\ub77d\ub418\uc5c8\uac70\ub098 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. " },
1924:
1925:                        /** WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED          */
1926:                        //  public static final int WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 19;
1927:                        {
1928:                                WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED,
1929:                                "\ud558\ub098\uc758 \uae30\ubcf8 xsl:decimal-format \uc120\uc5b8\ub9cc \ud5c8\uc6a9\ub429\ub2c8\ub2e4." },
1930:
1931:                        /** WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE          */
1932:                        //  public static final int WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 20;
1933:                        {
1934:                                WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE,
1935:                                "xsl:decimal-format \uc774\ub984\uc774 \uace0\uc720\ud574\uc57c \ud569\ub2c8\ub2e4. \"{0}\" \uc774\ub984\uc774 \uc911\ubcf5\ub418\uc5c8\uc2b5\ub2c8\ub2e4." },
1936:
1937:                        /** WG_ILLEGAL_ATTRIBUTE          */
1938:                        //public static final int WG_ILLEGAL_ATTRIBUTE = 21;
1939:                        {
1940:                                WG_ILLEGAL_ATTRIBUTE,
1941:                                "{0}\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4." },
1942:
1943:                        /** WG_COULD_NOT_RESOLVE_PREFIX          */
1944:                        //  public static final int WG_COULD_NOT_RESOLVE_PREFIX = 22;
1945:                        {
1946:                                WG_COULD_NOT_RESOLVE_PREFIX,
1947:                                "\uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}. \ub178\ub4dc\uac00 \ubb34\uc2dc\ub429\ub2c8\ub2e4." },
1948:
1949:                        /** WG_STYLESHEET_REQUIRES_VERSION_ATTRIB          */
1950:                        //  public static final int WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 23;
1951:                        {
1952:                                WG_STYLESHEET_REQUIRES_VERSION_ATTRIB,
1953:                                "xsl:stylesheet\uc5d0 'version' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!" },
1954:
1955:                        /** WG_ILLEGAL_ATTRIBUTE_NAME          */
1956:                        //  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
1957:                        { WG_ILLEGAL_ATTRIBUTE_NAME,
1958:                                "\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc18d\uc131 \uc774\ub984: {0}" },
1959:
1960:                        /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
1961:                        //  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
1962:                        {
1963:                                WG_ILLEGAL_ATTRIBUTE_VALUE,
1964:                                "{0} \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12: {1}" },
1965:
1966:                        /** WG_EMPTY_SECOND_ARG          */
1967:                        //  public static final int WG_EMPTY_SECOND_ARG = 26;
1968:                        {
1969:                                WG_EMPTY_SECOND_ARG,
1970:                                "document \ud568\uc218 \ub450 \ubc88\uc9f8 \uc778\uc218\ub85c\ubd80\ud130\uc758 \uacb0\uacfc nodeset\uac00 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \ube48 \ub178\ub4dc \uc138\ud2b8\ub97c \ub9ac\ud134\ud558\uc2ed\uc2dc\uc624. " },
1971:
1972:                        //Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
1973:
1974:                        // Note to translators:  "name" and "xsl:processing-instruction" are keywords
1975:                        // and must not be translated.
1976:                        // WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML
1977:
1978:                        /** WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML          */
1979:                        //  public static final int WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 27;
1980:                        {
1981:                                WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
1982:                                "xsl:processing-instruction\uc758 'name' \uc18d\uc131\uac12\uc740 'xml'\uc77c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1983:
1984:                        // Note to translators:  "name" and "xsl:processing-instruction" are keywords
1985:                        // and must not be translated.  "NCName" is an XML data-type and must not be
1986:                        // translated.
1987:                        // WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME
1988:
1989:                        /** WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
1990:                        //  public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;
1991:                        {
1992:                                WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
1993:                                "xsl:processing-instruction\uc758 'name' \uc18d\uc131\uac12\uc774 \uc62c\ubc14\ub978 NCName\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4: {0}" },
1994:
1995:                        // Note to translators:  This message is reported if the stylesheet that is
1996:                        // being processed attempted to construct an XML document with an attribute in a
1997:                        // place other than on an element.  The substitution text specifies the name of
1998:                        // the attribute.
1999:                        // WG_ILLEGAL_ATTRIBUTE_POSITION
2000:
2001:                        /** WG_ILLEGAL_ATTRIBUTE_POSITION         */
2002:                        //  public static final int WG_ILLEGAL_ATTRIBUTE_POSITION = 29;
2003:                        {
2004:                                WG_ILLEGAL_ATTRIBUTE_POSITION,
2005:                                "\ud558\uc704 \ub178\ub4dc\uac00 \uc0dd\uc131\ub41c \uc774\ud6c4 \ub610\ub294 \uc694\uc18c\uac00 \uc791\uc131\ub418\uae30 \uc774\uc804\uc5d0 {0} \uc18d\uc131\uc744 \ucd94\uac00\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc18d\uc131\uc774 \ubb34\uc2dc\ub429\ub2c8\ub2e4." },
2006:
2007:                        //Check: WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
2008:
2009:                        // Other miscellaneous text used inside the code...
2010:                        { "ui_language", "ko" },
2011:                        { "help_language", "ko" },
2012:                        { "language", "ko" },
2013:                        {
2014:                                "BAD_CODE",
2015:                                "createMessage\uc5d0 \ub300\ud55c \ub9e4\uac1c\ubcc0\uc218\uac00 \ubc94\uc704\ub97c \ubc97\uc5b4\ub0a9\ub2c8\ub2e4." },
2016:                        { "FORMAT_FAILED",
2017:                                "messageFormat \ud638\ucd9c \uc911 \uc608\uc678 \ubc1c\uc0dd" },
2018:                        { "version", ">>>>>>> Xalan \ubc84\uc804 " },
2019:                        { "version2", "<<<<<<<" },
2020:                        { "yes", "\uc608" },
2021:                        { "line", "\ud589 #" },
2022:                        { "column", "\uc5f4 #" },
2023:                        { "xsldone", "XSLProcessor: \uc644\ub8cc" },
2024:
2025:                        // Note to translators:  The following messages provide usage information
2026:                        // for the Xalan Process command line.  "Process" is the name of a Java class,
2027:                        // and should not be translated.
2028:                        {
2029:                                "xslProc_option",
2030:                                "Xalan-J \uba85\ub839\ud589 \ud504\ub85c\uc138\uc2a4 \ud074\ub798\uc2a4 \uc635\uc158:" },
2031:                        {
2032:                                "xslProc_option",
2033:                                "Xalan-J \uba85\ub839\ud589 \ud504\ub85c\uc138\uc2a4 \ud074\ub798\uc2a4 \uc635\uc158\u003a" },
2034:                        {
2035:                                "xslProc_invalid_xsltc_option",
2036:                                "{0} \uc635\uc158\uc774 XSLTC \ubaa8\ub4dc\uc5d0\uc11c \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
2037:                        {
2038:                                "xslProc_invalid_xalan_option",
2039:                                "{0} \uc635\uc158\uc740 -XSLTC\ub85c\ub9cc \uc0ac\uc6a9\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4." },
2040:                        {
2041:                                "xslProc_no_input",
2042:                                "\uc624\ub958: \uc9c0\uc815\ub41c \uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub610\ub294 \uc785\ub825 xml\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. \uc0ac\uc6a9\ubc95 \uba85\ub839\uc5b4\uc5d0 \ub300\ud55c \uc635\uc158 \uc5c6\uc774 \uc774 \uba85\ub839\uc744 \uc2e4\ud589\ud558\uc2ed\uc2dc\uc624." },
2043:                        { "xslProc_common_options",
2044:                                "-\uc77c\ubc18 \uc635\uc158-" },
2045:                        { "xslProc_xalan_options",
2046:                                "-Xalan\uc5d0 \ub300\ud55c \uc635\uc158-" },
2047:                        { "xslProc_xsltc_options",
2048:                                "-XSLTC\uc5d0 \ub300\ud55c \uc635\uc158-" },
2049:                        {
2050:                                "xslProc_return_to_continue",
2051:                                "(\uacc4\uc18d\ud558\ub824\uba74 Enter \ud0a4\ub97c \ub204\ub974\uc2ed\uc2dc\uc624)" },
2052:
2053:                        // Note to translators: The option name and the parameter name do not need to
2054:                        // be translated. Only translate the messages in parentheses.  Note also that
2055:                        // leading whitespace in the messages is used to indent the usage information
2056:                        // for each option in the English messages.
2057:                        // Do not translate the keywords: XSLTC, SAX, DOM and DTM.
2058:                        { "optionXSLTC",
2059:                                "[-XSLTC (\ubcc0\ud658\uc5d0 \ub300\ud574 XSLTC \uc0ac\uc6a9)]" },
2060:                        { "optionIN", "[-IN inputXMLURL]" },
2061:                        { "optionXSL", "[-XSL XSLTransformationURL]" },
2062:                        { "optionOUT", "[-OUT outputFileName]" },
2063:                        { "optionLXCIN",
2064:                                "[-LXCIN compiledStylesheetFileNameIn]" },
2065:                        { "optionLXCOUT",
2066:                                "[-LXCOUT compiledStylesheetFileNameOutOut]" },
2067:                        {
2068:                                "optionPARSER",
2069:                                "[-PARSER \uad6c\ubb38 \ubd84\uc11d\uae30 liaison\uc758 \uc644\uc804\ud55c \ud074\ub798\uc2a4 \uc774\ub984]" },
2070:                        { "optionE",
2071:                                "[-V (\uc5d4\ud2f0\ud2f0 ref\ub97c \ud3bc\uce58\uc9c0 \uc54a\uc74c)]" },
2072:                        { "optionV",
2073:                                "[-V (\uc5d4\ud2f0\ud2f0 ref\ub97c \ud3bc\uce58\uc9c0 \uc54a\uc74c)]" },
2074:                        { "optionQC",
2075:                                "[-QC (\uc790\ub3d9 \ud328\ud134 \ucda9\ub3cc \uacbd\uace0)]" },
2076:                        { "optionQ", "[-Q  (\uc790\ub3d9 \ubaa8\ub4dc)]" },
2077:                        {
2078:                                "optionLF",
2079:                                "[-LF (\ucd9c\ub825\uc5d0\uc11c\ub9cc \uc904\ubc14\uafb8\uae30 \uc0ac\uc6a9 {\uae30\ubcf8\uac12\uc740 CR/LF \uc785\ub2c8\ub2e4})]" },
2080:                        {
2081:                                "optionCR",
2082:                                "[-CR (\ucd9c\ub825\uc5d0\uc11c\ub9cc \uce90\ub9ac\uc9c0 \ub9ac\ud134 \uc0ac\uc6a9 {\uae30\ubcf8\uac12\uc740 CR/LF \uc785\ub2c8\ub2e4})]" },
2083:                        {
2084:                                "optionESCAPE",
2085:                                "[-ESCAPE (\uc5d0\uc2a4\ucf00\uc774\ud504\ud560 \ubb38\uc790 {\uae30\ubcf8\uac12\uc740 <>&\"\'\\r\\n \uc785\ub2c8\ub2e4}]" },
2086:                        {
2087:                                "optionINDENT",
2088:                                "[-INDENT (\ub4e4\uc5ec\uc4f0\uae30\ud560 \uacf5\ubc31 \uc218 \uc81c\uc5b4 {\uae30\ubcf8\uac12\uc740 0 \uc785\ub2c8\ub2e4})]" },
2089:                        {
2090:                                "optionTT",
2091:                                "[-TT (\ud15c\ud50c\ub9ac\ud2b8 \ud638\ucd9c \uc2dc \ud15c\ud50c\ub9ac\ud2b8 \ucd94\uc801.)]" },
2092:                        { "optionTG",
2093:                                "[-TG (\uac01 \uc0dd\uc131 \uc774\ubca4\ud2b8 \ucd94\uc801.)]" },
2094:                        { "optionTS",
2095:                                "[-TS (\uac01 \uc120\ud0dd \uc774\ubca4\ud2b8 \ucd94\uc801.)]" },
2096:                        {
2097:                                "optionTTC",
2098:                                "[-TTC (\ud558\uc704 \ud15c\ud50c\ub9ac\ud2b8 \ucc98\ub9ac \uc2dc \ud558\uc704 \ud15c\ud50c\ub9ac\ud2b8 \ucd94\uc801.)]" },
2099:                        {
2100:                                "optionTCLASS",
2101:                                "[-TCLASS (\ucd94\uc801 \ud655\uc7a5\uc790\uc5d0 \ub300\ud55c TraceListener \ud074\ub798\uc2a4.)]" },
2102:                        {
2103:                                "optionVALIDATE",
2104:                                "[-VALIDATE (\uc720\ud6a8\uc131 \uac80\uc99d \ubc1c\uc0dd \uc5ec\ubd80 \uc124\uc815.  \uae30\ubcf8\uc801\uc73c\ub85c\ub294 \uc720\ud6a8\uc131 \uac80\uc99d\uc774 off\ub85c \uc124\uc815\ub428.)]" },
2105:                        { "optionEDUMP",
2106:                                "[-EDUMP {optional filename} (\uc624\ub958 \uc2dc stackdump \uc218\ud589.)]" },
2107:                        {
2108:                                "optionXML",
2109:                                "[-XML (XML \ud3ec\ub9f7\ud130\ub97c \uc0ac\uc6a9\ud558\uace0 XML \uba38\ub9ac\uae00 \ucd94\uac00.)]" },
2110:                        { "optionTEXT",
2111:                                "[-TEXT (\ub2e8\uc21c \ud14d\uc2a4\ud2b8 \ud3ec\ub9f7\ud130 \uc0ac\uc6a9.)]" },
2112:                        { "optionHTML",
2113:                                "[-HTML (HTML \ud3ec\ub9f7\ud130 \uc0ac\uc6a9.)]" },
2114:                        {
2115:                                "optionPARAM",
2116:                                "[-PARAM name expression (\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub9e4\uac1c\ubcc0\uc218 \uc124\uc815)]" },
2117:                        { "noParsermsg1",
2118:                                "XSL \ud504\ub85c\uc138\uc2a4\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4." },
2119:                        { "noParsermsg2",
2120:                                "** \uad6c\ubb38 \ubd84\uc11d\uae30\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc74c **" },
2121:                        { "noParsermsg3",
2122:                                "\ud074\ub798\uc2a4 \uacbd\ub85c\ub97c \uc810\uac80\ud558\uc2ed\uc2dc\uc624." },
2123:                        { "noParsermsg4",
2124:                                "Java\uc6a9 IBM XML \uad6c\ubb38 \ubd84\uc11d\uae30\uac00 \uc5c6\uc73c\uba74" },
2125:                        {
2126:                                "noParsermsg5",
2127:                                "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml \uc5d0\uc11c \ub2e4\uc6b4\ub85c\ub4dc \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4." },
2128:                        {
2129:                                "optionURIRESOLVER",
2130:                                "[-URIRESOLVER full class name (URIResolver\ub97c \uc0ac\uc6a9\ud558\uc5ec URI \ubd84\uc11d)]" },
2131:                        {
2132:                                "optionENTITYRESOLVER",
2133:                                "[-ENTITYRESOLVER full class name (EntityResolver\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc5d4\ud2f0\ud2f0 \ubd84\uc11d)]" },
2134:                        {
2135:                                "optionCONTENTHANDLER",
2136:                                "[-CONTENTHANDLER full class name (ContentHandler\ub97c \uc0ac\uc6a9\ud558\uc5ec \ucd9c\ub825 \uc9c1\ub82c\ud654)]" },
2137:                        { "optionLINENUMBERS",
2138:                                "[-L \uc18c\uc2a4 \ubb38\uc11c\uc5d0 \ud589 \ubc88\ud638 \uc0ac\uc6a9]" },
2139:
2140:                        // Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
2141:
2142:                        {
2143:                                "optionMEDIA",
2144:                                "   [-MEDIA mediaType(\ub9e4\uccb4 \uc18d\uc131\uc744 \uc0ac\uc6a9\ud558\uc5ec \ubb38\uc11c\uc640 \uc5f0\uad00\ub41c \uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ucc3e\uae30.)]" },
2145:                        {
2146:                                "optionFLAVOR",
2147:                                "   [-FLAVOR flavorName(\uba85\uc2dc\uc801\uc73c\ub85c s2s=SAX \ub610\ub294 d2d=DOM\uc744 \uc0ac\uc6a9\ud558\uc5ec \ubcc0\ud658 \uc218\ud589.)] " }, // Added by sboag/scurcuru; experimental
2148:                        {
2149:                                "optionDIAG",
2150:                                "   [-DIAG(\ubcc0\ud658\uc5d0 \uc18c\uc694\ub41c \uc804\uccb4 \ubc00\ub9ac\ucd08 \uc778\uc1c4.)]" },
2151:                        {
2152:                                "optionINCREMENTAL",
2153:                                "   [-INCREMENTAL(http://xml.apache.org/xalan/features/incremental\uc744 true\ub85c \uc124\uc815\ud558\uc5ec \uc99d\ubd84 DTM \uad6c\uc131 \uc694\uccad.)]" },
2154:                        {
2155:                                "optionNOOPTIMIMIZE",
2156:                                "   [-NOOPTIMIMIZE(http://xml.apache.org/xalan/features/optimize\ub97c false\ub85c \uc124\uc815\ud558\uc5ec \uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ucd5c\uc801\ud654 \ucc98\ub9ac\ub97c \uc694\uccad \uc548\ud568.)]" },
2157:                        {
2158:                                "optionRL",
2159:                                "   [-RL recursionlimit(\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ubc18\ubcf5 \uc815\ub3c4\uc5d0 \ub300\ud55c \uc22b\uc790 \ud55c\uacc4 \ub2e8\uc5b8.)]" },
2160:                        {
2161:                                "optionXO",
2162:                                "[-XO [transletName](\uc0dd\uc131\ub41c translet\uc5d0 \uc774\ub984 \uc9c0\uc815)]" },
2163:                        {
2164:                                "optionXD",
2165:                                "[-XD destinationDirectory(translet\uc5d0 \ub300\ud574 \ub300\uc0c1 \ub514\ub809\ud1a0\ub9ac \uc9c0\uc815)]" },
2166:                        {
2167:                                "optionXJ",
2168:                                "[-XJ jarfile(\uc774\ub984\uc774 <jarfile>\uc778 jar \ud30c\uc77c\ub85c translet \ud074\ub798\uc2a4 \ud328\ud0a4\uc9c0)]" },
2169:                        {
2170:                                "optionXP",
2171:                                "[-XP package(\uc0dd\uc131\ub41c \ubaa8\ub4e0 translet \ud074\ub798\uc2a4\uc5d0 \ub300\ud574 \ud328\ud0a4\uc9c0 \uc774\ub984 \uc811\ub450\ubd80 \uc9c0\uc815)]" },
2172:
2173:                        //AddITIONAL  STRINGS that need L10n
2174:                        // Note to translators:  The following message describes usage of a particular
2175:                        // command-line option that is used to enable the "template inlining"
2176:                        // optimization.  The optimization involves making a copy of the code
2177:                        // generated for a template in another template that refers to it.
2178:                        {
2179:                                "optionXN",
2180:                                "[-XN(\ud15c\ud50c\ub9ac\ud2b8 \uc778\ub77c\uc774\ub2dd \uc0ac\uc6a9 \uac00\ub2a5)]" },
2181:                        {
2182:                                "optionXX",
2183:                                "[-XX(\ucd94\uac00 \ub514\ubc84\uae45 \uba54\uc2dc\uc9c0 \ucd9c\ub825 \ucf1c\uae30)]" },
2184:                        {
2185:                                "optionXT",
2186:                                "[-XT(\uac00\ub2a5\ud55c \uacbd\uc6b0, translet\uc744 \uc0ac\uc6a9\ud558\uc5ec \ubcc0\ud658)]" },
2187:                        {
2188:                                "diagTiming",
2189:                                "--------- {1}\uc744(\ub97c) \ud1b5\ud55c {0} \ubcc0\ud658\uc5d0 {2}ms\uac00 \uc18c\uc694\ub418\uc5c8\uc74c" },
2190:                        {
2191:                                "recursionTooDeep",
2192:                                "\ud15c\ud50c\ub9ac\ud2b8 \uc911\ucca9\uc774 \ub108\ubb34 \ub9ce\uc2b5\ub2c8\ub2e4. \uc911\ucca9 = {0}, \ud15c\ud50c\ub9ac\ud2b8 {1} {2}" },
2193:                        { "nameIs", "\uc774\ub984\uc740" },
2194:                        { "matchPatternIs", "\uc77c\uce58 \ud328\ud134\uc740" }
2195:
2196:                };
2197:            }
2198:
2199:            // ================= INFRASTRUCTURE ======================
2200:
2201:            /** String for use when a bad error code was encountered.    */
2202:            public static final String BAD_CODE = "BAD_CODE";
2203:
2204:            /** String for use when formatting of the error string failed.   */
2205:            public static final String FORMAT_FAILED = "FORMAT_FAILED";
2206:
2207:            /** General error string.   */
2208:            public static final String ERROR_STRING = "#error";
2209:
2210:            /** String to prepend to error messages.  */
2211:            public static final String ERROR_HEADER = "\uc624\ub958: ";
2212:
2213:            /** String to prepend to warning messages.    */
2214:            public static final String WARNING_HEADER = "\uacbd\uace0: ";
2215:
2216:            /** String to specify the XSLT module.  */
2217:            public static final String XSL_HEADER = "XSLT ";
2218:
2219:            /** String to specify the XML parser module.  */
2220:            public static final String XML_HEADER = "XML ";
2221:
2222:            /** I don't think this is used any more.
2223:             * @deprecated  */
2224:            public static final String QUERY_HEADER = "PATTERN ";
2225:
2226:            /**
2227:             *   Return a named ResourceBundle for a particular locale.  This method mimics the behavior
2228:             *   of ResourceBundle.getBundle().
2229:             *
2230:             *   @param className the name of the class that implements the resource bundle.
2231:             *   @return the ResourceBundle
2232:             *   @throws MissingResourceException
2233:             */
2234:            public static final XSLTErrorResources loadResourceBundle(
2235:                    String className) throws MissingResourceException {
2236:
2237:                Locale locale = Locale.getDefault();
2238:                String suffix = getResourceSuffix(locale);
2239:
2240:                try {
2241:
2242:                    // first try with the given locale
2243:                    return (XSLTErrorResources) ResourceBundle.getBundle(
2244:                            className + suffix, locale);
2245:                } catch (MissingResourceException e) {
2246:                    try // try to fall back to en_US if we can't load
2247:                    {
2248:
2249:                        // Since we can't find the localized property file,
2250:                        // fall back to en_US.
2251:                        return (XSLTErrorResources) ResourceBundle.getBundle(
2252:                                className, new Locale("ko", "KR"));
2253:                    } catch (MissingResourceException e2) {
2254:
2255:                        // Now we are really in trouble.
2256:                        // very bad, definitely very bad...not going to get very far
2257:                        throw new MissingResourceException(
2258:                                "Could not load any resource bundles.",
2259:                                className, "");
2260:                    }
2261:                }
2262:            }
2263:
2264:            /**
2265:             * Return the resource file suffic for the indicated locale
2266:             * For most locales, this will be based the language code.  However
2267:             * for Chinese, we do distinguish between Taiwan and PRC
2268:             *
2269:             * @param locale the locale
2270:             * @return an String suffix which canbe appended to a resource name
2271:             */
2272:            private static final String getResourceSuffix(Locale locale) {
2273:
2274:                String suffix = "_" + locale.getLanguage();
2275:                String country = locale.getCountry();
2276:
2277:                if (country.equals("TW"))
2278:                    suffix += "_" + country;
2279:
2280:                return suffix;
2281:            }
2282:
2283:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.