xpatherrorresources.java

来自「java jdk 1.4的源码」· Java 代码 · 共 1,373 行 · 第 1/4 页

JAVA
1,373
字号
/* * The Apache Software License, Version 1.1 * * * Copyright (c) 1999 The Apache Software Foundation.  All rights  * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer.  * * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in *    the documentation and/or other materials provided with the *    distribution. * * 3. The end-user documentation included with the redistribution, *    if any, must include the following acknowledgment:   *       "This product includes software developed by the *        Apache Software Foundation (http://www.apache.org/)." *    Alternately, this acknowledgment may appear in the software itself, *    if and wherever such third-party acknowledgments normally appear. * * 4. The names "Xalan" and "Apache Software Foundation" must *    not be used to endorse or promote products derived from this *    software without prior written permission. For written  *    permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache", *    nor may "Apache" appear in their name, without prior written *    permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation and was * originally based on software copyright (c) 1999, Lotus * Development Corporation., http://www.lotus.com.  For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */package org.apache.xpath.res;import java.util.*;import java.text.DecimalFormat;/** * <meta name="usage" content="advanced"/> * Set up error messages. * We build a two dimensional array of message keys and * message strings. In order to add a new message here, * you need to first add a Static string constant for the * Key and update the contents array with Key, Value pair  * Also you need to  update the count of messages(MAX_CODE)or * the count of warnings(MAX_WARNING) [ Information purpose only] */public class XPATHErrorResources extends ListResourceBundle{/* * General notes to translators: * * This file contains error and warning messages related to XPath Error * Handling. * *  1) Xalan (or more properly, Xalan-interpretive) and XSLTC are names of *     components. *     XSLT is an acronym for "XML Stylesheet Language: Transformations". *     XSLTC is an acronym for XSLT Compiler. * *  2) A stylesheet is a description of how to transform an input XML document *     into a resultant XML document (or HTML document or text).  The *     stylesheet itself is described in the form of an XML document. * *  3) A template is a component of a stylesheet that is used to match a *     particular portion of an input document and specifies the form of the *     corresponding portion of the output document. * *  4) An element is a mark-up tag in an XML document; an attribute is a *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'> *     "elem" is an element name, "attr" and "attr2" are attribute names with *     the values "val" and "val2", respectively. * *  5) A namespace declaration is a special attribute that is used to associate *     a prefix with a URI (the namespace).  The meanings of element names and *     attribute names that use that prefix are defined with respect to that *     namespace. * *  6) "Translet" is an invented term that describes the class file that *     results from compiling an XML stylesheet into a Java class. * *  7) XPath is a specification that describes a notation for identifying *     nodes in a tree-structured representation of an XML document.  An *     instance of that notation is referred to as an XPath expression. * *  8) The context node is the node in the document with respect to which an *     XPath expression is being evaluated. * *  9) An iterator is an object that traverses nodes in the tree, one at a time. * *  10) NCName is an XML term used to describe a name that does not contain a *     colon (a "no-colon name"). * *  11) QName is an XML term meaning "qualified name". */  /** Field MAX_CODE          */  public static final int MAX_CODE = 116;  // this is needed to keep track of the number of messages            /** Field MAX_WARNING          */  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings  /** Field MAX_OTHERS          */  public static final int MAX_OTHERS = 20;  /** Field MAX_MESSAGES          */  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;  /*    * static variables   */  public static final String ERROR0000 = "ERROR0000";  public static final String ER_CURRENT_NOT_ALLOWED_IN_MATCH = 	 "ER_CURRENT_NOT_ALLOWED_IN_MATCH";  public static final String ER_CURRENT_TAKES_NO_ARGS = 	 "ER_CURRENT_TAKES_NO_ARGS";  public static final String ER_DOCUMENT_REPLACED = "ER_DOCUMENT_REPLACED";  public static final String ER_CONTEXT_HAS_NO_OWNERDOC = 	 "ER_CONTEXT_HAS_NO_OWNERDOC";  public static final String ER_LOCALNAME_HAS_TOO_MANY_ARGS = 	 "ER_LOCALNAME_HAS_TOO_MANY_ARGS";  public static final String ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 	 "ER_NAMESPACEURI_HAS_TOO_MANY_ARGS";  public static final String ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 	 "ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS";  public static final String ER_NUMBER_HAS_TOO_MANY_ARGS = 	 "ER_NUMBER_HAS_TOO_MANY_ARGS";  public static final String ER_NAME_HAS_TOO_MANY_ARGS = 	 "ER_NAME_HAS_TOO_MANY_ARGS";  public static final String ER_STRING_HAS_TOO_MANY_ARGS = 	 "ER_STRING_HAS_TOO_MANY_ARGS";  public static final String ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 	 "ER_STRINGLENGTH_HAS_TOO_MANY_ARGS";  public static final String ER_TRANSLATE_TAKES_3_ARGS = 	 "ER_TRANSLATE_TAKES_3_ARGS";  public static final String ER_UNPARSEDENTITYURI_TAKES_1_ARG = 	 "ER_UNPARSEDENTITYURI_TAKES_1_ARG";  public static final String ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 	 "ER_NAMESPACEAXIS_NOT_IMPLEMENTED";  public static final String ER_UNKNOWN_AXIS = "ER_UNKNOWN_AXIS";  public static final String ER_UNKNOWN_MATCH_OPERATION = 	 "ER_UNKNOWN_MATCH_OPERATION";  public static final String ER_INCORRECT_ARG_LENGTH ="ER_INCORRECT_ARG_LENGTH";  public static final String ER_CANT_CONVERT_TO_NUMBER = 	 "ER_CANT_CONVERT_TO_NUMBER";  public static final String ER_CANT_CONVERT_TO_NODELIST = 	 "ER_CANT_CONVERT_TO_NODELIST";  public static final String ER_CANT_CONVERT_TO_MUTABLENODELIST = 	 "ER_CANT_CONVERT_TO_MUTABLENODELIST";  public static final String ER_CANT_CONVERT_TO_TYPE ="ER_CANT_CONVERT_TO_TYPE";  public static final String ER_EXPECTED_MATCH_PATTERN = 	 "ER_EXPECTED_MATCH_PATTERN";  public static final String ER_COULDNOT_GET_VAR_NAMED = 	 "ER_COULDNOT_GET_VAR_NAMED";  public static final String ER_UNKNOWN_OPCODE = "ER_UNKNOWN_OPCODE";  public static final String ER_EXTRA_ILLEGAL_TOKENS ="ER_EXTRA_ILLEGAL_TOKENS";  public static final String ER_EXPECTED_DOUBLE_QUOTE = 	 "ER_EXPECTED_DOUBLE_QUOTE";  public static final String ER_EXPECTED_SINGLE_QUOTE = 	 "ER_EXPECTED_SINGLE_QUOTE";  public static final String ER_EMPTY_EXPRESSION = "ER_EMPTY_EXPRESSION";  public static final String ER_EXPECTED_BUT_FOUND = "ER_EXPECTED_BUT_FOUND";  public static final String ER_INCORRECT_PROGRAMMER_ASSERTION = 	 "ER_INCORRECT_PROGRAMMER_ASSERTION";  public static final String ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 	 "ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL";  public static final String ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 	 "ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG";  public static final String ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 	 "ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG";  public static final String ER_PREDICATE_ILLEGAL_SYNTAX = 	 "ER_PREDICATE_ILLEGAL_SYNTAX";  public static final String ER_ILLEGAL_AXIS_NAME = "ER_ILLEGAL_AXIS_NAME";  public static final String ER_UNKNOWN_NODETYPE = "ER_UNKNOWN_NODETYPE";  public static final String ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 	 "ER_PATTERN_LITERAL_NEEDS_BE_QUOTED";  public static final String ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 	 "ER_COULDNOT_BE_FORMATTED_TO_NUMBER";  public static final String ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 	 "ER_COULDNOT_CREATE_XMLPROCESSORLIAISON";  public static final String ER_DIDNOT_FIND_XPATH_SELECT_EXP = 	 "ER_DIDNOT_FIND_XPATH_SELECT_EXP";  public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 	 "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH";  public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED";  public static final String ER_ILLEGAL_VARIABLE_REFERENCE = 	 "ER_ILLEGAL_VARIABLE_REFERENCE";  public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED";  public static final String ER_KEY_HAS_TOO_MANY_ARGS = 	 "ER_KEY_HAS_TOO_MANY_ARGS";  public static final String ER_COUNT_TAKES_1_ARG = "ER_COUNT_TAKES_1_ARG";  public static final String ER_COULDNOT_FIND_FUNCTION = 	 "ER_COULDNOT_FIND_FUNCTION";  public static final String ER_UNSUPPORTED_ENCODING ="ER_UNSUPPORTED_ENCODING";  public static final String ER_PROBLEM_IN_DTM_NEXTSIBLING = 	 "ER_PROBLEM_IN_DTM_NEXTSIBLING";  public static final String ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 	 "ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL";  public static final String ER_SETDOMFACTORY_NOT_SUPPORTED = 	 "ER_SETDOMFACTORY_NOT_SUPPORTED";  public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE";  public static final String ER_PARSE_NOT_SUPPORTED = "ER_PARSE_NOT_SUPPORTED";  public static final String ER_CREATEDOCUMENT_NOT_SUPPORTED = 	 "ER_CREATEDOCUMENT_NOT_SUPPORTED";  public static final String ER_CHILD_HAS_NO_OWNER_DOCUMENT = 	 "ER_CHILD_HAS_NO_OWNER_DOCUMENT";  public static final String ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 	 "ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT";  public static final String ER_SAX_API_NOT_HANDLED = "ER_SAX_API_NOT_HANDLED";public static final String ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 	 "ER_IGNORABLE_WHITESPACE_NOT_HANDLED";  public static final String ER_DTM_CANNOT_HANDLE_NODES = 	 "ER_DTM_CANNOT_HANDLE_NODES";  public static final String ER_XERCES_CANNOT_HANDLE_NODES = 	 "ER_XERCES_CANNOT_HANDLE_NODES";  public static final String ER_XERCES_PARSE_ERROR_DETAILS = 	 "ER_XERCES_PARSE_ERROR_DETAILS";  public static final String ER_XERCES_PARSE_ERROR = "ER_XERCES_PARSE_ERROR";  public static final String ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 	 "ER_CANT_OUTPUT_TEXT_BEFORE_DOC";  public static final String ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 	 "ER_CANT_HAVE_MORE_THAN_ONE_ROOT";  public static final String ER_INVALID_UTF16_SURROGATE = 	 "ER_INVALID_UTF16_SURROGATE";  public static final String ER_OIERROR = "ER_OIERROR";  public static final String ER_CANNOT_CREATE_URL = "ER_CANNOT_CREATE_URL";  public static final String ER_XPATH_READOBJECT = "ER_XPATH_READOBJECT"; public static final String ER_FUNCTION_TOKEN_NOT_FOUND = 	 "ER_FUNCTION_TOKEN_NOT_FOUND"; public static final String ER_ARG_LOCALNAME_NULL = "ER_ARG_LOCALNAME_NULL";  public static final String ER_CANNOT_DEAL_XPATH_TYPE = 	 "ER_CANNOT_DEAL_XPATH_TYPE";  public static final String ER_NODESET_NOT_MUTABLE = "ER_NODESET_NOT_MUTABLE";  public static final String ER_NODESETDTM_NOT_MUTABLE = 	 "ER_NODESETDTM_NOT_MUTABLE";   /**  Variable not resolvable:   */  public static final String ER_VAR_NOT_RESOLVABLE = "ER_VAR_NOT_RESOLVABLE";   /** Null error handler  */ public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER";   /**  Programmer's assertion: unknown opcode  */  public static final String ER_PROG_ASSERT_UNKNOWN_OPCODE = 	 "ER_PROG_ASSERT_UNKNOWN_OPCODE";   /**  0 or 1   */  public static final String ER_ZERO_OR_ONE = "ER_ZERO_OR_ONE";   /**  rtf() not supported by XRTreeFragSelectWrapper   */  public static final String ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 	 "ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */  public static final String ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = "ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";   /**  fsb() not supported for XStringForChars   */  public static final String ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 	 "ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS";   /**  Could not find variable with the name of   */ public static final String ER_COULD_NOT_FIND_VAR = "ER_COULD_NOT_FIND_VAR";   /**  XStringForChars can not take a string for an argument   */ public static final String ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 	 "ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING";   /**  The FastStringBuffer argument can not be null   */ public static final String ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 	 "ER_FASTSTRINGBUFFER_CANNOT_BE_NULL";   /**  2 or 3   */  public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE";   /** Variable accessed before it is bound! */  public static final String ER_VARIABLE_ACCESSED_BEFORE_BIND = 	 "ER_VARIABLE_ACCESSED_BEFORE_BIND";   /** XStringForFSB can not take a string for an argument! */ public static final String ER_FSB_CANNOT_TAKE_STRING = 	 "ER_FSB_CANNOT_TAKE_STRING";   /** Error! Setting the root of a walker to null! */  public static final String ER_SETTING_WALKER_ROOT_TO_NULL = 	 "ER_SETTING_WALKER_ROOT_TO_NULL";   /** This NodeSetDTM can not iterate to a previous node! */  public static final String ER_NODESETDTM_CANNOT_ITERATE = 	 "ER_NODESETDTM_CANNOT_ITERATE";  /** This NodeSet can not iterate to a previous node! */ public static final String ER_NODESET_CANNOT_ITERATE = 	 "ER_NODESET_CANNOT_ITERATE";  /** This NodeSetDTM can not do indexing or counting functions! */  public static final String ER_NODESETDTM_CANNOT_INDEX = 	 "ER_NODESETDTM_CANNOT_INDEX";  /** This NodeSet can not do indexing or counting functions! */  public static final String ER_NODESET_CANNOT_INDEX = 	 "ER_NODESET_CANNOT_INDEX";  /** Can not call setShouldCacheNodes after nextNode has been called! */  public static final String ER_CANNOT_CALL_SETSHOULDCACHENODE = 	 "ER_CANNOT_CALL_SETSHOULDCACHENODE";  /** {0} only allows {1} arguments */ public static final String ER_ONLY_ALLOWS = "ER_ONLY_ALLOWS";  /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */  public static final String ER_UNKNOWN_STEP = "ER_UNKNOWN_STEP";  /** Problem with RelativeLocationPath */  public static final String ER_EXPECTED_REL_LOC_PATH = 	 "ER_EXPECTED_REL_LOC_PATH";  /** Problem with LocationPath */  public static final String ER_EXPECTED_LOC_PATH = "ER_EXPECTED_LOC_PATH";  /** Problem with Step */  public static final String ER_EXPECTED_LOC_STEP = "ER_EXPECTED_LOC_STEP";  /** Problem with NodeTest */  public static final String ER_EXPECTED_NODE_TEST = "ER_EXPECTED_NODE_TEST";  /** Expected step pattern */  public static final String ER_EXPECTED_STEP_PATTERN = 	"ER_EXPECTED_STEP_PATTERN";  /** Expected relative path pattern */  public static final String ER_EXPECTED_REL_PATH_PATTERN = 	 "ER_EXPECTED_REL_PATH_PATTERN";  /** localname in QNAME should be a valid NCName */  public static final String ER_ARG_LOCALNAME_INVALID = 	 "ER_ARG_LOCALNAME_INVALID";  /** prefix in QNAME should be a valid NCName */  public static final String ER_ARG_PREFIX_INVALID = "ER_ARG_PREFIX_INVALID";  /** Field ER_CANT_CONVERT_TO_BOOLEAN          */  public static final String ER_CANT_CONVERT_TO_BOOLEAN = 	 "ER_CANT_CONVERT_TO_BOOLEAN";  /** Field ER_CANT_CONVERT_TO_SINGLENODE       */  public static final String ER_CANT_CONVERT_TO_SINGLENODE = 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?