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: XPATHErrorResources_ko.java,v 1.10 2005/01/23 01:39:54 mcnamara Exp $
0018: */
0019: package org.apache.xpath.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 Static string constant for the
0031: * Key and update the contents array with Key, Value pair
0032: * Also you need to update the count of messages(MAX_CODE)or
0033: * the count of warnings(MAX_WARNING) [ Information purpose only]
0034: * @xsl.usage advanced
0035: */
0036: public class XPATHErrorResources_ko extends ListResourceBundle {
0037:
0038: /*
0039: * General notes to translators:
0040: *
0041: * This file contains error and warning messages related to XPath Error
0042: * Handling.
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: * 8) The context node is the node in the document with respect to which an
0075: * XPath expression is being evaluated.
0076: *
0077: * 9) An iterator is an object that traverses nodes in the tree, one at a time.
0078: *
0079: * 10) NCName is an XML term used to describe a name that does not contain a
0080: * colon (a "no-colon name").
0081: *
0082: * 11) QName is an XML term meaning "qualified name".
0083: */
0084:
0085: /** Field MAX_CODE */
0086: public static final int MAX_CODE = 108; // this is needed to keep track of the number of messages
0087:
0088: /** Field MAX_WARNING */
0089: public static final int MAX_WARNING = 11; // this is needed to keep track of the number of warnings
0090:
0091: /** Field MAX_OTHERS */
0092: public static final int MAX_OTHERS = 20;
0093:
0094: /** Field MAX_MESSAGES */
0095: public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
0096:
0097: /*
0098: * static variables
0099: */
0100: public static final String ERROR0000 = "ERROR0000";
0101: public static final String ER_CURRENT_NOT_ALLOWED_IN_MATCH = "ER_CURRENT_NOT_ALLOWED_IN_MATCH";
0102: public static final String ER_CURRENT_TAKES_NO_ARGS = "ER_CURRENT_TAKES_NO_ARGS";
0103: public static final String ER_DOCUMENT_REPLACED = "ER_DOCUMENT_REPLACED";
0104: public static final String ER_CONTEXT_HAS_NO_OWNERDOC = "ER_CONTEXT_HAS_NO_OWNERDOC";
0105: public static final String ER_LOCALNAME_HAS_TOO_MANY_ARGS = "ER_LOCALNAME_HAS_TOO_MANY_ARGS";
0106: public static final String ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = "ER_NAMESPACEURI_HAS_TOO_MANY_ARGS";
0107: public static final String ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = "ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS";
0108: public static final String ER_NUMBER_HAS_TOO_MANY_ARGS = "ER_NUMBER_HAS_TOO_MANY_ARGS";
0109: public static final String ER_NAME_HAS_TOO_MANY_ARGS = "ER_NAME_HAS_TOO_MANY_ARGS";
0110: public static final String ER_STRING_HAS_TOO_MANY_ARGS = "ER_STRING_HAS_TOO_MANY_ARGS";
0111: public static final String ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = "ER_STRINGLENGTH_HAS_TOO_MANY_ARGS";
0112: public static final String ER_TRANSLATE_TAKES_3_ARGS = "ER_TRANSLATE_TAKES_3_ARGS";
0113: public static final String ER_UNPARSEDENTITYURI_TAKES_1_ARG = "ER_UNPARSEDENTITYURI_TAKES_1_ARG";
0114: public static final String ER_NAMESPACEAXIS_NOT_IMPLEMENTED = "ER_NAMESPACEAXIS_NOT_IMPLEMENTED";
0115: public static final String ER_UNKNOWN_AXIS = "ER_UNKNOWN_AXIS";
0116: public static final String ER_UNKNOWN_MATCH_OPERATION = "ER_UNKNOWN_MATCH_OPERATION";
0117: public static final String ER_INCORRECT_ARG_LENGTH = "ER_INCORRECT_ARG_LENGTH";
0118: public static final String ER_CANT_CONVERT_TO_NUMBER = "ER_CANT_CONVERT_TO_NUMBER";
0119: public static final String ER_CANT_CONVERT_TO_NODELIST = "ER_CANT_CONVERT_TO_NODELIST";
0120: public static final String ER_CANT_CONVERT_TO_MUTABLENODELIST = "ER_CANT_CONVERT_TO_MUTABLENODELIST";
0121: public static final String ER_CANT_CONVERT_TO_TYPE = "ER_CANT_CONVERT_TO_TYPE";
0122: public static final String ER_EXPECTED_MATCH_PATTERN = "ER_EXPECTED_MATCH_PATTERN";
0123: public static final String ER_COULDNOT_GET_VAR_NAMED = "ER_COULDNOT_GET_VAR_NAMED";
0124: public static final String ER_UNKNOWN_OPCODE = "ER_UNKNOWN_OPCODE";
0125: public static final String ER_EXTRA_ILLEGAL_TOKENS = "ER_EXTRA_ILLEGAL_TOKENS";
0126: public static final String ER_EXPECTED_DOUBLE_QUOTE = "ER_EXPECTED_DOUBLE_QUOTE";
0127: public static final String ER_EXPECTED_SINGLE_QUOTE = "ER_EXPECTED_SINGLE_QUOTE";
0128: public static final String ER_EMPTY_EXPRESSION = "ER_EMPTY_EXPRESSION";
0129: public static final String ER_EXPECTED_BUT_FOUND = "ER_EXPECTED_BUT_FOUND";
0130: public static final String ER_INCORRECT_PROGRAMMER_ASSERTION = "ER_INCORRECT_PROGRAMMER_ASSERTION";
0131: public static final String ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = "ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL";
0132: public static final String ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = "ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG";
0133: public static final String ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = "ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG";
0134: public static final String ER_PREDICATE_ILLEGAL_SYNTAX = "ER_PREDICATE_ILLEGAL_SYNTAX";
0135: public static final String ER_ILLEGAL_AXIS_NAME = "ER_ILLEGAL_AXIS_NAME";
0136: public static final String ER_UNKNOWN_NODETYPE = "ER_UNKNOWN_NODETYPE";
0137: public static final String ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = "ER_PATTERN_LITERAL_NEEDS_BE_QUOTED";
0138: public static final String ER_COULDNOT_BE_FORMATTED_TO_NUMBER = "ER_COULDNOT_BE_FORMATTED_TO_NUMBER";
0139: public static final String ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = "ER_COULDNOT_CREATE_XMLPROCESSORLIAISON";
0140: public static final String ER_DIDNOT_FIND_XPATH_SELECT_EXP = "ER_DIDNOT_FIND_XPATH_SELECT_EXP";
0141: public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH";
0142: public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED";
0143: public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE";
0144: public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED";
0145: public static final String ER_KEY_HAS_TOO_MANY_ARGS = "ER_KEY_HAS_TOO_MANY_ARGS";
0146: public static final String ER_COUNT_TAKES_1_ARG = "ER_COUNT_TAKES_1_ARG";
0147: public static final String ER_COULDNOT_FIND_FUNCTION = "ER_COULDNOT_FIND_FUNCTION";
0148: public static final String ER_UNSUPPORTED_ENCODING = "ER_UNSUPPORTED_ENCODING";
0149: public static final String ER_PROBLEM_IN_DTM_NEXTSIBLING = "ER_PROBLEM_IN_DTM_NEXTSIBLING";
0150: public static final String ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = "ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL";
0151: public static final String ER_SETDOMFACTORY_NOT_SUPPORTED = "ER_SETDOMFACTORY_NOT_SUPPORTED";
0152: public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE";
0153: public static final String ER_PARSE_NOT_SUPPORTED = "ER_PARSE_NOT_SUPPORTED";
0154: //public static final String ER_CREATEDOCUMENT_NOT_SUPPORTED =
0155: // "ER_CREATEDOCUMENT_NOT_SUPPORTED";
0156: //public static final String ER_CHILD_HAS_NO_OWNER_DOCUMENT =
0157: // "ER_CHILD_HAS_NO_OWNER_DOCUMENT";
0158: //public static final String ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT =
0159: // "ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT";
0160: public static final String ER_SAX_API_NOT_HANDLED = "ER_SAX_API_NOT_HANDLED";
0161: public static final String ER_IGNORABLE_WHITESPACE_NOT_HANDLED = "ER_IGNORABLE_WHITESPACE_NOT_HANDLED";
0162: public static final String ER_DTM_CANNOT_HANDLE_NODES = "ER_DTM_CANNOT_HANDLE_NODES";
0163: public static final String ER_XERCES_CANNOT_HANDLE_NODES = "ER_XERCES_CANNOT_HANDLE_NODES";
0164: public static final String ER_XERCES_PARSE_ERROR_DETAILS = "ER_XERCES_PARSE_ERROR_DETAILS";
0165: public static final String ER_XERCES_PARSE_ERROR = "ER_XERCES_PARSE_ERROR";
0166: //public static final String ER_CANT_OUTPUT_TEXT_BEFORE_DOC =
0167: // "ER_CANT_OUTPUT_TEXT_BEFORE_DOC";
0168: //public static final String ER_CANT_HAVE_MORE_THAN_ONE_ROOT =
0169: // "ER_CANT_HAVE_MORE_THAN_ONE_ROOT";
0170: public static final String ER_INVALID_UTF16_SURROGATE = "ER_INVALID_UTF16_SURROGATE";
0171: public static final String ER_OIERROR = "ER_OIERROR";
0172: public static final String ER_CANNOT_CREATE_URL = "ER_CANNOT_CREATE_URL";
0173: public static final String ER_XPATH_READOBJECT = "ER_XPATH_READOBJECT";
0174: public static final String ER_FUNCTION_TOKEN_NOT_FOUND = "ER_FUNCTION_TOKEN_NOT_FOUND";
0175: //public static final String ER_ARG_LOCALNAME_NULL = "ER_ARG_LOCALNAME_NULL";
0176: public static final String ER_CANNOT_DEAL_XPATH_TYPE = "ER_CANNOT_DEAL_XPATH_TYPE";
0177: public static final String ER_NODESET_NOT_MUTABLE = "ER_NODESET_NOT_MUTABLE";
0178: public static final String ER_NODESETDTM_NOT_MUTABLE = "ER_NODESETDTM_NOT_MUTABLE";
0179: /** Variable not resolvable: */
0180: public static final String ER_VAR_NOT_RESOLVABLE = "ER_VAR_NOT_RESOLVABLE";
0181: /** Null error handler */
0182: public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER";
0183: /** Programmer's assertion: unknown opcode */
0184: public static final String ER_PROG_ASSERT_UNKNOWN_OPCODE = "ER_PROG_ASSERT_UNKNOWN_OPCODE";
0185: /** 0 or 1 */
0186: public static final String ER_ZERO_OR_ONE = "ER_ZERO_OR_ONE";
0187: /** rtf() not supported by XRTreeFragSelectWrapper */
0188: public static final String ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = "ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
0189: /** asNodeIterator() not supported by XRTreeFragSelectWrapper */
0190: public static final String ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = "ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
0191: /** fsb() not supported for XStringForChars */
0192: public static final String ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = "ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS";
0193: /** Could not find variable with the name of */
0194: public static final String ER_COULD_NOT_FIND_VAR = "ER_COULD_NOT_FIND_VAR";
0195: /** XStringForChars can not take a string for an argument */
0196: public static final String ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = "ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING";
0197: /** The FastStringBuffer argument can not be null */
0198: public static final String ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = "ER_FASTSTRINGBUFFER_CANNOT_BE_NULL";
0199: /** 2 or 3 */
0200: public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE";
0201: /** Variable accessed before it is bound! */
0202: public static final String ER_VARIABLE_ACCESSED_BEFORE_BIND = "ER_VARIABLE_ACCESSED_BEFORE_BIND";
0203: /** XStringForFSB can not take a string for an argument! */
0204: public static final String ER_FSB_CANNOT_TAKE_STRING = "ER_FSB_CANNOT_TAKE_STRING";
0205: /** Error! Setting the root of a walker to null! */
0206: public static final String ER_SETTING_WALKER_ROOT_TO_NULL = "ER_SETTING_WALKER_ROOT_TO_NULL";
0207: /** This NodeSetDTM can not iterate to a previous node! */
0208: public static final String ER_NODESETDTM_CANNOT_ITERATE = "ER_NODESETDTM_CANNOT_ITERATE";
0209: /** This NodeSet can not iterate to a previous node! */
0210: public static final String ER_NODESET_CANNOT_ITERATE = "ER_NODESET_CANNOT_ITERATE";
0211: /** This NodeSetDTM can not do indexing or counting functions! */
0212: public static final String ER_NODESETDTM_CANNOT_INDEX = "ER_NODESETDTM_CANNOT_INDEX";
0213: /** This NodeSet can not do indexing or counting functions! */
0214: public static final String ER_NODESET_CANNOT_INDEX = "ER_NODESET_CANNOT_INDEX";
0215: /** Can not call setShouldCacheNodes after nextNode has been called! */
0216: public static final String ER_CANNOT_CALL_SETSHOULDCACHENODE = "ER_CANNOT_CALL_SETSHOULDCACHENODE";
0217: /** {0} only allows {1} arguments */
0218: public static final String ER_ONLY_ALLOWS = "ER_ONLY_ALLOWS";
0219: /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
0220: public static final String ER_UNKNOWN_STEP = "ER_UNKNOWN_STEP";
0221: /** Problem with RelativeLocationPath */
0222: public static final String ER_EXPECTED_REL_LOC_PATH = "ER_EXPECTED_REL_LOC_PATH";
0223: /** Problem with LocationPath */
0224: public static final String ER_EXPECTED_LOC_PATH = "ER_EXPECTED_LOC_PATH";
0225: /** Problem with Step */
0226: public static final String ER_EXPECTED_LOC_STEP = "ER_EXPECTED_LOC_STEP";
0227: /** Problem with NodeTest */
0228: public static final String ER_EXPECTED_NODE_TEST = "ER_EXPECTED_NODE_TEST";
0229: /** Expected step pattern */
0230: public static final String ER_EXPECTED_STEP_PATTERN = "ER_EXPECTED_STEP_PATTERN";
0231: /** Expected relative path pattern */
0232: public static final String ER_EXPECTED_REL_PATH_PATTERN = "ER_EXPECTED_REL_PATH_PATTERN";
0233: /** localname in QNAME should be a valid NCName */
0234: //public static final String ER_ARG_LOCALNAME_INVALID =
0235: // "ER_ARG_LOCALNAME_INVALID";
0236: /** prefix in QNAME should be a valid NCName */
0237: //public static final String ER_ARG_PREFIX_INVALID = "ER_ARG_PREFIX_INVALID";
0238: /** Field ER_CANT_CONVERT_TO_BOOLEAN */
0239: public static final String ER_CANT_CONVERT_TO_BOOLEAN = "ER_CANT_CONVERT_TO_BOOLEAN";
0240: /** Field ER_CANT_CONVERT_TO_SINGLENODE */
0241: public static final String ER_CANT_CONVERT_TO_SINGLENODE = "ER_CANT_CONVERT_TO_SINGLENODE";
0242: /** Field ER_CANT_GET_SNAPSHOT_LENGTH */
0243: public static final String ER_CANT_GET_SNAPSHOT_LENGTH = "ER_CANT_GET_SNAPSHOT_LENGTH";
0244: /** Field ER_NON_ITERATOR_TYPE */
0245: public static final String ER_NON_ITERATOR_TYPE = "ER_NON_ITERATOR_TYPE";
0246: /** Field ER_DOC_MUTATED */
0247: public static final String ER_DOC_MUTATED = "ER_DOC_MUTATED";
0248: public static final String ER_INVALID_XPATH_TYPE = "ER_INVALID_XPATH_TYPE";
0249: public static final String ER_EMPTY_XPATH_RESULT = "ER_EMPTY_XPATH_RESULT";
0250: public static final String ER_INCOMPATIBLE_TYPES = "ER_INCOMPATIBLE_TYPES";
0251: public static final String ER_NULL_RESOLVER = "ER_NULL_RESOLVER";
0252: public static final String ER_CANT_CONVERT_TO_STRING = "ER_CANT_CONVERT_TO_STRING";
0253: public static final String ER_NON_SNAPSHOT_TYPE = "ER_NON_SNAPSHOT_TYPE";
0254: public static final String ER_WRONG_DOCUMENT = "ER_WRONG_DOCUMENT";
0255: /* Note to translators: The XPath expression cannot be evaluated with respect
0256: * to this type of node.
0257: */
0258: /** Field ER_WRONG_NODETYPE */
0259: public static final String ER_WRONG_NODETYPE = "ER_WRONG_NODETYPE";
0260: public static final String ER_XPATH_ERROR = "ER_XPATH_ERROR";
0261:
0262: public static final String WG_LOCALE_NAME_NOT_HANDLED = "WG_LOCALE_NAME_NOT_HANDLED";
0263: public static final String WG_PROPERTY_NOT_SUPPORTED = "WG_PROPERTY_NOT_SUPPORTED";
0264: public static final String WG_DONT_DO_ANYTHING_WITH_NS = "WG_DONT_DO_ANYTHING_WITH_NS";
0265: public static final String WG_SECURITY_EXCEPTION = "WG_SECURITY_EXCEPTION";
0266: public static final String WG_QUO_NO_LONGER_DEFINED = "WG_QUO_NO_LONGER_DEFINED";
0267: public static final String WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = "WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST";
0268: public static final String WG_FUNCTION_TOKEN_NOT_FOUND = "WG_FUNCTION_TOKEN_NOT_FOUND";
0269: public static final String WG_COULDNOT_FIND_FUNCTION = "WG_COULDNOT_FIND_FUNCTION";
0270: public static final String WG_CANNOT_MAKE_URL_FROM = "WG_CANNOT_MAKE_URL_FROM";
0271: public static final String WG_EXPAND_ENTITIES_NOT_SUPPORTED = "WG_EXPAND_ENTITIES_NOT_SUPPORTED";
0272: public static final String WG_ILLEGAL_VARIABLE_REFERENCE = "WG_ILLEGAL_VARIABLE_REFERENCE";
0273: public static final String WG_UNSUPPORTED_ENCODING = "WG_UNSUPPORTED_ENCODING";
0274:
0275: // Error messages...
0276:
0277: /**
0278: * Get the association list.
0279: *
0280: * @return The association list.
0281: */
0282: public Object[][] getContents() {
0283: return new Object[][] {
0284:
0285: /** Field ERROR0000 */
0286:
0287: // public static final int ERROR0000 = 0;
0288: { "ERROR0000", "{0}" },
0289:
0290: /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH */
0291: // public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
0292: {
0293: ER_CURRENT_NOT_ALLOWED_IN_MATCH,
0294: "\uc77c\uce58 \ud328\ud134\uc5d0\uc11c current() \ud568\uc218\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0295:
0296: /** Field ER_CURRENT_TAKES_NO_ARGS */
0297: //public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
0298: {
0299: ER_CURRENT_TAKES_NO_ARGS,
0300: "current() \ud568\uc218\uac00 \uc778\uc218\ub97c \uc2b9\uc778\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0301:
0302: /** Field ER_DOCUMENT_REPLACED */
0303: // public static final int ER_DOCUMENT_REPLACED = 3;
0304: {
0305: ER_DOCUMENT_REPLACED,
0306: "document() \ud568\uc218 \uad6c\ud604\uc774 org.apache.xalan.xslt.FuncDocument\ub85c \ubc14\ub00c\uc5c8\uc2b5\ub2c8\ub2e4!" },
0307:
0308: /** Field ER_CONTEXT_HAS_NO_OWNERDOC */
0309: // public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
0310: {
0311: ER_CONTEXT_HAS_NO_OWNERDOC,
0312: "\ubb38\ub9e5\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0313:
0314: /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS */
0315: // public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
0316: {
0317: ER_LOCALNAME_HAS_TOO_MANY_ARGS,
0318: "local-name()\uc774 \ub108\ubb34 \ub9ce\uc740 \uc778\uc218\ub97c \uac00\uc9d1\ub2c8\ub2e4." },
0319:
0320: /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS */
0321: //public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
0322: {
0323: ER_NAMESPACEURI_HAS_TOO_MANY_ARGS,
0324: "namespace-uri()\uac00 \ub108\ubb34 \ub9ce\uc740 \uc778\uc218\ub97c \uac00\uc9d1\ub2c8\ub2e4." },
0325:
0326: /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS */
0327: // public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
0328: {
0329: ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS,
0330: "normalize-space()\uac00 \ub108\ubb34 \ub9ce\uc740 \uc778\uc218\ub97c \uac00\uc9d1\ub2c8\ub2e4." },
0331:
0332: /** Field ER_NUMBER_HAS_TOO_MANY_ARGS */
0333: // public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
0334: {
0335: ER_NUMBER_HAS_TOO_MANY_ARGS,
0336: "number()\uac00 \ub108\ubb34 \ub9ce\uc740 \uc778\uc218\ub97c \uac00\uc9d1\ub2c8\ub2e4." },
0337:
0338: /** Field ER_NAME_HAS_TOO_MANY_ARGS */
0339: // public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
0340: {
0341: ER_NAME_HAS_TOO_MANY_ARGS,
0342: "name()\uc774 \ub108\ubb34 \ub9ce\uc740 \uc778\uc218\ub97c \uac00\uc9d1\ub2c8\ub2e4." },
0343:
0344: /** Field ER_STRING_HAS_TOO_MANY_ARGS */
0345: // public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
0346: {
0347: ER_STRING_HAS_TOO_MANY_ARGS,
0348: "string()\uc774 \ub108\ubb34 \ub9ce\uc740 \uc778\uc218\ub97c \uac00\uc9d1\ub2c8\ub2e4." },
0349:
0350: /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS */
0351: // public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
0352: {
0353: ER_STRINGLENGTH_HAS_TOO_MANY_ARGS,
0354: "string-length()\uac00 \ub108\ubb34 \ub9ce\uc740 \uc778\uc218\ub97c \uac00\uc9d1\ub2c8\ub2e4." },
0355:
0356: /** Field ER_TRANSLATE_TAKES_3_ARGS */
0357: // public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
0358: {
0359: ER_TRANSLATE_TAKES_3_ARGS,
0360: "translate() \ud568\uc218\uac00 \uc138 \uac1c\uc758 \uc778\uc218\ub97c \ucde8\ud569\ub2c8\ub2e4!" },
0361:
0362: /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG */
0363: // public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
0364: {
0365: ER_UNPARSEDENTITYURI_TAKES_1_ARG,
0366: "unparsed-entity-uri \ud568\uc218\ub294 \ud558\ub098\uc758 \uc778\uc218\ub97c \ucde8\ud574\uc57c \ud569\ub2c8\ub2e4!" },
0367:
0368: /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED */
0369: // public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
0370: {
0371: ER_NAMESPACEAXIS_NOT_IMPLEMENTED,
0372: "\uc774\ub984 \uacf5\uac04 \ucd95\uc774 \uc544\uc9c1 \uad6c\ud604\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4!" },
0373:
0374: /** Field ER_UNKNOWN_AXIS */
0375: // public static final int ER_UNKNOWN_AXIS = 15;
0376: { ER_UNKNOWN_AXIS,
0377: "\uc54c \uc218 \uc5c6\ub294 \ucd95: {0}" },
0378:
0379: /** Field ER_UNKNOWN_MATCH_OPERATION */
0380: // public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
0381: { ER_UNKNOWN_MATCH_OPERATION,
0382: "\uc54c \uc218 \uc5c6\ub294 \uc77c\uce58 \uc870\uc791\uc785\ub2c8\ub2e4!" },
0383:
0384: /** Field ER_INCORRECT_ARG_LENGTH */
0385: // public static final int ER_INCORRECT_ARG_LENGTH = 17;
0386: {
0387: ER_INCORRECT_ARG_LENGTH,
0388: "processing-instruction() node \ud14c\uc2a4\ud2b8\uc758 \uc778\uc218 \uae38\uc774\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0389:
0390: /** Field ER_CANT_CONVERT_TO_NUMBER */
0391: // public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
0392: {
0393: ER_CANT_CONVERT_TO_NUMBER,
0394: "{0}\uc744(\ub97c) \uc22b\uc790\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0395:
0396: /** Field ER_CANT_CONVERT_TO_NODELIST */
0397: //public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
0398: {
0399: ER_CANT_CONVERT_TO_NODELIST,
0400: "{0}\uc744(\ub97c) NodeList\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0401:
0402: /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST */
0403: // public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
0404: {
0405: ER_CANT_CONVERT_TO_MUTABLENODELIST,
0406: "{0}\uc744(\ub97c) NodeSetDTM\uc73c\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0407:
0408: /** Field ER_CANT_CONVERT_TO_TYPE */
0409: // public static final int ER_CANT_CONVERT_TO_TYPE = 21;
0410: {
0411: ER_CANT_CONVERT_TO_TYPE,
0412: "{0}\uc744(\ub97c) \uc720\ud615 \ubc88\ud638 {1}(\uc73c)\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0413:
0414: /** Field ER_EXPECTED_MATCH_PATTERN */
0415: // public static final int ER_EXPECTED_MATCH_PATTERN = 22;
0416: {
0417: ER_EXPECTED_MATCH_PATTERN,
0418: "getMatchScore\uc5d0\uc11c \ud328\ud134\uc774 \uc77c\uce58\ud560 \uac83\uc774\ub77c \uc608\uc0c1\ud588\uc2b5\ub2c8\ub2e4!" },
0419:
0420: /** Field ER_COULDNOT_GET_VAR_NAMED */
0421: // public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
0422: {
0423: ER_COULDNOT_GET_VAR_NAMED,
0424: "\uc774\ub984\uc774 {0}\uc778 \ubcc0\uc218\ub97c \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0425:
0426: /** Field ER_UNKNOWN_OPCODE */
0427: // public static final int ER_UNKNOWN_OPCODE = 24;
0428: { ER_UNKNOWN_OPCODE,
0429: "\uc624\ub958! \uc54c \uc218 \uc5c6\ub294 op \ucf54\ub4dc: {0}" },
0430:
0431: /** Field ER_EXTRA_ILLEGAL_TOKENS */
0432: // public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
0433: { ER_EXTRA_ILLEGAL_TOKENS,
0434: "\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \ucd94\uac00 \ud1a0\ud070: {0}" },
0435:
0436: /** Field ER_EXPECTED_DOUBLE_QUOTE */
0437: // public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
0438: {
0439: ER_EXPECTED_DOUBLE_QUOTE,
0440: "\ub530\uc634\ud45c\uac00 \ud2c0\ub9b0 \ub9ac\ud130\ub7f4... \ud070 \ub530\uc634\ud45c\ub97c \uc608\uc0c1\ud588\uc2b5\ub2c8\ub2e4!" },
0441:
0442: /** Field ER_EXPECTED_SINGLE_QUOTE */
0443: // public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
0444: {
0445: ER_EXPECTED_SINGLE_QUOTE,
0446: "\ub530\uc634\ud45c\uac00 \ud2c0\ub9b0 \ub9ac\ud130\ub7f4... \uc791\uc740 \ub530\uc634\ud45c\ub97c \uc608\uc0c1\ud588\uc2b5\ub2c8\ub2e4!" },
0447:
0448: /** Field ER_EMPTY_EXPRESSION */
0449: // public static final int ER_EMPTY_EXPRESSION = 28;
0450: { ER_EMPTY_EXPRESSION, "\ube48 \ud45c\ud604\uc2dd!" },
0451:
0452: /** Field ER_EXPECTED_BUT_FOUND */
0453: // public static final int ER_EXPECTED_BUT_FOUND = 29;
0454: {
0455: ER_EXPECTED_BUT_FOUND,
0456: "{0}\uc744(\ub97c) \uc608\uc0c1\ud588\uc73c\ub098 {1}\uc774(\uac00) \ubc1c\uacac\ub428" },
0457:
0458: /** Field ER_INCORRECT_PROGRAMMER_ASSERTION */
0459: // public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
0460: {
0461: ER_INCORRECT_PROGRAMMER_ASSERTION,
0462: "\ud504\ub85c\uadf8\ub798\uba38 \ub2e8\uc5b8\ubb38\uc774 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! - {0}" },
0463:
0464: /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL */
0465: // public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
0466: {
0467: ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL,
0468: "19990709 XPath \ucd08\uc548\uc5d0\uc11c\ub294 \ubd80\uc6b8(...) \uc778\uc218\uac00 \ub354 \uc774\uc0c1 \uc120\ud0dd\uc801\uc774\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0469:
0470: /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG */
0471: // public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
0472: {
0473: ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG,
0474: "','\ub97c \ubc1c\uacac\ud588\uc73c\ub098 \uadf8 \uc55e\uc5d0 \uc5b4\ub5a0\ud55c \uc778\uc218\ub3c4 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0475:
0476: /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG */
0477: // public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
0478: {
0479: ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG,
0480: "','\ub97c \ubc1c\uacac\ud588\uc73c\ub098 \ub4a4\uc5d0 \uc5b4\ub5a0\ud55c \uc778\uc218\ub3c4 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0481:
0482: /** Field ER_PREDICATE_ILLEGAL_SYNTAX */
0483: // public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
0484: {
0485: ER_PREDICATE_ILLEGAL_SYNTAX,
0486: "'..[predicate]' \ub610\ub294 '.[predicate]'\ub294 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uad6c\ubb38\uc785\ub2c8\ub2e4. \ub300\uc2e0 'self::node()[predicate]'\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624." },
0487:
0488: /** Field ER_ILLEGAL_AXIS_NAME */
0489: // public static final int ER_ILLEGAL_AXIS_NAME = 35;
0490: { ER_ILLEGAL_AXIS_NAME,
0491: "\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \ucd95 \uc774\ub984: {0}" },
0492:
0493: /** Field ER_UNKNOWN_NODETYPE */
0494: // public static final int ER_UNKNOWN_NODETYPE = 36;
0495: { ER_UNKNOWN_NODETYPE,
0496: "\uc54c \uc218 \uc5c6\ub294 \ub178\ub4dc \uc720\ud615: {0}" },
0497:
0498: /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED */
0499: // public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
0500: {
0501: ER_PATTERN_LITERAL_NEEDS_BE_QUOTED,
0502: "\ud328\ud134 \ub9ac\ud130\ub7f4({0})\uc740 \ub530\uc634\ud45c\uac00 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4!" },
0503:
0504: /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER */
0505: // public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
0506: {
0507: ER_COULDNOT_BE_FORMATTED_TO_NUMBER,
0508: "{0}\uc740(\ub294) \uc22b\uc790\ub85c \ud3ec\ub9f7\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0509:
0510: /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON */
0511: // public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
0512: {
0513: ER_COULDNOT_CREATE_XMLPROCESSORLIAISON,
0514: "XML TransformerFactory Liaison\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
0515:
0516: /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP */
0517: // public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
0518: {
0519: ER_DIDNOT_FIND_XPATH_SELECT_EXP,
0520: "\uc624\ub958! xpath \uc120\ud0dd \ud45c\ud604\uc2dd(-select)\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0521:
0522: /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH */
0523: // public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
0524: {
0525: ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH,
0526: "\uc624\ub958! OP_LOCATIONPATH \ub4a4\uc5d0 ENDOP\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0527:
0528: /** Field ER_ERROR_OCCURED */
0529: // public static final int ER_ERROR_OCCURED = 42;
0530: { ER_ERROR_OCCURED,
0531: "\uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4!" },
0532:
0533: /** Field ER_ILLEGAL_VARIABLE_REFERENCE */
0534: // public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
0535: {
0536: ER_ILLEGAL_VARIABLE_REFERENCE,
0537: "\ubcc0\uc218\uc5d0 \ub300\ud574 \uc8fc\uc5b4\uc9c4 VariableReference\uac00 \ubc94\uc704\ub97c \ubc97\uc5b4\ub0ac\uac70\ub098 \uc815\uc758\uac00 \uc5c6\uc2b5\ub2c8\ub2e4! \uc774\ub984 = {0}" },
0538:
0539: /** Field ER_AXES_NOT_ALLOWED */
0540: // public static final int ER_AXES_NOT_ALLOWED = 44;
0541: {
0542: ER_AXES_NOT_ALLOWED,
0543: "\ud558\uc704:: \ubc0f \uc18d\uc131:: \ucd95\ub9cc \ud328\ud134\uc5d0 \uc77c\uce58\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4! \uc704\ubc18 \ucd95 = {0}" },
0544:
0545: /** Field ER_KEY_HAS_TOO_MANY_ARGS */
0546: // public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
0547: {
0548: ER_KEY_HAS_TOO_MANY_ARGS,
0549: "key()\uc758 \uc778\uc218 \uc218\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0550:
0551: /** Field ER_COUNT_TAKES_1_ARG */
0552: // public static final int ER_COUNT_TAKES_1_ARG = 46;
0553: {
0554: ER_COUNT_TAKES_1_ARG,
0555: "count \ud568\uc218\ub294 \ud558\ub098\uc758 \uc778\uc218\ub97c \ucde8\ud574\uc57c \ud569\ub2c8\ub2e4!" },
0556:
0557: /** Field ER_COULDNOT_FIND_FUNCTION */
0558: // public static final int ER_COULDNOT_FIND_FUNCTION = 47;
0559: { ER_COULDNOT_FIND_FUNCTION,
0560: "\ud568\uc218\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
0561:
0562: /** Field ER_UNSUPPORTED_ENCODING */
0563: // public static final int ER_UNSUPPORTED_ENCODING = 48;
0564: { ER_UNSUPPORTED_ENCODING,
0565: "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\ub294 \uc778\ucf54\ub529: {0}" },
0566:
0567: /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING */
0568: // public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
0569: {
0570: ER_PROBLEM_IN_DTM_NEXTSIBLING,
0571: "getNextSibling\uc758 DTM\uc5d0 \ubb38\uc81c\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4... \ubcf5\uad6c \uc2dc\ub3c4 \uc911" },
0572:
0573: /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL */
0574: // public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
0575: {
0576: ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL,
0577: "\ud504\ub85c\uadf8\ub798\uba38 \uc624\ub958: EmptyNodeList\ub97c \uc4f8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0578:
0579: /** Field ER_SETDOMFACTORY_NOT_SUPPORTED */
0580: // public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
0581: {
0582: ER_SETDOMFACTORY_NOT_SUPPORTED,
0583: "XPathContext\uc5d0\uc11c setDOMFactory\ub97c \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0584:
0585: /** Field ER_PREFIX_MUST_RESOLVE */
0586: // public static final int ER_PREFIX_MUST_RESOLVE = 52;
0587: {
0588: ER_PREFIX_MUST_RESOLVE,
0589: "\uc811\ub450\ubd80\ub294 \uc774\ub984 \uacf5\uac04\uc73c\ub85c \ubd84\uc11d\ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4: {0}" },
0590:
0591: /** Field ER_PARSE_NOT_SUPPORTED */
0592: // public static final int ER_PARSE_NOT_SUPPORTED = 53;
0593: {
0594: ER_PARSE_NOT_SUPPORTED,
0595: "XPathContext\uc5d0\uc11c \uad6c\ubb38 \ubd84\uc11d(InputSource \uc18c\uc2a4)\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! {0}\uc744(\ub97c) \uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0596:
0597: /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED */
0598: // public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
0599: //{ ER_CREATEDOCUMENT_NOT_SUPPORTED,
0600: // "createDocument() not supported in XPathContext!"},
0601: /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT */
0602: // public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
0603: //{ ER_CHILD_HAS_NO_OWNER_DOCUMENT,
0604: // "Attribute child does not have an owner document!"},
0605: /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT */
0606: // public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
0607: //{ ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT,
0608: // "Attribute child does not have an owner document element!"},
0609: /** Field ER_SAX_API_NOT_HANDLED */
0610: // public static final int ER_SAX_API_NOT_HANDLED = 57;
0611: {
0612: ER_SAX_API_NOT_HANDLED,
0613: "SAX API \ubb38\uc790(char ch[]... \uac00 DTM\uc5d0 \uc758\ud574 \ucc98\ub9ac\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0614:
0615: /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED */
0616: //public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
0617: {
0618: ER_IGNORABLE_WHITESPACE_NOT_HANDLED,
0619: "ignorableWhitespace(char ch[]... \uac00 DTM\uc5d0 \uc758\ud574 \ucc98\ub9ac\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!" },
0620:
0621: /** Field ER_DTM_CANNOT_HANDLE_NODES */
0622: // public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
0623: {
0624: ER_DTM_CANNOT_HANDLE_NODES,
0625: "DTMLiaison\uc774 {0} \uc720\ud615\uc758 \ub178\ub4dc\ub97c \ucc98\ub9ac\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0626:
0627: /** Field ER_XERCES_CANNOT_HANDLE_NODES */
0628: // public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
0629: {
0630: ER_XERCES_CANNOT_HANDLE_NODES,
0631: "DOM2Helper\uac00 {0} \uc720\ud615\uc758 \ub178\ub4dc\ub97c \ucc98\ub9ac\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0632:
0633: /** Field ER_XERCES_PARSE_ERROR_DETAILS */
0634: // public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
0635: { ER_XERCES_PARSE_ERROR_DETAILS,
0636: "DOM2Helper.parse \uc624\ub958: \uc2dc\uc2a4\ud15c ID - {0} \ud68c\uc120 - {1}" },
0637:
0638: /** Field ER_XERCES_PARSE_ERROR */
0639: // public static final int ER_XERCES_PARSE_ERROR = 62;
0640: { ER_XERCES_PARSE_ERROR,
0641: "DOM2Helper.parse \uc624\ub958" },
0642:
0643: /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC */
0644: // public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
0645: //{ ER_CANT_OUTPUT_TEXT_BEFORE_DOC,
0646: // "Warning: can't output text before document element! Ignoring..."},
0647: /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT */
0648: // public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
0649: //{ ER_CANT_HAVE_MORE_THAN_ONE_ROOT,
0650: // "Can't have more than one root on a DOM!"},
0651: /** Field ER_INVALID_UTF16_SURROGATE */
0652: // public static final int ER_INVALID_UTF16_SURROGATE = 65;
0653: {
0654: ER_INVALID_UTF16_SURROGATE,
0655: "\uc798\ubabb\ub41c UTF-16 \ub300\ub9ac\uc790(surrogate)\uac00 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0} ?" },
0656:
0657: /** Field ER_OIERROR */
0658: //public static final int ER_OIERROR = 66;
0659: { ER_OIERROR, "IO \uc624\ub958" },
0660:
0661: /** Field ER_CANNOT_CREATE_URL */
0662: //public static final int ER_CANNOT_CREATE_URL = 67;
0663: { ER_CANNOT_CREATE_URL,
0664: "url\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
0665:
0666: /** Field ER_XPATH_READOBJECT */
0667: // public static final int ER_XPATH_READOBJECT = 68;
0668: { ER_XPATH_READOBJECT, "XPath.readObject\uc758 {0}" },
0669:
0670: /** Field ER_FUNCTION_TOKEN_NOT_FOUND */
0671: // public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
0672: { ER_FUNCTION_TOKEN_NOT_FOUND,
0673: "\ud568\uc218 \ud1a0\ud070\uc774 \uc5c6\uc2b5\ub2c8\ub2e4." },
0674:
0675: /** Argument 'localName' is null */
0676: // public static final int ER_ARG_LOCALNAME_NULL = 70;
0677: //{ ER_ARG_LOCALNAME_NULL,
0678: // "Argument 'localName' is null"},
0679: /** Can not deal with XPath type: */
0680: // public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
0681: {
0682: ER_CANNOT_DEAL_XPATH_TYPE,
0683: "XPath \uc720\ud615\uc744 \ucc98\ub9ac\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
0684:
0685: /** This NodeSet is not mutable */
0686: // public static final int ER_NODESET_NOT_MUTABLE = 72;
0687: { ER_NODESET_NOT_MUTABLE,
0688: "\uc774 NodeSet\uac00 \uac00\ubcc0\uc801\uc774\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0689:
0690: /** This NodeSetDTM is not mutable */
0691: // public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
0692: {
0693: ER_NODESETDTM_NOT_MUTABLE,
0694: "\uc774 NodeSetDTM\uc774 \uac00\ubcc0\uc801\uc774\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0695:
0696: /** Variable not resolvable: */
0697: // public static final int ER_VAR_NOT_RESOLVABLE = 74;
0698: { ER_VAR_NOT_RESOLVABLE,
0699: "\ubcc0\uc218\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
0700:
0701: /** Null error handler */
0702: // public static final int ER_NULL_ERROR_HANDLER = 75;
0703: { ER_NULL_ERROR_HANDLER,
0704: "\ub110(null) \uc624\ub958 \ud578\ub4e4\ub7ec" },
0705:
0706: /** Programmer's assertion: unknown opcode */
0707: // public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
0708: {
0709: ER_PROG_ASSERT_UNKNOWN_OPCODE,
0710: "\ud504\ub85c\uadf8\ub798\uba38\uc758 \ub2e8\uc5b8\ubb38: \uc54c \uc218 \uc5c6\ub294 op \ucf54\ub4dc: {0}" },
0711:
0712: /** 0 or 1 */
0713: // public static final int ER_ZERO_OR_ONE = 77;
0714: { ER_ZERO_OR_ONE, "0 \ub610\ub294 1" },
0715:
0716: /** rtf() not supported by XRTreeFragSelectWrapper */
0717: //public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
0718: {
0719: ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
0720: "XRTreeFragSelectWrapper\uc5d0\uc11c rtf()\ub97c \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0721:
0722: /** asNodeIterator() not supported by XRTreeFragSelectWrapper */
0723: //public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
0724: {
0725: ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
0726: "XRTreeFragSelectWrapper\uc5d0\uc11c asNodeIterator()\ub97c \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0727:
0728: /** fsb() not supported for XStringForChars */
0729: // public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
0730: {
0731: ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS,
0732: "XStringForChars\uc5d0 \ub300\ud574 fsb()\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0733:
0734: /** Could not find variable with the name of */
0735: // public static final int ER_COULD_NOT_FIND_VAR = 81;
0736: {
0737: ER_COULD_NOT_FIND_VAR,
0738: "\uc774\ub984\uc774 {0}\uc778 \ubcc0\uc218\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0739:
0740: /** XStringForChars can not take a string for an argument */
0741: // public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
0742: {
0743: ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING,
0744: "XStringForChars\ub294 \uc778\uc218\ub85c \ubb38\uc790\uc5f4\uc744 \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0745:
0746: /** The FastStringBuffer argument can not be null */
0747: // public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
0748: {
0749: ER_FASTSTRINGBUFFER_CANNOT_BE_NULL,
0750: "FastStringBuffer \uc778\uc218\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0751:
0752: /* MANTIS_XALAN CHANGE: BEGIN */
0753: /** 2 or 3 */
0754: // public static final int ER_TWO_OR_THREE = 84;
0755: { ER_TWO_OR_THREE, "2 \ub610\ub294 3" },
0756:
0757: /** Variable accessed before it is bound! */
0758: // public static final int ER_VARIABLE_ACCESSED_BEFORE_BIND = 85;
0759: {
0760: ER_VARIABLE_ACCESSED_BEFORE_BIND,
0761: "\ubcc0\uc218\uac00 \ubc14\uc778\ub4dc\ub418\uae30 \uc804\uc5d0 \ubcc0\uc218\uc5d0 \uc561\uc138\uc2a4\ud588\uc2b5\ub2c8\ub2e4!" },
0762:
0763: /** XStringForFSB can not take a string for an argument! */
0764: // public static final int ER_FSB_CANNOT_TAKE_STRING = 86;
0765: {
0766: ER_FSB_CANNOT_TAKE_STRING,
0767: "XStringForFSB\ub294 \uc778\uc218\ub85c \ubb38\uc790\uc5f4\uc744 \ucde8\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0768:
0769: /** Error! Setting the root of a walker to null! */
0770: // public static final int ER_SETTING_WALKER_ROOT_TO_NULL = 87;
0771: {
0772: ER_SETTING_WALKER_ROOT_TO_NULL,
0773: "\n !!!! \uc624\ub958! \uc6cc\ucee4\uc758 \ub8e8\ud2b8\ub85c \ub110(null)\uc774 \uc124\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4!!!" },
0774:
0775: /** This NodeSetDTM can not iterate to a previous node! */
0776: // public static final int ER_NODESETDTM_CANNOT_ITERATE = 88;
0777: {
0778: ER_NODESETDTM_CANNOT_ITERATE,
0779: "\uc774 NodeSetDTM\uc740 \uc774\uc804 \ub178\ub4dc\ub85c \ubc18\ubcf5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0780:
0781: /** This NodeSet can not iterate to a previous node! */
0782: // public static final int ER_NODESET_CANNOT_ITERATE = 89;
0783: {
0784: ER_NODESET_CANNOT_ITERATE,
0785: "\uc774 NodeSet\ub294 \uc774\uc804 \ub178\ub4dc\ub85c \ubc18\ubcf5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0786:
0787: /** This NodeSetDTM can not do indexing or counting functions! */
0788: // public static final int ER_NODESETDTM_CANNOT_INDEX = 90;
0789: {
0790: ER_NODESETDTM_CANNOT_INDEX,
0791: "\uc774 NodeSetDTM\uc740 \uc0c9\uc778 \ub610\ub294 \uce74\uc6b4\ud305 \ud568\uc218\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0792:
0793: /** This NodeSet can not do indexing or counting functions! */
0794: // public static final int ER_NODESET_CANNOT_INDEX = 91;
0795: {
0796: ER_NODESET_CANNOT_INDEX,
0797: "\uc774 NodeSet\ub294 \uc0c9\uc778 \ub610\ub294 \uce74\uc6b4\ud305 \ud568\uc218\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0798:
0799: /** Can not call setShouldCacheNodes after nextNode has been called! */
0800: // public static final int ER_CANNOT_CALL_SETSHOULDCACHENODE = 92;
0801: {
0802: ER_CANNOT_CALL_SETSHOULDCACHENODE,
0803: "nextNode\uac00 \ud638\ucd9c\ub41c \ud6c4\uc5d0 setShouldCacheNodes\ub97c \ud638\ucd9c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!" },
0804:
0805: /** {0} only allows {1} arguments */
0806: // public static final int ER_ONLY_ALLOWS = 93;
0807: {
0808: ER_ONLY_ALLOWS,
0809: "{0}\uc740(\ub294) {1} \uc778\uc218\ub9cc\uc744 \ud5c8\uc6a9\ud569\ub2c8\ub2e4." },
0810:
0811: /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
0812: // public static final int ER_UNKNOWN_STEP = 94;
0813: {
0814: ER_UNKNOWN_STEP,
0815: "getNextStepPos\uc5d0 \ud504\ub85c\uadf8\ub798\uba38\uc758 \ub2e8\uc5b8\ubb38: \uc54c \uc218 \uc5c6\ub294 stepType: {0}" },
0816:
0817: //Note to translators: A relative location path is a form of XPath expression.
0818: // The message indicates that such an expression was expected following the
0819: // characters '/' or '//', but was not found.
0820:
0821: /** Problem with RelativeLocationPath */
0822: // public static final int ER_EXPECTED_REL_LOC_PATH = 95;
0823: {
0824: ER_EXPECTED_REL_LOC_PATH,
0825: "\uad00\ub828 \uc704\uce58 \uacbd\ub85c\uac00 \ub2e4\uc74c\uc758 '/' \ub610\ub294 '//' \ud1a0\ud070\uc744 \uc608\uc0c1\ud588\uc2b5\ub2c8\ub2e4." },
0826:
0827: // Note to translators: A location path is a form of XPath expression.
0828: // The message indicates that syntactically such an expression was expected,but
0829: // the characters specified by the substitution text were encountered instead.
0830:
0831: /** Problem with LocationPath */
0832: // public static final int ER_EXPECTED_LOC_PATH = 96;
0833: {
0834: ER_EXPECTED_LOC_PATH,
0835: "\uc704\uce58 \uacbd\ub85c\uac00 \uc608\uc0c1\ub418\uc5c8\uc9c0\ub9cc \ub2e4\uc74c \ud1a0\ud070\uc774 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4\u003a {0}" },
0836:
0837: // Note to translators: A location step is part of an XPath expression.
0838: // The message indicates that syntactically such an expression was expected
0839: // following the specified characters.
0840:
0841: /** Problem with Step */
0842: // public static final int ER_EXPECTED_LOC_STEP = 97;
0843: {
0844: ER_EXPECTED_LOC_STEP,
0845: "\uc704\uce58 \ub2e8\uacc4\uac00 \ub2e4\uc74c\uc758 '/' \ub610\ub294 '//' \ud1a0\ud070\uc744 \uc608\uc0c1\ud588\uc2b5\ub2c8\ub2e4." },
0846:
0847: // Note to translators: A node test is part of an XPath expression that is
0848: // used to test for particular kinds of nodes. In this case, a node test that
0849: // consists of an NCName followed by a colon and an asterisk or that consists
0850: // of a QName was expected, but was not found.
0851:
0852: /** Problem with NodeTest */
0853: // public static final int ER_EXPECTED_NODE_TEST = 98;
0854: {
0855: ER_EXPECTED_NODE_TEST,
0856: "NCName:* \ub610\ub294 QName\uacfc \uc77c\uce58\ud558\ub294 \ub178\ub4dc \ud14c\uc2a4\ud2b8\uac00 \uc608\uc0c1\ub418\uc5c8\uc2b5\ub2c8\ub2e4." },
0857:
0858: // Note to translators: A step pattern is part of an XPath expression.
0859: // The message indicates that syntactically such an expression was expected,
0860: // but the specified character was found in the expression instead.
0861:
0862: /** Expected step pattern */
0863: // public static final int ER_EXPECTED_STEP_PATTERN = 99;
0864: {
0865: ER_EXPECTED_STEP_PATTERN,
0866: "\ub2e8\uacc4 \ud328\ud134\uc774 \uc608\uc0c1\ub418\uc5c8\uc9c0\ub9cc '/'\uac00 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4." },
0867:
0868: // Note to translators: A relative path pattern is part of an XPath expression.
0869: // The message indicates that syntactically such an expression was expected,
0870: // but was not found.
0871:
0872: /** Expected relative path pattern */
0873: // public static final int ER_EXPECTED_REL_PATH_PATTERN = 100;
0874: {
0875: ER_EXPECTED_REL_PATH_PATTERN,
0876: "\uad00\ub828 \uacbd\ub85c \ud328\ud134\uc774 \uc608\uc0c1\ub418\uc5c8\uc2b5\ub2c8\ub2e4." },
0877:
0878: // Note to translators: A QNAME has the syntactic form [NCName:]NCName
0879: // The localname is the portion after the optional colon; the message indicates
0880: // that there is a problem with that part of the QNAME.
0881:
0882: /** localname in QNAME should be a valid NCName */
0883: // public static final int ER_ARG_LOCALNAME_INVALID = 101;
0884: //{ ER_ARG_LOCALNAME_INVALID,
0885: // "Localname in QNAME should be a valid NCName"},
0886: // Note to translators: A QNAME has the syntactic form [NCName:]NCName
0887: // The prefix is the portion before the optional colon; the message indicates
0888: // that there is a problem with that part of the QNAME.
0889: /** prefix in QNAME should be a valid NCName */
0890: // public static final int ER_ARG_PREFIX_INVALID = 102;
0891: //{ ER_ARG_PREFIX_INVALID,
0892: // "Prefix in QNAME should be a valid NCName"},
0893: // Note to translators: The substitution text is the name of a data type. The
0894: // message indicates that a value of a particular type could not be converted
0895: // to a value of type string.
0896: /** Field ER_CANT_CONVERT_TO_BOOLEAN */
0897: // public static final int ER_CANT_CONVERT_TO_BOOLEAN = 103;
0898: {
0899: ER_CANT_CONVERT_TO_BOOLEAN,
0900: "{0}\uc744(\ub97c) \ubd80\uc6b8\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0901:
0902: // Note to translators: Do not translate ANY_UNORDERED_NODE_TYPE and
0903: // FIRST_ORDERED_NODE_TYPE.
0904:
0905: /** Field ER_CANT_CONVERT_TO_SINGLENODE */
0906: //public static final int ER_CANT_CONVERT_TO_SINGLENODE = 104;
0907: {
0908: ER_CANT_CONVERT_TO_SINGLENODE,
0909: "{0}\uc744(\ub97c) \ub2e8\uc77c \ub178\ub4dc\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c getter \uc740 ANY_UNORDERED_NODE_TYPE \ubc0f FIRST_ORDERED_NODE_TYPE \uc720\ud615\uc5d0 \uc801\uc6a9\ub429\ub2c8\ub2e4." },
0910:
0911: // Note to translators: Do not translate UNORDERED_NODE_SNAPSHOT_TYPE and
0912: // ORDERED_NODE_SNAPSHOT_TYPE.
0913:
0914: /** Field ER_CANT_GET_SNAPSHOT_LENGTH */
0915: // public static final int ER_CANT_GET_SNAPSHOT_LENGTH = 105;
0916: {
0917: ER_CANT_GET_SNAPSHOT_LENGTH,
0918: "{0} \uc720\ud615\uc5d0 \ub300\ud55c \uc2a4\ub0c5\uc0f7 \uae38\uc774\ub97c \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c getter \uc740 UNORDERED_NODE_SNAPSHOT_TYPE \ubc0f ORDERED_NODE_SNAPSHOT_TYPE \uc720\ud615\uc5d0 \uc801\uc6a9\ub429\ub2c8\ub2e4." },
0919:
0920: /** Field ER_NON_ITERATOR_TYPE */
0921: //public static final int ER_NON_ITERATOR_TYPE = 106;
0922: {
0923: ER_NON_ITERATOR_TYPE,
0924: "\ube44 \ubc18\ubcf5\uae30 \uc720\ud615 {0}\uc5d0 \ub300\ud574 \ubc18\ubcf5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0925:
0926: // Note to translators: This message indicates that the document being operated
0927: // upon changed, so the iterator object that was being used to traverse the
0928: // document has now become invalid.
0929:
0930: /** Field ER_DOC_MUTATED */
0931: // public static final int ER_DOC_MUTATED = 107;
0932: {
0933: ER_DOC_MUTATED,
0934: "\uacb0\uacfc\uac00 \ub9ac\ud134\ub418\uc5c8\uc73c\ubbc0\ub85c \ubb38\uc11c\uac00 \ubcc0\uacbd\ub429\ub2c8\ub2e4. \ubc18\ubcf5\uae30\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0935:
0936: /** Field ER_INVALID_XPATH_TYPE */
0937: // public static final int ER_INVALID_XPATH_TYPE = 108;
0938: { ER_INVALID_XPATH_TYPE,
0939: "\uc798\ubabb\ub41c XPath \uc720\ud615 \uc778\uc218: {0}" },
0940:
0941: /** Field ER_EMPTY_XPATH_RESULT */
0942: // public static final int ER_EMPTY_XPATH_RESULT = 109;
0943: { ER_EMPTY_XPATH_RESULT,
0944: "\ube44\uc5b4 \uc788\ub294 XPath result \uc624\ube0c\uc81d\ud2b8" },
0945:
0946: /** Field ER_INCOMPATIBLE_TYPES */
0947: // public static final int ER_INCOMPATIBLE_TYPES = 110;
0948: {
0949: ER_INCOMPATIBLE_TYPES,
0950: "\ub9ac\ud134\ub41c \uc720\ud615 {0}\uc740(\ub294) \uc9c0\uc815\ub41c \uc720\ud615 {1}(\uc73c)\ub85c \uac15\uc81c \uc9c0\uc815\ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0951:
0952: /** Field ER_NULL_RESOLVER */
0953: // public static final int ER_NULL_RESOLVER = 111;
0954: {
0955: ER_NULL_RESOLVER,
0956: "\ub110(null) \uc811\ub450\ubd80 \ubd84\uc11d\uae30\ub85c \uc811\ub450\ubd80\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0957:
0958: // Note to translators: The substitution text is the name of a data type. The
0959: // message indicates that a value of a particular type could not be converted
0960: // to a value of type string.
0961:
0962: /** Field ER_CANT_CONVERT_TO_STRING */
0963: // public static final int ER_CANT_CONVERT_TO_STRING = 112;
0964: {
0965: ER_CANT_CONVERT_TO_STRING,
0966: "{0}\uc744(\ub97c) \ubb38\uc790\uc5f4\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
0967:
0968: // Note to translators: Do not translate snapshotItem,
0969: // UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.
0970:
0971: /** Field ER_NON_SNAPSHOT_TYPE */
0972: // public static final int ER_NON_SNAPSHOT_TYPE = 113;
0973: {
0974: ER_NON_SNAPSHOT_TYPE,
0975: "{0} \uc720\ud615\uc5d0 \ub300\ud55c snapshotItem\uc744 \ud638\ucd9c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ubc29\ubc95\uc740 UNORDERED_NODE_SNAPSHOT_TYPE \ubc0f ORDERED_NODE_SNAPSHOT_TYPE \uc720\ud615\uc5d0 \uc801\uc6a9\ub429\ub2c8\ub2e4." },
0976:
0977: // Note to translators: XPathEvaluator is a Java interface name. An
0978: // XPathEvaluator is created with respect to a particular XML document, and in
0979: // this case the expression represented by this object was being evaluated with
0980: // respect to a context node from a different document.
0981:
0982: /** Field ER_WRONG_DOCUMENT */
0983: // public static final int ER_WRONG_DOCUMENT = 114;
0984: {
0985: ER_WRONG_DOCUMENT,
0986: "\ucee8\ud14d\uc2a4\ud2b8 \ub178\ub4dc\ub294 \uc774 XPathEvaluator\ub85c \ubc14\uc778\ub4dc\ub418\ub294 \ubb38\uc11c\uc5d0 \ud3ec\ud568\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0987:
0988: // Note to translators: The XPath expression cannot be evaluated with respect
0989: // to this type of node.
0990: /** Field ER_WRONG_NODETYPE */
0991: // public static final int ER_WRONG_NODETYPE = 115;
0992: {
0993: ER_WRONG_NODETYPE,
0994: "\ucee8\ud14d\uc2a4\ud2b8 \ub178\ub4dc \uc720\ud615\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
0995:
0996: /** Field ER_XPATH_ERROR */
0997: // public static final int ER_XPATH_ERROR = 116;
0998: { ER_XPATH_ERROR,
0999: "XPath\uc758 \uc54c \uc218 \uc5c6\ub294 \uc624\ub958." },
1000:
1001: // Warnings...
1002:
1003: /** Field WG_LOCALE_NAME_NOT_HANDLED */
1004: // public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
1005: {
1006: WG_LOCALE_NAME_NOT_HANDLED,
1007: "format-number \ud568\uc218\uc5d0 \uc788\ub294 \ub85c\ucf00\uc77c \uc774\ub984\uc774 \uc544\uc9c1 \ucc98\ub9ac\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4!" },
1008:
1009: /** Field WG_PROPERTY_NOT_SUPPORTED */
1010: // public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
1011: { WG_PROPERTY_NOT_SUPPORTED,
1012: "XSL \ud2b9\uc131\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}" },
1013:
1014: /** Field WG_DONT_DO_ANYTHING_WITH_NS */
1015: // public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
1016: {
1017: WG_DONT_DO_ANYTHING_WITH_NS,
1018: "\ud2b9\uc131\uc5d0\uc11c {0} \uc774\ub984 \uacf5\uac04\uacfc \uad00\ub828\ud558\uc5ec \ud604\uc7ac \uc544\ubb34\ub7f0 \uc791\uc5c5\ub3c4 \uc218\ud589\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {1}" },
1019:
1020: /** Field WG_SECURITY_EXCEPTION */
1021: // public static final int WG_SECURITY_EXCEPTION = 4;
1022: {
1023: WG_SECURITY_EXCEPTION,
1024: "XSL \uc2dc\uc2a4\ud15c \ud2b9\uc131\uc5d0 \uc561\uc138\uc2a4 \uc2dc\ub3c4 \uc911 SecurityException: {0}" },
1025:
1026: /** Field WG_QUO_NO_LONGER_DEFINED */
1027: // public static final int WG_QUO_NO_LONGER_DEFINED = 5;
1028: {
1029: WG_QUO_NO_LONGER_DEFINED,
1030: "\uc774\uc804 \uad6c\ubb38: quo(...)\uac00 \ub354 \uc774\uc0c1 XPath\uc5d0 \uc815\uc758\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
1031:
1032: /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST */
1033: // public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
1034: {
1035: WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST,
1036: "nodeTest\ub97c \uad6c\ud604\ud558\ub824\uba74 XPath\uc5d0 \ub3c4\ucd9c\ub41c \uc624\ube0c\uc81d\ud2b8\uac00 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4!" },
1037:
1038: /** Field WG_FUNCTION_TOKEN_NOT_FOUND */
1039: // public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
1040: { WG_FUNCTION_TOKEN_NOT_FOUND,
1041: "\ud568\uc218 \ud1a0\ud070\uc774 \uc5c6\uc2b5\ub2c8\ub2e4." },
1042:
1043: /** Field WG_COULDNOT_FIND_FUNCTION */
1044: // public static final int WG_COULDNOT_FIND_FUNCTION = 8;
1045: { WG_COULDNOT_FIND_FUNCTION,
1046: "\ud568\uc218\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}" },
1047:
1048: /** Field WG_CANNOT_MAKE_URL_FROM */
1049: // public static final int WG_CANNOT_MAKE_URL_FROM = 9;
1050: { WG_CANNOT_MAKE_URL_FROM,
1051: "{0}\uc5d0\uc11c URL\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." },
1052:
1053: /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED */
1054: // public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
1055: {
1056: WG_EXPAND_ENTITIES_NOT_SUPPORTED,
1057: "DTM \uad6c\ubb38 \ubd84\uc11d\uae30\uc5d0 \ub300\ud574 -E \uc635\uc158\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." },
1058:
1059: /** Field WG_ILLEGAL_VARIABLE_REFERENCE */
1060: // public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
1061: {
1062: WG_ILLEGAL_VARIABLE_REFERENCE,
1063: "\ubcc0\uc218\uc5d0 \ub300\ud574 \uc8fc\uc5b4\uc9c4 VariableReference\uac00 \ubc94\uc704\ub97c \ubc97\uc5b4\ub0ac\uac70\ub098 \uc815\uc758\uac00 \uc5c6\uc2b5\ub2c8\ub2e4! \uc774\ub984 = {0}" },
1064:
1065: /** Field WG_UNSUPPORTED_ENCODING */
1066: // public static final int WG_UNSUPPORTED_ENCODING = 12;
1067: { WG_UNSUPPORTED_ENCODING,
1068: "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\ub294 \uc778\ucf54\ub529: {0}" },
1069:
1070: // Other miscellaneous text used inside the code...
1071: { "ui_language", "ko" },
1072: { "help_language", "ko" },
1073: { "language", "ko" },
1074: {
1075: "BAD_CODE",
1076: "createMessage\uc5d0 \ub300\ud55c \ub9e4\uac1c\ubcc0\uc218\uac00 \ubc94\uc704\ub97c \ubc97\uc5b4\ub0a8" },
1077: { "FORMAT_FAILED",
1078: "messageFormat \ud638\ucd9c \uc911 \uc608\uc678 \ubc1c\uc0dd" },
1079: { "version", ">>>>>>> Xalan \ubc84\uc804 " },
1080: { "version2", "<<<<<<<" },
1081: { "yes", "\uc608" },
1082: { "line", "\ud589 #" },
1083: { "column", "\uc5f4 #" },
1084: { "xsldone", "XSLProcessor: \uc644\ub8cc" },
1085: { "xpath_option", "xpath \uc635\uc158: " },
1086: { "optionIN", "[-in inputXMLURL]" },
1087: { "optionSelect", "[-select xpath expression]" },
1088: { "optionMatch",
1089: "[-match match pattern (\uc77c\uce58 \uc9c4\ub2e8\uc744 \uc704\ud574)]" },
1090: {
1091: "optionAnyExpr",
1092: "\ub610\ub294 xpath \ud45c\ud604\uc2dd\ub9cc\uc73c\ub85c \uc9c4\ub2e8 \ub364\ud504\uac00 \uc218\ud589\ub420 \uac83\uc785\ub2c8\ub2e4." },
1093: { "noParsermsg1",
1094: "XSL \ud504\ub85c\uc138\uc2a4\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4." },
1095: {
1096: "noParsermsg2",
1097: "** \uad6c\ubb38 \ubd84\uc11d\uae30\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. **" },
1098: { "noParsermsg3",
1099: "\ud074\ub798\uc2a4 \uacbd\ub85c\ub97c \uc810\uac80\ud558\uc2ed\uc2dc\uc624." },
1100: { "noParsermsg4",
1101: "Java\uc6a9 IBM XML \uad6c\ubb38 \ubd84\uc11d\uae30\uac00 \uc5c6\uc73c\uba74" },
1102: {
1103: "noParsermsg5",
1104: "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml \uc5d0\uc11c \ub2e4\uc6b4\ub85c\ub4dc \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4." },
1105: { "gtone", ">1" }, { "zero", "0" }, { "one", "1" },
1106: { "two", "2" }, { "three", "3" }
1107:
1108: };
1109: }
1110:
1111: // ================= INFRASTRUCTURE ======================
1112:
1113: /** Field BAD_CODE */
1114: public static final String BAD_CODE = "BAD_CODE";
1115:
1116: /** Field FORMAT_FAILED */
1117: public static final String FORMAT_FAILED = "FORMAT_FAILED";
1118:
1119: /** Field ERROR_RESOURCES */
1120: public static final String ERROR_RESOURCES = "org.apache.xpath.res.XPATHErrorResources";
1121:
1122: /** Field ERROR_STRING */
1123: public static final String ERROR_STRING = "#error";
1124:
1125: /** Field ERROR_HEADER */
1126: public static final String ERROR_HEADER = "\uc624\ub958: ";
1127:
1128: /** Field WARNING_HEADER */
1129: public static final String WARNING_HEADER = "\uacbd\uace0: ";
1130:
1131: /** Field XSL_HEADER */
1132: public static final String XSL_HEADER = "XSL ";
1133:
1134: /** Field XML_HEADER */
1135: public static final String XML_HEADER = "XML ";
1136:
1137: /** Field QUERY_HEADER */
1138: public static final String QUERY_HEADER = "PATTERN ";
1139:
1140: /**
1141: * Return a named ResourceBundle for a particular locale. This method mimics the behavior
1142: * of ResourceBundle.getBundle().
1143: *
1144: * @param className Name of local-specific subclass.
1145: * @return the ResourceBundle
1146: * @throws MissingResourceException
1147: */
1148: public static final XPATHErrorResources loadResourceBundle(
1149: String className) throws MissingResourceException {
1150:
1151: Locale locale = Locale.getDefault();
1152: String suffix = getResourceSuffix(locale);
1153:
1154: try {
1155:
1156: // first try with the given locale
1157: return (XPATHErrorResources) ResourceBundle.getBundle(
1158: className + suffix, locale);
1159: } catch (MissingResourceException e) {
1160: try // try to fall back to en_US if we can't load
1161: {
1162:
1163: // Since we can't find the localized property file,
1164: // fall back to en_US.
1165: return (XPATHErrorResources) ResourceBundle.getBundle(
1166: className, new Locale("ko", "KR"));
1167: } catch (MissingResourceException e2) {
1168:
1169: // Now we are really in trouble.
1170: // very bad, definitely very bad...not going to get very far
1171: throw new MissingResourceException(
1172: "Could not load any resource bundles.",
1173: className, "");
1174: }
1175: }
1176: }
1177:
1178: /**
1179: * Return the resource file suffic for the indicated locale
1180: * For most locales, this will be based the language code. However
1181: * for Chinese, we do distinguish between Taiwan and PRC
1182: *
1183: * @param locale the locale
1184: * @return an String suffix which canbe appended to a resource name
1185: */
1186: private static final String getResourceSuffix(Locale locale) {
1187:
1188: String suffix = "_" + locale.getLanguage();
1189: String country = locale.getCountry();
1190:
1191: if (country.equals("TW"))
1192: suffix += "_" + country;
1193:
1194: return suffix;
1195: }
1196:
1197: }
|