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_ja.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_ja 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: "current() \u95a2\u6570\u306f\u30d1\u30bf\u30fc\u30f3\u306e\u30de\u30c3\u30c1\u30f3\u30b0\u3067\u306f\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093!" },
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() \u95a2\u6570\u306f\u5f15\u304d\u6570\u3092\u53d7\u3051\u5165\u308c\u307e\u305b\u3093!" },
0301:
0302: /** Field ER_DOCUMENT_REPLACED */
0303: // public static final int ER_DOCUMENT_REPLACED = 3;
0304: {
0305: ER_DOCUMENT_REPLACED,
0306: "document() \u95a2\u6570\u306e\u30a4\u30f3\u30d7\u30ea\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u304c org.apache.xalan.xslt.FuncDocument \u306b\u3088\u308a\u7f6e\u304d\u63db\u3048\u3089\u308c\u307e\u3057\u305f!" },
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: "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306b\u6240\u6709\u8005\u6587\u66f8\u304c\u3042\u308a\u307e\u305b\u3093!" },
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() \u306e\u5f15\u304d\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002" },
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() \u306e\u5f15\u304d\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002" },
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() \u306e\u5f15\u304d\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002" },
0331:
0332: /** Field ER_NUMBER_HAS_TOO_MANY_ARGS */
0333: // public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
0334: { ER_NUMBER_HAS_TOO_MANY_ARGS,
0335: "number() \u306e\u5f15\u304d\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002" },
0336:
0337: /** Field ER_NAME_HAS_TOO_MANY_ARGS */
0338: // public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
0339: { ER_NAME_HAS_TOO_MANY_ARGS,
0340: "name() \u306e\u5f15\u304d\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002" },
0341:
0342: /** Field ER_STRING_HAS_TOO_MANY_ARGS */
0343: // public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
0344: { ER_STRING_HAS_TOO_MANY_ARGS,
0345: "string() \u306e\u5f15\u304d\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002" },
0346:
0347: /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS */
0348: // public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
0349: {
0350: ER_STRINGLENGTH_HAS_TOO_MANY_ARGS,
0351: "string-length() \u306e\u5f15\u304d\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002" },
0352:
0353: /** Field ER_TRANSLATE_TAKES_3_ARGS */
0354: // public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
0355: {
0356: ER_TRANSLATE_TAKES_3_ARGS,
0357: "translate() \u95a2\u6570\u306f 3 \u500b\u306e\u5f15\u304d\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059!" },
0358:
0359: /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG */
0360: // public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
0361: {
0362: ER_UNPARSEDENTITYURI_TAKES_1_ARG,
0363: "unparsed-entity-uri \u95a2\u6570\u306f\u5f15\u304d\u6570\u3092 1 \u500b\u4f7f\u7528\u3057\u307e\u3059!" },
0364:
0365: /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED */
0366: // public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
0367: {
0368: ER_NAMESPACEAXIS_NOT_IMPLEMENTED,
0369: "namespace axis \u304c\u307e\u3060\u30a4\u30f3\u30d7\u30ea\u30e1\u30f3\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093!" },
0370:
0371: /** Field ER_UNKNOWN_AXIS */
0372: // public static final int ER_UNKNOWN_AXIS = 15;
0373: { ER_UNKNOWN_AXIS, "\u4e0d\u660e\u306a\u8ef8: {0}" },
0374:
0375: /** Field ER_UNKNOWN_MATCH_OPERATION */
0376: // public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
0377: { ER_UNKNOWN_MATCH_OPERATION,
0378: "\u4e0d\u660e\u306e\u30de\u30c3\u30c1\u30f3\u30b0\u64cd\u4f5c!" },
0379:
0380: /** Field ER_INCORRECT_ARG_LENGTH */
0381: // public static final int ER_INCORRECT_ARG_LENGTH = 17;
0382: {
0383: ER_INCORRECT_ARG_LENGTH,
0384: "processing-instruction() \u306e\u30ce\u30fc\u30c9\u30fb\u30c6\u30b9\u30c8\u306e\u5f15\u304d\u6570\u306e\u9577\u3055\u304c\u8aa4\u3063\u3066\u3044\u307e\u3059!" },
0385:
0386: /** Field ER_CANT_CONVERT_TO_NUMBER */
0387: // public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
0388: { ER_CANT_CONVERT_TO_NUMBER,
0389: "{0} \u3092\u6570\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093" },
0390:
0391: /** Field ER_CANT_CONVERT_TO_NODELIST */
0392: //public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
0393: { ER_CANT_CONVERT_TO_NODELIST,
0394: "{0} \u3092 NodeList \u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093!" },
0395:
0396: /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST */
0397: // public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
0398: { ER_CANT_CONVERT_TO_MUTABLENODELIST,
0399: "{0} \u3092 NodeSetDTM \u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093!" },
0400:
0401: /** Field ER_CANT_CONVERT_TO_TYPE */
0402: // public static final int ER_CANT_CONVERT_TO_TYPE = 21;
0403: { ER_CANT_CONVERT_TO_TYPE,
0404: "{0} \u3092 type#{1} \u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093" },
0405:
0406: /** Field ER_EXPECTED_MATCH_PATTERN */
0407: // public static final int ER_EXPECTED_MATCH_PATTERN = 22;
0408: {
0409: ER_EXPECTED_MATCH_PATTERN,
0410: "getMatchScore \u3067\u5fc5\u8981\u306a\u4e00\u81f4\u30d1\u30bf\u30fc\u30f3\u3067\u3059!" },
0411:
0412: /** Field ER_COULDNOT_GET_VAR_NAMED */
0413: // public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
0414: {
0415: ER_COULDNOT_GET_VAR_NAMED,
0416: "{0} \u3068\u3044\u3046\u540d\u524d\u306e\u5909\u6570\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f" },
0417:
0418: /** Field ER_UNKNOWN_OPCODE */
0419: // public static final int ER_UNKNOWN_OPCODE = 24;
0420: { ER_UNKNOWN_OPCODE,
0421: "\u30a8\u30e9\u30fc! \u4e0d\u660e\u306a op \u30b3\u30fc\u30c9: {0}" },
0422:
0423: /** Field ER_EXTRA_ILLEGAL_TOKENS */
0424: // public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
0425: { ER_EXTRA_ILLEGAL_TOKENS,
0426: "\u4f59\u5206\u306e\u6b63\u3057\u304f\u306a\u3044\u30c8\u30fc\u30af\u30f3: {0}" },
0427:
0428: /** Field ER_EXPECTED_DOUBLE_QUOTE */
0429: // public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
0430: {
0431: ER_EXPECTED_DOUBLE_QUOTE,
0432: "\u5f15\u7528\u7b26\u304c\u8aa4\u3063\u3066\u3044\u308b\u30ea\u30c6\u30e9\u30eb... \u4e8c\u91cd\u5f15\u7528\u7b26\u304c\u5fc5\u8981\u3067\u3057\u305f!" },
0433:
0434: /** Field ER_EXPECTED_SINGLE_QUOTE */
0435: // public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
0436: {
0437: ER_EXPECTED_SINGLE_QUOTE,
0438: "\u5f15\u7528\u7b26\u304c\u8aa4\u3063\u3066\u3044\u308b\u30ea\u30c6\u30e9\u30eb... \u5358\u4e00\u5f15\u7528\u7b26\u304c\u5fc5\u8981\u3067\u3057\u305f!" },
0439:
0440: /** Field ER_EMPTY_EXPRESSION */
0441: // public static final int ER_EMPTY_EXPRESSION = 28;
0442: { ER_EMPTY_EXPRESSION,
0443: "\u7a7a\u306e\u5f0f\u3067\u3059!" },
0444:
0445: /** Field ER_EXPECTED_BUT_FOUND */
0446: // public static final int ER_EXPECTED_BUT_FOUND = 29;
0447: {
0448: ER_EXPECTED_BUT_FOUND,
0449: "{0} \u304c\u5fc5\u8981\u3067\u3057\u305f\u304c\u3001{1} \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f" },
0450:
0451: /** Field ER_INCORRECT_PROGRAMMER_ASSERTION */
0452: // public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
0453: {
0454: ER_INCORRECT_PROGRAMMER_ASSERTION,
0455: "\u30d7\u30ed\u30b0\u30e9\u30de\u30fc\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3\u304c\u8aa4\u3063\u3066\u3044\u307e\u3059! - {0}" },
0456:
0457: /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL */
0458: // public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
0459: {
0460: ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL,
0461: "\u30d6\u30fc\u30eb(...) \u5f15\u304d\u6570\u306f 19990709 XPath \u30c9\u30e9\u30d5\u30c8\u3067\u306f\u3082\u3046\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308a\u307e\u305b\u3093\u3002" },
0462:
0463: /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG */
0464: // public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
0465: {
0466: ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG,
0467: "',' \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u3001\u5148\u7acb\u3064\u5f15\u304d\u6570\u304c\u3042\u308a\u307e\u305b\u3093!" },
0468:
0469: /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG */
0470: // public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
0471: {
0472: ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG,
0473: "',' \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u3001\u5f8c\u7d9a\u306e\u5f15\u304d\u6570\u304c\u3042\u308a\u307e\u305b\u3093!" },
0474:
0475: /** Field ER_PREDICATE_ILLEGAL_SYNTAX */
0476: // public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
0477: {
0478: ER_PREDICATE_ILLEGAL_SYNTAX,
0479: "'..[predicate]' \u307e\u305f\u306f '.[predicate]' \u306f\u6b63\u3057\u304f\u306a\u3044\u69cb\u6587\u3067\u3059\u3002 \u4ee3\u308a\u306b 'self::node()[predicate]' \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002" },
0480:
0481: /** Field ER_ILLEGAL_AXIS_NAME */
0482: // public static final int ER_ILLEGAL_AXIS_NAME = 35;
0483: { ER_ILLEGAL_AXIS_NAME,
0484: "\u6b63\u3057\u304f\u306a\u3044\u8ef8\u306e\u540d\u524d: {0}" },
0485:
0486: /** Field ER_UNKNOWN_NODETYPE */
0487: // public static final int ER_UNKNOWN_NODETYPE = 36;
0488: { ER_UNKNOWN_NODETYPE,
0489: "\u4e0d\u660e\u306a\u30ce\u30fc\u30c9\u30fb\u30bf\u30a4\u30d7: {0}" },
0490:
0491: /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED */
0492: // public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
0493: {
0494: ER_PATTERN_LITERAL_NEEDS_BE_QUOTED,
0495: "\u30d1\u30bf\u30fc\u30f3\u30fb\u30ea\u30c6\u30e9\u30eb ({0}) \u306b\u306f\u5f15\u7528\u7b26\u304c\u5fc5\u8981\u3067\u3059!" },
0496:
0497: /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER */
0498: // public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
0499: {
0500: ER_COULDNOT_BE_FORMATTED_TO_NUMBER,
0501: "{0} \u3092\u6570\u306b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f!" },
0502:
0503: /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON */
0504: // public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
0505: {
0506: ER_COULDNOT_CREATE_XMLPROCESSORLIAISON,
0507: "XML TransformerFactory Liaison \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: {0}" },
0508:
0509: /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP */
0510: // public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
0511: {
0512: ER_DIDNOT_FIND_XPATH_SELECT_EXP,
0513: "\u30a8\u30e9\u30fc! xpath select \u5f0f (-select) \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002" },
0514:
0515: /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH */
0516: // public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
0517: {
0518: ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH,
0519: "\u30a8\u30e9\u30fc! OP_LOCATIONPATH \u306e\u5f8c\u306b ENDOP \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f" },
0520:
0521: /** Field ER_ERROR_OCCURED */
0522: // public static final int ER_ERROR_OCCURED = 42;
0523: { ER_ERROR_OCCURED,
0524: "\u30a8\u30e9\u30fc\u304c\u8d77\u3053\u308a\u307e\u3057\u305f!" },
0525:
0526: /** Field ER_ILLEGAL_VARIABLE_REFERENCE */
0527: // public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
0528: {
0529: ER_ILLEGAL_VARIABLE_REFERENCE,
0530: "\u5909\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f VariableReference \u304c\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u5916\u304b\u3001\u5b9a\u7fa9\u306a\u3057\u3067\u3059! \u540d\u524d = {0}" },
0531:
0532: /** Field ER_AXES_NOT_ALLOWED */
0533: // public static final int ER_AXES_NOT_ALLOWED = 44;
0534: {
0535: ER_AXES_NOT_ALLOWED,
0536: "\u30de\u30c3\u30c1\u30f3\u30b0\u30fb\u30d1\u30bf\u30fc\u30f3\u3067\u8a31\u53ef\u3055\u308c\u3066\u3044\u308b\u306e\u306f child:: \u304a\u3088\u3073 attribute:: \u3060\u3051\u3067\u3059! \u554f\u984c\u306e\u8ef8 = {0}" },
0537:
0538: /** Field ER_KEY_HAS_TOO_MANY_ARGS */
0539: // public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
0540: {
0541: ER_KEY_HAS_TOO_MANY_ARGS,
0542: "key() \u306e\u5f15\u304d\u6570\u306e\u6570\u304c\u8aa4\u3063\u3066\u3044\u307e\u3059\u3002" },
0543:
0544: /** Field ER_COUNT_TAKES_1_ARG */
0545: // public static final int ER_COUNT_TAKES_1_ARG = 46;
0546: {
0547: ER_COUNT_TAKES_1_ARG,
0548: "count \u95a2\u6570\u306f\u5f15\u304d\u6570\u3092 1 \u500b\u4f7f\u7528\u3057\u307e\u3059!" },
0549:
0550: /** Field ER_COULDNOT_FIND_FUNCTION */
0551: // public static final int ER_COULDNOT_FIND_FUNCTION = 47;
0552: {
0553: ER_COULDNOT_FIND_FUNCTION,
0554: "\u95a2\u6570: {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f" },
0555:
0556: /** Field ER_UNSUPPORTED_ENCODING */
0557: // public static final int ER_UNSUPPORTED_ENCODING = 48;
0558: {
0559: ER_UNSUPPORTED_ENCODING,
0560: "\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u306a\u3044\u30a8\u30f3\u30b3\u30fc\u30c9: {0}" },
0561:
0562: /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING */
0563: // public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
0564: {
0565: ER_PROBLEM_IN_DTM_NEXTSIBLING,
0566: "\u554f\u984c\u304c getNextSibling \u5185\u306e DTM \u3067\u8d77\u3053\u308a\u307e\u3057\u305f... \u30ea\u30ab\u30d0\u30ea\u30fc\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u307e\u3059" },
0567:
0568: /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL */
0569: // public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
0570: {
0571: ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL,
0572: "\u30d7\u30ed\u30b0\u30e9\u30de\u30fc\u30fb\u30a8\u30e9\u30fc: EmptyNodeList \u3092\u66f8\u304d\u8fbc\u307f\u5148\u306b\u306f\u3067\u304d\u307e\u305b\u3093\u3002" },
0573:
0574: /** Field ER_SETDOMFACTORY_NOT_SUPPORTED */
0575: // public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
0576: {
0577: ER_SETDOMFACTORY_NOT_SUPPORTED,
0578: "setDOMFactory \u306f XPathContext \u306b\u3088\u308a\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093!" },
0579:
0580: /** Field ER_PREFIX_MUST_RESOLVE */
0581: // public static final int ER_PREFIX_MUST_RESOLVE = 52;
0582: {
0583: ER_PREFIX_MUST_RESOLVE,
0584: "\u63a5\u982d\u90e8\u306f\u30cd\u30fc\u30e0\u30fb\u30b9\u30da\u30fc\u30b9\u306b\u89e3\u6c7a\u3055\u308c\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093: {0}" },
0585:
0586: /** Field ER_PARSE_NOT_SUPPORTED */
0587: // public static final int ER_PARSE_NOT_SUPPORTED = 53;
0588: {
0589: ER_PARSE_NOT_SUPPORTED,
0590: "parse (InputSource \u30bd\u30fc\u30b9) \u306f XPathContext \u5185\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093! {0} \u3092\u30aa\u30fc\u30d7\u30f3\u3067\u304d\u307e\u305b\u3093" },
0591:
0592: /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED */
0593: // public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
0594: //{ ER_CREATEDOCUMENT_NOT_SUPPORTED,
0595: // "createDocument() not supported in XPathContext!"},
0596: /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT */
0597: // public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
0598: //{ ER_CHILD_HAS_NO_OWNER_DOCUMENT,
0599: // "Attribute child does not have an owner document!"},
0600: /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT */
0601: // public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
0602: //{ ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT,
0603: // "Attribute child does not have an owner document element!"},
0604: /** Field ER_SAX_API_NOT_HANDLED */
0605: // public static final int ER_SAX_API_NOT_HANDLED = 57;
0606: {
0607: ER_SAX_API_NOT_HANDLED,
0608: "SAX API characters(char ch[]... \u306f DTM \u306b\u3088\u308a\u51e6\u7406\u3055\u308c\u307e\u305b\u3093!" },
0609:
0610: /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED */
0611: //public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
0612: {
0613: ER_IGNORABLE_WHITESPACE_NOT_HANDLED,
0614: "ignorableWhitespace(char ch[]... \u306f DTM \u306b\u3088\u308a\u51e6\u7406\u3055\u308c\u307e\u305b\u3093!" },
0615:
0616: /** Field ER_DTM_CANNOT_HANDLE_NODES */
0617: // public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
0618: {
0619: ER_DTM_CANNOT_HANDLE_NODES,
0620: "DTMLiaison \u306f\u30bf\u30a4\u30d7 {0} \u306e\u30ce\u30fc\u30c9\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093" },
0621:
0622: /** Field ER_XERCES_CANNOT_HANDLE_NODES */
0623: // public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
0624: {
0625: ER_XERCES_CANNOT_HANDLE_NODES,
0626: "DOM2Helper \u306f\u30bf\u30a4\u30d7 {0} \u306e\u30ce\u30fc\u30c9\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093" },
0627:
0628: /** Field ER_XERCES_PARSE_ERROR_DETAILS */
0629: // public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
0630: { ER_XERCES_PARSE_ERROR_DETAILS,
0631: "DOM2Helper.parse \u30a8\u30e9\u30fc: SystemID - {0} \u884c - {1}" },
0632:
0633: /** Field ER_XERCES_PARSE_ERROR */
0634: // public static final int ER_XERCES_PARSE_ERROR = 62;
0635: { ER_XERCES_PARSE_ERROR,
0636: "DOM2Helper.parse \u30a8\u30e9\u30fc" },
0637:
0638: /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC */
0639: // public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
0640: //{ ER_CANT_OUTPUT_TEXT_BEFORE_DOC,
0641: // "Warning: can't output text before document element! Ignoring..."},
0642: /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT */
0643: // public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
0644: //{ ER_CANT_HAVE_MORE_THAN_ONE_ROOT,
0645: // "Can't have more than one root on a DOM!"},
0646: /** Field ER_INVALID_UTF16_SURROGATE */
0647: // public static final int ER_INVALID_UTF16_SURROGATE = 65;
0648: {
0649: ER_INVALID_UTF16_SURROGATE,
0650: "\u7121\u52b9\u306a UTF-16 \u30b5\u30ed\u30b2\u30fc\u30c8\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f: {0} ?" },
0651:
0652: /** Field ER_OIERROR */
0653: //public static final int ER_OIERROR = 66;
0654: { ER_OIERROR, "\u5165\u51fa\u529b\u30a8\u30e9\u30fc" },
0655:
0656: /** Field ER_CANNOT_CREATE_URL */
0657: //public static final int ER_CANNOT_CREATE_URL = 67;
0658: { ER_CANNOT_CREATE_URL,
0659: "{0} \u306e URL \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002" },
0660:
0661: /** Field ER_XPATH_READOBJECT */
0662: // public static final int ER_XPATH_READOBJECT = 68;
0663: { ER_XPATH_READOBJECT, "XPath.readObject \u5185: {0}" },
0664:
0665: /** Field ER_FUNCTION_TOKEN_NOT_FOUND */
0666: // public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
0667: {
0668: ER_FUNCTION_TOKEN_NOT_FOUND,
0669: "\u95a2\u6570\u30c8\u30fc\u30af\u30f3\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002" },
0670:
0671: /** Argument 'localName' is null */
0672: // public static final int ER_ARG_LOCALNAME_NULL = 70;
0673: //{ ER_ARG_LOCALNAME_NULL,
0674: // "Argument 'localName' is null"},
0675: /** Can not deal with XPath type: */
0676: // public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
0677: {
0678: ER_CANNOT_DEAL_XPATH_TYPE,
0679: "XPath \u30bf\u30a4\u30d7: {0} \u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093" },
0680:
0681: /** This NodeSet is not mutable */
0682: // public static final int ER_NODESET_NOT_MUTABLE = 72;
0683: { ER_NODESET_NOT_MUTABLE,
0684: "\u3053\u306e NodeSet \u306f\u53ef\u5909\u3067\u3042\u308a\u307e\u305b\u3093" },
0685:
0686: /** This NodeSetDTM is not mutable */
0687: // public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
0688: {
0689: ER_NODESETDTM_NOT_MUTABLE,
0690: "\u3053\u306e NodeSetDTM \u306f\u53ef\u5909\u3067\u3042\u308a\u307e\u305b\u3093" },
0691:
0692: /** Variable not resolvable: */
0693: // public static final int ER_VAR_NOT_RESOLVABLE = 74;
0694: {
0695: ER_VAR_NOT_RESOLVABLE,
0696: "\u5909\u6570\u306f\u89e3\u6c7a\u53ef\u80fd\u3067\u3042\u308a\u307e\u305b\u3093: {0}" },
0697:
0698: /** Null error handler */
0699: // public static final int ER_NULL_ERROR_HANDLER = 75;
0700: { ER_NULL_ERROR_HANDLER,
0701: "\u30cc\u30eb\u306e\u30a8\u30e9\u30fc\u30fb\u30cf\u30f3\u30c9\u30e9\u30fc" },
0702:
0703: /** Programmer's assertion: unknown opcode */
0704: // public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
0705: {
0706: ER_PROG_ASSERT_UNKNOWN_OPCODE,
0707: "\u30d7\u30ed\u30b0\u30e9\u30de\u30fc\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3: \u4e0d\u660e\u306a\u547d\u4ee4\u30b3\u30fc\u30c9: {0}" },
0708:
0709: /** 0 or 1 */
0710: // public static final int ER_ZERO_OR_ONE = 77;
0711: { ER_ZERO_OR_ONE, "0 \u307e\u305f\u306f 1" },
0712:
0713: /** rtf() not supported by XRTreeFragSelectWrapper */
0714: //public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
0715: {
0716: ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
0717: "rtf() \u306f XRTreeFragSelectWrapper \u306b\u3088\u3063\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093" },
0718:
0719: /** asNodeIterator() not supported by XRTreeFragSelectWrapper */
0720: //public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
0721: {
0722: ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
0723: "asNodeIterator() \u306f XRTreeFragSelectWrapper \u306b\u3088\u3063\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093" },
0724:
0725: /** fsb() not supported for XStringForChars */
0726: // public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
0727: {
0728: ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS,
0729: "fsb() \u306f XStringForChars \u306e\u5834\u5408\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093" },
0730:
0731: /** Could not find variable with the name of */
0732: // public static final int ER_COULD_NOT_FIND_VAR = 81;
0733: {
0734: ER_COULD_NOT_FIND_VAR,
0735: "\u540d\u524d {0} \u3092\u3082\u3064\u5909\u6570\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f" },
0736:
0737: /** XStringForChars can not take a string for an argument */
0738: // public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
0739: {
0740: ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING,
0741: "XStringForChars \u306f\u5f15\u304d\u6570\u306b\u30b9\u30c8\u30ea\u30f3\u30b0\u3092\u4f7f\u7528\u3057\u307e\u305b\u3093" },
0742:
0743: /** The FastStringBuffer argument can not be null */
0744: // public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
0745: {
0746: ER_FASTSTRINGBUFFER_CANNOT_BE_NULL,
0747: "FastStringBuffer \u5f15\u304d\u6570\u306f\u30cc\u30eb\u306b\u3067\u304d\u307e\u305b\u3093" },
0748:
0749: /* MANTIS_XALAN CHANGE: BEGIN */
0750: /** 2 or 3 */
0751: // public static final int ER_TWO_OR_THREE = 84;
0752: { ER_TWO_OR_THREE, "2 \u307e\u305f\u306f 3" },
0753:
0754: /** Variable accessed before it is bound! */
0755: // public static final int ER_VARIABLE_ACCESSED_BEFORE_BIND = 85;
0756: {
0757: ER_VARIABLE_ACCESSED_BEFORE_BIND,
0758: "\u5909\u6570\u304c\u30d0\u30a4\u30f3\u30c9\u3055\u308c\u308b\u524d\u306b\u30a2\u30af\u30bb\u30b9\u3055\u308c\u307e\u3057\u305f!" },
0759:
0760: /** XStringForFSB can not take a string for an argument! */
0761: // public static final int ER_FSB_CANNOT_TAKE_STRING = 86;
0762: {
0763: ER_FSB_CANNOT_TAKE_STRING,
0764: "XStringForFSB \u306f\u5f15\u304d\u6570\u306b\u30b9\u30c8\u30ea\u30f3\u30b0\u3092\u4f7f\u7528\u3057\u307e\u305b\u3093!" },
0765:
0766: /** Error! Setting the root of a walker to null! */
0767: // public static final int ER_SETTING_WALKER_ROOT_TO_NULL = 87;
0768: {
0769: ER_SETTING_WALKER_ROOT_TO_NULL,
0770: "\n !!!! \u30a8\u30e9\u30fc! \u30a6\u30a9\u30fc\u30ab\u30fc\u306e\u30eb\u30fc\u30c8\u3092\u30cc\u30eb\u306b\u8a2d\u5b9a\u3057\u3066\u3044\u307e\u3059!!!" },
0771:
0772: /** This NodeSetDTM can not iterate to a previous node! */
0773: // public static final int ER_NODESETDTM_CANNOT_ITERATE = 88;
0774: {
0775: ER_NODESETDTM_CANNOT_ITERATE,
0776: "\u3053\u306e NodeSetDTM \u306f\u76f4\u524d\u306e\u30ce\u30fc\u30c9\u3092\u7e70\u308a\u8fd4\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093!" },
0777:
0778: /** This NodeSet can not iterate to a previous node! */
0779: // public static final int ER_NODESET_CANNOT_ITERATE = 89;
0780: {
0781: ER_NODESET_CANNOT_ITERATE,
0782: "\u3053\u306e NodeSet \u306f\u76f4\u524d\u306e\u30ce\u30fc\u30c9\u3092\u7e70\u308a\u8fd4\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093!" },
0783:
0784: /** This NodeSetDTM can not do indexing or counting functions! */
0785: // public static final int ER_NODESETDTM_CANNOT_INDEX = 90;
0786: {
0787: ER_NODESETDTM_CANNOT_INDEX,
0788: "\u3053\u306e NodeSetDTM \u306f\u7d22\u5f15\u4ed8\u3051\u3084\u30ab\u30a6\u30f3\u30c8\u306e\u6a5f\u80fd\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093!" },
0789:
0790: /** This NodeSet can not do indexing or counting functions! */
0791: // public static final int ER_NODESET_CANNOT_INDEX = 91;
0792: {
0793: ER_NODESET_CANNOT_INDEX,
0794: "\u3053\u306e NodeSet \u306f\u7d22\u5f15\u4ed8\u3051\u3084\u30ab\u30a6\u30f3\u30c8\u306e\u6a5f\u80fd\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093!" },
0795:
0796: /** Can not call setShouldCacheNodes after nextNode has been called! */
0797: // public static final int ER_CANNOT_CALL_SETSHOULDCACHENODE = 92;
0798: {
0799: ER_CANNOT_CALL_SETSHOULDCACHENODE,
0800: "nextNode \u3092\u547c\u3073\u51fa\u3057\u305f\u5f8c\u306b setShouldCacheNodes \u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093!" },
0801:
0802: /** {0} only allows {1} arguments */
0803: // public static final int ER_ONLY_ALLOWS = 93;
0804: {
0805: ER_ONLY_ALLOWS,
0806: "{0} \u306b\u8a31\u53ef\u3055\u308c\u308b\u5f15\u304d\u6570\u306f {1} \u500b\u306e\u307f\u3067\u3059" },
0807:
0808: /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
0809: // public static final int ER_UNKNOWN_STEP = 94;
0810: {
0811: ER_UNKNOWN_STEP,
0812: "getNextStepPos \u5185\u306e\u30d7\u30ed\u30b0\u30e9\u30de\u30fc\u306e\u30a2\u30b5\u30fc\u30b7\u30e7\u30f3: \u4e0d\u660e\u306a stepType: {0}" },
0813:
0814: //Note to translators: A relative location path is a form of XPath expression.
0815: // The message indicates that such an expression was expected following the
0816: // characters '/' or '//', but was not found.
0817:
0818: /** Problem with RelativeLocationPath */
0819: // public static final int ER_EXPECTED_REL_LOC_PATH = 95;
0820: {
0821: ER_EXPECTED_REL_LOC_PATH,
0822: "\u76f8\u5bfe\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u30fb\u30d1\u30b9\u306f '/' \u307e\u305f\u306f '//' \u30c8\u30fc\u30af\u30f3\u306e\u6b21\u306b\u5fc5\u8981\u3067\u3057\u305f\u3002" },
0823:
0824: // Note to translators: A location path is a form of XPath expression.
0825: // The message indicates that syntactically such an expression was expected,but
0826: // the characters specified by the substitution text were encountered instead.
0827:
0828: /** Problem with LocationPath */
0829: // public static final int ER_EXPECTED_LOC_PATH = 96;
0830: {
0831: ER_EXPECTED_LOC_PATH,
0832: "\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u30fb\u30d1\u30b9\u304c\u5fc5\u8981\u3067\u3057\u305f\u304c\u3001\u6b21\u306e\u30c8\u30fc\u30af\u30f3\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f\u003a {0}" },
0833:
0834: // Note to translators: A location step is part of an XPath expression.
0835: // The message indicates that syntactically such an expression was expected
0836: // following the specified characters.
0837:
0838: /** Problem with Step */
0839: // public static final int ER_EXPECTED_LOC_STEP = 97;
0840: {
0841: ER_EXPECTED_LOC_STEP,
0842: "\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3\u30fb\u30b9\u30c6\u30c3\u30d7\u306f '/' \u307e\u305f\u306f '//' \u30c8\u30fc\u30af\u30f3\u306e\u6b21\u306b\u5fc5\u8981\u3067\u3057\u305f\u3002" },
0843:
0844: // Note to translators: A node test is part of an XPath expression that is
0845: // used to test for particular kinds of nodes. In this case, a node test that
0846: // consists of an NCName followed by a colon and an asterisk or that consists
0847: // of a QName was expected, but was not found.
0848:
0849: /** Problem with NodeTest */
0850: // public static final int ER_EXPECTED_NODE_TEST = 98;
0851: {
0852: ER_EXPECTED_NODE_TEST,
0853: "NCName:* \u307e\u305f\u306f QName \u306e\u3044\u305a\u308c\u304b\u3068\u4e00\u81f4\u3059\u308b\u30ce\u30fc\u30c9\u30fb\u30c6\u30b9\u30c8\u304c\u5fc5\u8981\u3067\u3057\u305f\u3002" },
0854:
0855: // Note to translators: A step pattern is part of an XPath expression.
0856: // The message indicates that syntactically such an expression was expected,
0857: // but the specified character was found in the expression instead.
0858:
0859: /** Expected step pattern */
0860: // public static final int ER_EXPECTED_STEP_PATTERN = 99;
0861: {
0862: ER_EXPECTED_STEP_PATTERN,
0863: "\u30b9\u30c6\u30c3\u30d7\u30fb\u30d1\u30bf\u30fc\u30f3\u304c\u5fc5\u8981\u3067\u3057\u305f\u304c\u3001'/' \u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f\u3002" },
0864:
0865: // Note to translators: A relative path pattern is part of an XPath expression.
0866: // The message indicates that syntactically such an expression was expected,
0867: // but was not found.
0868:
0869: /** Expected relative path pattern */
0870: // public static final int ER_EXPECTED_REL_PATH_PATTERN = 100;
0871: {
0872: ER_EXPECTED_REL_PATH_PATTERN,
0873: "\u76f8\u5bfe\u30d1\u30b9\u30fb\u30d1\u30bf\u30fc\u30f3\u304c\u5fc5\u8981\u3067\u3057\u305f\u3002" },
0874:
0875: // Note to translators: A QNAME has the syntactic form [NCName:]NCName
0876: // The localname is the portion after the optional colon; the message indicates
0877: // that there is a problem with that part of the QNAME.
0878:
0879: /** localname in QNAME should be a valid NCName */
0880: // public static final int ER_ARG_LOCALNAME_INVALID = 101;
0881: //{ ER_ARG_LOCALNAME_INVALID,
0882: // "Localname in QNAME should be a valid NCName"},
0883: // Note to translators: A QNAME has the syntactic form [NCName:]NCName
0884: // The prefix is the portion before the optional colon; the message indicates
0885: // that there is a problem with that part of the QNAME.
0886: /** prefix in QNAME should be a valid NCName */
0887: // public static final int ER_ARG_PREFIX_INVALID = 102;
0888: //{ ER_ARG_PREFIX_INVALID,
0889: // "Prefix in QNAME should be a valid NCName"},
0890: // Note to translators: The substitution text is the name of a data type. The
0891: // message indicates that a value of a particular type could not be converted
0892: // to a value of type string.
0893: /** Field ER_CANT_CONVERT_TO_BOOLEAN */
0894: // public static final int ER_CANT_CONVERT_TO_BOOLEAN = 103;
0895: {
0896: ER_CANT_CONVERT_TO_BOOLEAN,
0897: "{0} \u3092\u30d6\u30fc\u30eb\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3002" },
0898:
0899: // Note to translators: Do not translate ANY_UNORDERED_NODE_TYPE and
0900: // FIRST_ORDERED_NODE_TYPE.
0901:
0902: /** Field ER_CANT_CONVERT_TO_SINGLENODE */
0903: //public static final int ER_CANT_CONVERT_TO_SINGLENODE = 104;
0904: {
0905: ER_CANT_CONVERT_TO_SINGLENODE,
0906: "{0} \u3092\u5358\u4e00\u30ce\u30fc\u30c9\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3002 \u3053\u306e getter \u304c\u30bf\u30a4\u30d7 ANY_UNORDERED_NODE_TYPE \u304a\u3088\u3073 FIRST_ORDERED_NODE_TYPE \u306b\u9069\u7528\u3055\u308c\u307e\u3059\u3002" },
0907:
0908: // Note to translators: Do not translate UNORDERED_NODE_SNAPSHOT_TYPE and
0909: // ORDERED_NODE_SNAPSHOT_TYPE.
0910:
0911: /** Field ER_CANT_GET_SNAPSHOT_LENGTH */
0912: // public static final int ER_CANT_GET_SNAPSHOT_LENGTH = 105;
0913: {
0914: ER_CANT_GET_SNAPSHOT_LENGTH,
0915: "\u30bf\u30a4\u30d7: {0} \u306b\u3064\u3044\u3066\u306e\u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8\u306e\u9577\u3055\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3002 \u3053\u306e getter \u304c\u30bf\u30a4\u30d7 UNORDERED_NODE_SNAPSHOT_TYPE \u304a\u3088\u3073 ORDERED_NODE_SNAPSHOT_TYPE \u306b\u9069\u7528\u3055\u308c\u307e\u3059\u3002" },
0916:
0917: /** Field ER_NON_ITERATOR_TYPE */
0918: //public static final int ER_NON_ITERATOR_TYPE = 106;
0919: {
0920: ER_NON_ITERATOR_TYPE,
0921: "\u975e\u30a4\u30c6\u30ec\u30fc\u30bf\u30fc\u30fb\u30bf\u30a4\u30d7: {0} \u306f\u7e70\u308a\u8fd4\u3057\u304c\u3067\u304d\u307e\u305b\u3093" },
0922:
0923: // Note to translators: This message indicates that the document being operated
0924: // upon changed, so the iterator object that was being used to traverse the
0925: // document has now become invalid.
0926:
0927: /** Field ER_DOC_MUTATED */
0928: // public static final int ER_DOC_MUTATED = 107;
0929: {
0930: ER_DOC_MUTATED,
0931: "\u7d50\u679c\u304c\u623b\u3055\u308c\u305f\u4ee5\u5f8c\u306b\u6587\u66f8\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002 \u30a4\u30c6\u30ec\u30fc\u30bf\u30fc\u304c\u7121\u52b9\u3067\u3059\u3002" },
0932:
0933: /** Field ER_INVALID_XPATH_TYPE */
0934: // public static final int ER_INVALID_XPATH_TYPE = 108;
0935: { ER_INVALID_XPATH_TYPE,
0936: "\u7121\u52b9\u306a XPath \u30bf\u30a4\u30d7\u5f15\u304d\u6570: {0}" },
0937:
0938: /** Field ER_EMPTY_XPATH_RESULT */
0939: // public static final int ER_EMPTY_XPATH_RESULT = 109;
0940: { ER_EMPTY_XPATH_RESULT,
0941: "\u7a7a\u306e XPath \u7d50\u679c\u30aa\u30d6\u30b8\u30a7\u30af\u30c8" },
0942:
0943: /** Field ER_INCOMPATIBLE_TYPES */
0944: // public static final int ER_INCOMPATIBLE_TYPES = 110;
0945: {
0946: ER_INCOMPATIBLE_TYPES,
0947: "\u623b\u3055\u308c\u305f\u30bf\u30a4\u30d7: {0} \u306f\u6307\u5b9a\u3055\u308c\u305f\u30bf\u30a4\u30d7: {1} \u306b\u5f37\u5236\u3067\u304d\u307e\u305b\u3093" },
0948:
0949: /** Field ER_NULL_RESOLVER */
0950: // public static final int ER_NULL_RESOLVER = 111;
0951: {
0952: ER_NULL_RESOLVER,
0953: "\u63a5\u982d\u90e8\u3092\u30cc\u30eb\u63a5\u982d\u90e8\u30ea\u30be\u30eb\u30d0\u30fc\u306b\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u3002" },
0954:
0955: // Note to translators: The substitution text is the name of a data type. The
0956: // message indicates that a value of a particular type could not be converted
0957: // to a value of type string.
0958:
0959: /** Field ER_CANT_CONVERT_TO_STRING */
0960: // public static final int ER_CANT_CONVERT_TO_STRING = 112;
0961: {
0962: ER_CANT_CONVERT_TO_STRING,
0963: "{0} \u3092\u30b9\u30c8\u30ea\u30f3\u30b0\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3002" },
0964:
0965: // Note to translators: Do not translate snapshotItem,
0966: // UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.
0967:
0968: /** Field ER_NON_SNAPSHOT_TYPE */
0969: // public static final int ER_NON_SNAPSHOT_TYPE = 113;
0970: {
0971: ER_NON_SNAPSHOT_TYPE,
0972: "\u30bf\u30a4\u30d7: {0} \u4e0a\u306e snapshotItem \u306e\u547c\u3073\u51fa\u3057\u304c\u3067\u304d\u307e\u305b\u3093\u3002 \u3053\u306e\u30e1\u30bd\u30c3\u30c9\u304c\u30bf\u30a4\u30d7 UNORDERED_NODE_SNAPSHOT_TYPE \u304a\u3088\u3073 ORDERED_NODE_SNAPSHOT_TYPE \u306b\u9069\u7528\u3055\u308c\u307e\u3059\u3002" },
0973:
0974: // Note to translators: XPathEvaluator is a Java interface name. An
0975: // XPathEvaluator is created with respect to a particular XML document, and in
0976: // this case the expression represented by this object was being evaluated with
0977: // respect to a context node from a different document.
0978:
0979: /** Field ER_WRONG_DOCUMENT */
0980: // public static final int ER_WRONG_DOCUMENT = 114;
0981: {
0982: ER_WRONG_DOCUMENT,
0983: "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30fb\u30ce\u30fc\u30c9\u306f\u3053\u306e XPathEvaluator \u306b\u30d0\u30a4\u30f3\u30c9\u3055\u308c\u3066\u3044\u308b\u6587\u66f8\u306b\u5c5e\u3057\u3066\u3044\u307e\u305b\u3093\u3002" },
0984:
0985: // Note to translators: The XPath expression cannot be evaluated with respect
0986: // to this type of node.
0987: /** Field ER_WRONG_NODETYPE */
0988: // public static final int ER_WRONG_NODETYPE = 115;
0989: {
0990: ER_WRONG_NODETYPE,
0991: "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30fb\u30ce\u30fc\u30c9\u30fb\u30bf\u30a4\u30d7\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002" },
0992:
0993: /** Field ER_XPATH_ERROR */
0994: // public static final int ER_XPATH_ERROR = 116;
0995: {
0996: ER_XPATH_ERROR,
0997: "XPath \u306b\u4e0d\u660e\u306a\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3059\u3002" },
0998:
0999: // Warnings...
1000:
1001: /** Field WG_LOCALE_NAME_NOT_HANDLED */
1002: // public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
1003: {
1004: WG_LOCALE_NAME_NOT_HANDLED,
1005: "\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u756a\u53f7\u95a2\u6570\u5185\u306e\u30ed\u30b1\u30fc\u30eb\u540d\u306f\u307e\u3060\u51e6\u7406\u3055\u308c\u307e\u305b\u3093!" },
1006:
1007: /** Field WG_PROPERTY_NOT_SUPPORTED */
1008: // public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
1009: {
1010: WG_PROPERTY_NOT_SUPPORTED,
1011: "XSL \u30d7\u30ed\u30d1\u30c6\u30a3\u30fc: {0} \u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093" },
1012:
1013: /** Field WG_DONT_DO_ANYTHING_WITH_NS */
1014: // public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
1015: {
1016: WG_DONT_DO_ANYTHING_WITH_NS,
1017: "\u73fe\u5728\u3001\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc {1} \u306e\u30cd\u30fc\u30e0\u30fb\u30b9\u30da\u30fc\u30b9 {0} \u3067\u4f55\u3082\u5b9f\u884c\u3055\u308c\u3066\u3044\u307e\u305b\u3093" },
1018:
1019: /** Field WG_SECURITY_EXCEPTION */
1020: // public static final int WG_SECURITY_EXCEPTION = 4;
1021: {
1022: WG_SECURITY_EXCEPTION,
1023: "XSL \u30b7\u30b9\u30c6\u30e0\u30fb\u30d7\u30ed\u30d1\u30c6\u30a3\u30fc: {0} \u306b\u30a2\u30af\u30bb\u30b9\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u3068\u304d\u306b SecurityException" },
1024:
1025: /** Field WG_QUO_NO_LONGER_DEFINED */
1026: // public static final int WG_QUO_NO_LONGER_DEFINED = 5;
1027: {
1028: WG_QUO_NO_LONGER_DEFINED,
1029: "\u65e7\u69cb\u6587: quo(...) \u306f XPath \u5185\u306b\u3082\u3046\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002" },
1030:
1031: /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST */
1032: // public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
1033: {
1034: WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST,
1035: "nodeTest \u3092\u30a4\u30f3\u30d7\u30ea\u30e1\u30f3\u30c8\u3059\u308b\u306b\u306f XPath \u306b\u6d3e\u751f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5fc5\u8981\u3067\u3059!" },
1036:
1037: /** Field WG_FUNCTION_TOKEN_NOT_FOUND */
1038: // public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
1039: {
1040: WG_FUNCTION_TOKEN_NOT_FOUND,
1041: "\u95a2\u6570\u30c8\u30fc\u30af\u30f3\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002" },
1042:
1043: /** Field WG_COULDNOT_FIND_FUNCTION */
1044: // public static final int WG_COULDNOT_FIND_FUNCTION = 8;
1045: {
1046: WG_COULDNOT_FIND_FUNCTION,
1047: "\u95a2\u6570: {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f" },
1048:
1049: /** Field WG_CANNOT_MAKE_URL_FROM */
1050: // public static final int WG_CANNOT_MAKE_URL_FROM = 9;
1051: { WG_CANNOT_MAKE_URL_FROM,
1052: "URL \u3092 {0} \u304b\u3089\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002" },
1053:
1054: /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED */
1055: // public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
1056: {
1057: WG_EXPAND_ENTITIES_NOT_SUPPORTED,
1058: "-E \u30aa\u30d7\u30b7\u30e7\u30f3\u306f DTM \u30d1\u30fc\u30b5\u30fc\u306e\u5834\u5408\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093" },
1059:
1060: /** Field WG_ILLEGAL_VARIABLE_REFERENCE */
1061: // public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
1062: {
1063: WG_ILLEGAL_VARIABLE_REFERENCE,
1064: "\u5909\u6570\u306b\u6307\u5b9a\u3055\u308c\u305f VariableReference \u304c\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u5916\u304b\u3001\u5b9a\u7fa9\u306a\u3057\u3067\u3059! \u540d\u524d = {0}" },
1065:
1066: /** Field WG_UNSUPPORTED_ENCODING */
1067: // public static final int WG_UNSUPPORTED_ENCODING = 12;
1068: {
1069: WG_UNSUPPORTED_ENCODING,
1070: "\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u306a\u3044\u30a8\u30f3\u30b3\u30fc\u30c9: {0}" },
1071:
1072: // Other miscellaneous text used inside the code...
1073: { "ui_language", "en" },
1074: { "help_language", "en" },
1075: { "language", "en" },
1076: {
1077: "BAD_CODE",
1078: "createMessage \u3078\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u304c\u5883\u754c\u5916\u3067\u3057\u305f\u3002" },
1079: {
1080: "FORMAT_FAILED",
1081: "messageFormat \u547c\u3073\u51fa\u3057\u4e2d\u306b\u4f8b\u5916\u304c\u30b9\u30ed\u30fc\u3055\u308c\u307e\u3057\u305f\u3002" },
1082: { "version",
1083: ">>>>>>> Xalan \u30d0\u30fc\u30b8\u30e7\u30f3 " },
1084: { "version2", "<<<<<<<" },
1085: { "yes", "\u306f\u3044" },
1086: { "line", "\u884c #" },
1087: { "column", "\u6841 #" },
1088: { "xsldone", "XSLProcessor: \u5b8c\u4e86" },
1089: { "xpath_option",
1090: "xpath \u30aa\u30d7\u30b7\u30e7\u30f3: " },
1091: { "optionIN", " [-in inputXMLURL]" },
1092: { "optionSelect", " [-select xpath \u5f0f]" },
1093: {
1094: "optionMatch",
1095: " [-match \u30de\u30c3\u30c1\u30f3\u30b0\u30fb\u30d1\u30bf\u30fc\u30f3 (\u30de\u30c3\u30c1\u30f3\u30b0\u8a3a\u65ad\u7528)]" },
1096: {
1097: "optionAnyExpr",
1098: "\u3042\u308b\u3044\u306f\u8a3a\u65ad\u30c0\u30f3\u30d7\u3092\u5b9f\u884c\u3059\u308b\u306e\u306f xpath \u5f0f\u3060\u3051\u3067\u3059" },
1099: {
1100: "noParsermsg1",
1101: "XSL \u51e6\u7406\u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002" },
1102: {
1103: "noParsermsg2",
1104: "** \u30d1\u30fc\u30b5\u30fc\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f **" },
1105: {
1106: "noParsermsg3",
1107: "\u30af\u30e9\u30b9\u30d1\u30b9\u3092\u8abf\u3079\u3066\u304f\u3060\u3055\u3044\u3002" },
1108: {
1109: "noParsermsg4",
1110: "IBM \u306e XML Parser for Java \u304c\u306a\u3044\u5834\u5408\u306f\u3001\u6b21\u306e\u30b5\u30a4\u30c8\u304b\u3089\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3067\u304d\u307e\u3059:" },
1111: { "noParsermsg5",
1112: "IBM AlphaWorks: http://www.alphaworks.ibm.com/formula/xml" },
1113: { "gtone", ">1" }, { "zero", "0" }, { "one", "1" },
1114: { "two", "2" }, { "three", "3" }
1115:
1116: };
1117: }
1118:
1119: // ================= INFRASTRUCTURE ======================
1120:
1121: /** Field BAD_CODE */
1122: public static final String BAD_CODE = "BAD_CODE";
1123:
1124: /** Field FORMAT_FAILED */
1125: public static final String FORMAT_FAILED = "FORMAT_FAILED";
1126:
1127: /** Field ERROR_RESOURCES */
1128: public static final String ERROR_RESOURCES = "org.apache.xpath.res.XPATHErrorResources";
1129:
1130: /** Field ERROR_STRING */
1131: public static final String ERROR_STRING = "#\u30a8\u30e9\u30fc";
1132:
1133: /** Field ERROR_HEADER */
1134: public static final String ERROR_HEADER = "\u30a8\u30e9\u30fc: ";
1135:
1136: /** Field WARNING_HEADER */
1137: public static final String WARNING_HEADER = "\u8b66\u544a: ";
1138:
1139: /** Field XSL_HEADER */
1140: public static final String XSL_HEADER = "XSL ";
1141:
1142: /** Field XML_HEADER */
1143: public static final String XML_HEADER = "XML ";
1144:
1145: /** Field QUERY_HEADER */
1146: public static final String QUERY_HEADER = "\u30d1\u30bf\u30fc\u30f3 ";
1147:
1148: /**
1149: * Return a named ResourceBundle for a particular locale. This method mimics the behavior
1150: * of ResourceBundle.getBundle().
1151: *
1152: * @param className Name of local-specific subclass.
1153: * @return the ResourceBundle
1154: * @throws MissingResourceException
1155: */
1156: public static final XPATHErrorResources loadResourceBundle(
1157: String className) throws MissingResourceException {
1158:
1159: Locale locale = Locale.getDefault();
1160: String suffix = getResourceSuffix(locale);
1161:
1162: try {
1163:
1164: // first try with the given locale
1165: return (XPATHErrorResources) ResourceBundle.getBundle(
1166: className + suffix, locale);
1167: } catch (MissingResourceException e) {
1168: try // try to fall back to en_US if we can't load
1169: {
1170:
1171: // Since we can't find the localized property file,
1172: // fall back to en_US.
1173: return (XPATHErrorResources) ResourceBundle.getBundle(
1174: className, new Locale("en", "US"));
1175: } catch (MissingResourceException e2) {
1176:
1177: // Now we are really in trouble.
1178: // very bad, definitely very bad...not going to get very far
1179: throw new MissingResourceException(
1180: "Could not load any resource bundles.",
1181: className, "");
1182: }
1183: }
1184: }
1185:
1186: /**
1187: * Return the resource file suffic for the indicated locale
1188: * For most locales, this will be based the language code. However
1189: * for Chinese, we do distinguish between Taiwan and PRC
1190: *
1191: * @param locale the locale
1192: * @return an String suffix which canbe appended to a resource name
1193: */
1194: private static final String getResourceSuffix(Locale locale) {
1195:
1196: String suffix = "_" + locale.getLanguage();
1197: String country = locale.getCountry();
1198:
1199: if (country.equals("TW"))
1200: suffix += "_" + country;
1201:
1202: return suffix;
1203: }
1204:
1205: }
|