286N/A/*
286N/A * reserved comment block
286N/A * DO NOT REMOVE OR ALTER!
286N/A */
286N/A/*
286N/A * Copyright 1999-2004 The Apache Software Foundation.
286N/A *
286N/A * Licensed under the Apache License, Version 2.0 (the "License");
286N/A * you may not use this file except in compliance with the License.
286N/A * You may obtain a copy of the License at
286N/A *
286N/A * http://www.apache.org/licenses/LICENSE-2.0
286N/A *
286N/A * Unless required by applicable law or agreed to in writing, software
286N/A * distributed under the License is distributed on an "AS IS" BASIS,
286N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
286N/A * See the License for the specific language governing permissions and
286N/A * limitations under the License.
286N/A */
286N/A/*
286N/A * $Id: XPATHErrorResources_it.java,v 1.2.4.1 2005/09/15 00:39:21 jeffsuttor Exp $
286N/A */
286N/Apackage com.sun.org.apache.xpath.internal.res;
286N/A
286N/Aimport java.util.ListResourceBundle;
286N/A
286N/A/**
286N/A * Set up error messages.
286N/A * We build a two dimensional array of message keys and
286N/A * message strings. In order to add a new message here,
286N/A * you need to first add a Static string constant for the
286N/A * Key and update the contents array with Key, Value pair
286N/A * Also you need to update the count of messages(MAX_CODE)or
286N/A * the count of warnings(MAX_WARNING) [ Information purpose only]
286N/A * @xsl.usage advanced
286N/A */
286N/Apublic class XPATHErrorResources_it extends ListResourceBundle
286N/A{
286N/A
286N/A/*
286N/A * General notes to translators:
286N/A *
286N/A * This file contains error and warning messages related to XPath Error
286N/A * Handling.
286N/A *
286N/A * 1) Xalan (or more properly, Xalan-interpretive) and XSLTC are names of
286N/A * components.
286N/A * XSLT is an acronym for "XML Stylesheet Language: Transformations".
286N/A * XSLTC is an acronym for XSLT Compiler.
286N/A *
286N/A * 2) A stylesheet is a description of how to transform an input XML document
286N/A * into a resultant XML document (or HTML document or text). The
286N/A * stylesheet itself is described in the form of an XML document.
286N/A *
286N/A * 3) A template is a component of a stylesheet that is used to match a
286N/A * particular portion of an input document and specifies the form of the
286N/A * corresponding portion of the output document.
286N/A *
286N/A * 4) An element is a mark-up tag in an XML document; an attribute is a
286N/A * modifier on the tag. For example, in <elem attr='val' attr2='val2'>
286N/A * "elem" is an element name, "attr" and "attr2" are attribute names with
286N/A * the values "val" and "val2", respectively.
286N/A *
286N/A * 5) A namespace declaration is a special attribute that is used to associate
286N/A * a prefix with a URI (the namespace). The meanings of element names and
286N/A * attribute names that use that prefix are defined with respect to that
286N/A * namespace.
286N/A *
286N/A * 6) "Translet" is an invented term that describes the class file that
286N/A * results from compiling an XML stylesheet into a Java class.
286N/A *
286N/A * 7) XPath is a specification that describes a notation for identifying
286N/A * nodes in a tree-structured representation of an XML document. An
286N/A * instance of that notation is referred to as an XPath expression.
286N/A *
286N/A * 8) The context node is the node in the document with respect to which an
286N/A * XPath expression is being evaluated.
286N/A *
286N/A * 9) An iterator is an object that traverses nodes in the tree, one at a time.
286N/A *
286N/A * 10) NCName is an XML term used to describe a name that does not contain a
286N/A * colon (a "no-colon name").
286N/A *
286N/A * 11) QName is an XML term meaning "qualified name".
286N/A */
286N/A
286N/A /*
286N/A * static variables
286N/A */
286N/A public static final String ERROR0000 = "ERROR0000";
286N/A public static final String ER_CURRENT_NOT_ALLOWED_IN_MATCH =
286N/A "ER_CURRENT_NOT_ALLOWED_IN_MATCH";
286N/A public static final String ER_CURRENT_TAKES_NO_ARGS =
286N/A "ER_CURRENT_TAKES_NO_ARGS";
286N/A public static final String ER_DOCUMENT_REPLACED = "ER_DOCUMENT_REPLACED";
286N/A public static final String ER_CONTEXT_HAS_NO_OWNERDOC =
286N/A "ER_CONTEXT_HAS_NO_OWNERDOC";
286N/A public static final String ER_LOCALNAME_HAS_TOO_MANY_ARGS =
286N/A "ER_LOCALNAME_HAS_TOO_MANY_ARGS";
286N/A public static final String ER_NAMESPACEURI_HAS_TOO_MANY_ARGS =
286N/A "ER_NAMESPACEURI_HAS_TOO_MANY_ARGS";
286N/A public static final String ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS =
286N/A "ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS";
286N/A public static final String ER_NUMBER_HAS_TOO_MANY_ARGS =
286N/A "ER_NUMBER_HAS_TOO_MANY_ARGS";
286N/A public static final String ER_NAME_HAS_TOO_MANY_ARGS =
286N/A "ER_NAME_HAS_TOO_MANY_ARGS";
286N/A public static final String ER_STRING_HAS_TOO_MANY_ARGS =
286N/A "ER_STRING_HAS_TOO_MANY_ARGS";
286N/A public static final String ER_STRINGLENGTH_HAS_TOO_MANY_ARGS =
286N/A "ER_STRINGLENGTH_HAS_TOO_MANY_ARGS";
286N/A public static final String ER_TRANSLATE_TAKES_3_ARGS =
286N/A "ER_TRANSLATE_TAKES_3_ARGS";
286N/A public static final String ER_UNPARSEDENTITYURI_TAKES_1_ARG =
286N/A "ER_UNPARSEDENTITYURI_TAKES_1_ARG";
286N/A public static final String ER_NAMESPACEAXIS_NOT_IMPLEMENTED =
286N/A "ER_NAMESPACEAXIS_NOT_IMPLEMENTED";
286N/A public static final String ER_UNKNOWN_AXIS = "ER_UNKNOWN_AXIS";
286N/A public static final String ER_UNKNOWN_MATCH_OPERATION =
286N/A "ER_UNKNOWN_MATCH_OPERATION";
286N/A public static final String ER_INCORRECT_ARG_LENGTH ="ER_INCORRECT_ARG_LENGTH";
286N/A public static final String ER_CANT_CONVERT_TO_NUMBER =
286N/A "ER_CANT_CONVERT_TO_NUMBER";
286N/A public static final String ER_CANT_CONVERT_XPATHRESULTTYPE_TO_NUMBER =
286N/A "ER_CANT_CONVERT_XPATHRESULTTYPE_TO_NUMBER";
286N/A public static final String ER_CANT_CONVERT_TO_NODELIST =
286N/A "ER_CANT_CONVERT_TO_NODELIST";
286N/A public static final String ER_CANT_CONVERT_TO_MUTABLENODELIST =
286N/A "ER_CANT_CONVERT_TO_MUTABLENODELIST";
286N/A public static final String ER_CANT_CONVERT_TO_TYPE ="ER_CANT_CONVERT_TO_TYPE";
286N/A public static final String ER_EXPECTED_MATCH_PATTERN =
286N/A "ER_EXPECTED_MATCH_PATTERN";
286N/A public static final String ER_COULDNOT_GET_VAR_NAMED =
286N/A "ER_COULDNOT_GET_VAR_NAMED";
286N/A public static final String ER_UNKNOWN_OPCODE = "ER_UNKNOWN_OPCODE";
286N/A public static final String ER_EXTRA_ILLEGAL_TOKENS ="ER_EXTRA_ILLEGAL_TOKENS";
286N/A public static final String ER_EXPECTED_DOUBLE_QUOTE =
286N/A "ER_EXPECTED_DOUBLE_QUOTE";
286N/A public static final String ER_EXPECTED_SINGLE_QUOTE =
286N/A "ER_EXPECTED_SINGLE_QUOTE";
286N/A public static final String ER_EMPTY_EXPRESSION = "ER_EMPTY_EXPRESSION";
286N/A public static final String ER_EXPECTED_BUT_FOUND = "ER_EXPECTED_BUT_FOUND";
286N/A public static final String ER_INCORRECT_PROGRAMMER_ASSERTION =
286N/A "ER_INCORRECT_PROGRAMMER_ASSERTION";
286N/A public static final String ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL =
286N/A "ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL";
286N/A public static final String ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG =
286N/A "ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG";
286N/A public static final String ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG =
286N/A "ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG";
286N/A public static final String ER_PREDICATE_ILLEGAL_SYNTAX =
286N/A "ER_PREDICATE_ILLEGAL_SYNTAX";
286N/A public static final String ER_ILLEGAL_AXIS_NAME = "ER_ILLEGAL_AXIS_NAME";
286N/A public static final String ER_UNKNOWN_NODETYPE = "ER_UNKNOWN_NODETYPE";
286N/A public static final String ER_PATTERN_LITERAL_NEEDS_BE_QUOTED =
286N/A "ER_PATTERN_LITERAL_NEEDS_BE_QUOTED";
286N/A public static final String ER_COULDNOT_BE_FORMATTED_TO_NUMBER =
286N/A "ER_COULDNOT_BE_FORMATTED_TO_NUMBER";
286N/A public static final String ER_COULDNOT_CREATE_XMLPROCESSORLIAISON =
286N/A "ER_COULDNOT_CREATE_XMLPROCESSORLIAISON";
286N/A public static final String ER_DIDNOT_FIND_XPATH_SELECT_EXP =
286N/A "ER_DIDNOT_FIND_XPATH_SELECT_EXP";
286N/A public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH =
286N/A "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH";
286N/A public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED";
286N/A public static final String ER_ILLEGAL_VARIABLE_REFERENCE =
286N/A "ER_ILLEGAL_VARIABLE_REFERENCE";
286N/A public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED";
286N/A public static final String ER_KEY_HAS_TOO_MANY_ARGS =
286N/A "ER_KEY_HAS_TOO_MANY_ARGS";
286N/A public static final String ER_COUNT_TAKES_1_ARG = "ER_COUNT_TAKES_1_ARG";
286N/A public static final String ER_COULDNOT_FIND_FUNCTION =
286N/A "ER_COULDNOT_FIND_FUNCTION";
286N/A public static final String ER_UNSUPPORTED_ENCODING ="ER_UNSUPPORTED_ENCODING";
286N/A public static final String ER_PROBLEM_IN_DTM_NEXTSIBLING =
286N/A "ER_PROBLEM_IN_DTM_NEXTSIBLING";
286N/A public static final String ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL =
286N/A "ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL";
286N/A public static final String ER_SETDOMFACTORY_NOT_SUPPORTED =
286N/A "ER_SETDOMFACTORY_NOT_SUPPORTED";
286N/A public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE";
286N/A public static final String ER_PARSE_NOT_SUPPORTED = "ER_PARSE_NOT_SUPPORTED";
286N/A public static final String ER_SAX_API_NOT_HANDLED = "ER_SAX_API_NOT_HANDLED";
286N/Apublic static final String ER_IGNORABLE_WHITESPACE_NOT_HANDLED =
286N/A "ER_IGNORABLE_WHITESPACE_NOT_HANDLED";
286N/A public static final String ER_DTM_CANNOT_HANDLE_NODES =
286N/A "ER_DTM_CANNOT_HANDLE_NODES";
286N/A public static final String ER_XERCES_CANNOT_HANDLE_NODES =
286N/A "ER_XERCES_CANNOT_HANDLE_NODES";
286N/A public static final String ER_XERCES_PARSE_ERROR_DETAILS =
286N/A "ER_XERCES_PARSE_ERROR_DETAILS";
286N/A public static final String ER_XERCES_PARSE_ERROR = "ER_XERCES_PARSE_ERROR";
286N/A public static final String ER_INVALID_UTF16_SURROGATE =
286N/A "ER_INVALID_UTF16_SURROGATE";
286N/A public static final String ER_OIERROR = "ER_OIERROR";
286N/A public static final String ER_CANNOT_CREATE_URL = "ER_CANNOT_CREATE_URL";
286N/A public static final String ER_XPATH_READOBJECT = "ER_XPATH_READOBJECT";
286N/A public static final String ER_FUNCTION_TOKEN_NOT_FOUND =
286N/A "ER_FUNCTION_TOKEN_NOT_FOUND";
286N/A public static final String ER_CANNOT_DEAL_XPATH_TYPE =
286N/A "ER_CANNOT_DEAL_XPATH_TYPE";
286N/A public static final String ER_NODESET_NOT_MUTABLE = "ER_NODESET_NOT_MUTABLE";
286N/A public static final String ER_NODESETDTM_NOT_MUTABLE =
286N/A "ER_NODESETDTM_NOT_MUTABLE";
286N/A /** Variable not resolvable: */
286N/A public static final String ER_VAR_NOT_RESOLVABLE = "ER_VAR_NOT_RESOLVABLE";
286N/A /** Null error handler */
286N/A public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER";
286N/A /** Programmer's assertion: unknown opcode */
286N/A public static final String ER_PROG_ASSERT_UNKNOWN_OPCODE =
286N/A "ER_PROG_ASSERT_UNKNOWN_OPCODE";
286N/A /** 0 or 1 */
286N/A public static final String ER_ZERO_OR_ONE = "ER_ZERO_OR_ONE";
286N/A /** rtf() not supported by XRTreeFragSelectWrapper */
286N/A public static final String ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER =
286N/A "ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
286N/A /** asNodeIterator() not supported by XRTreeFragSelectWrapper */
286N/A public static final String ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = "ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
286N/A /** fsb() not supported for XStringForChars */
286N/A public static final String ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS =
286N/A "ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS";
286N/A /** Could not find variable with the name of */
286N/A public static final String ER_COULD_NOT_FIND_VAR = "ER_COULD_NOT_FIND_VAR";
286N/A /** XStringForChars can not take a string for an argument */
286N/A public static final String ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING =
286N/A "ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING";
286N/A /** The FastStringBuffer argument can not be null */
286N/A public static final String ER_FASTSTRINGBUFFER_CANNOT_BE_NULL =
286N/A "ER_FASTSTRINGBUFFER_CANNOT_BE_NULL";
286N/A /** 2 or 3 */
286N/A public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE";
286N/A /** Variable accessed before it is bound! */
286N/A public static final String ER_VARIABLE_ACCESSED_BEFORE_BIND =
286N/A "ER_VARIABLE_ACCESSED_BEFORE_BIND";
286N/A /** XStringForFSB can not take a string for an argument! */
286N/A public static final String ER_FSB_CANNOT_TAKE_STRING =
286N/A "ER_FSB_CANNOT_TAKE_STRING";
286N/A /** Error! Setting the root of a walker to null! */
286N/A public static final String ER_SETTING_WALKER_ROOT_TO_NULL =
286N/A "ER_SETTING_WALKER_ROOT_TO_NULL";
286N/A /** This NodeSetDTM can not iterate to a previous node! */
286N/A public static final String ER_NODESETDTM_CANNOT_ITERATE =
286N/A "ER_NODESETDTM_CANNOT_ITERATE";
286N/A /** This NodeSet can not iterate to a previous node! */
286N/A public static final String ER_NODESET_CANNOT_ITERATE =
286N/A "ER_NODESET_CANNOT_ITERATE";
286N/A /** This NodeSetDTM can not do indexing or counting functions! */
286N/A public static final String ER_NODESETDTM_CANNOT_INDEX =
286N/A "ER_NODESETDTM_CANNOT_INDEX";
286N/A /** This NodeSet can not do indexing or counting functions! */
286N/A public static final String ER_NODESET_CANNOT_INDEX =
286N/A "ER_NODESET_CANNOT_INDEX";
286N/A /** Can not call setShouldCacheNodes after nextNode has been called! */
286N/A public static final String ER_CANNOT_CALL_SETSHOULDCACHENODE =
286N/A "ER_CANNOT_CALL_SETSHOULDCACHENODE";
286N/A /** {0} only allows {1} arguments */
286N/A public static final String ER_ONLY_ALLOWS = "ER_ONLY_ALLOWS";
286N/A /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
286N/A public static final String ER_UNKNOWN_STEP = "ER_UNKNOWN_STEP";
286N/A /** Problem with RelativeLocationPath */
286N/A public static final String ER_EXPECTED_REL_LOC_PATH =
286N/A "ER_EXPECTED_REL_LOC_PATH";
286N/A /** Problem with LocationPath */
286N/A public static final String ER_EXPECTED_LOC_PATH = "ER_EXPECTED_LOC_PATH";
286N/A public static final String ER_EXPECTED_LOC_PATH_AT_END_EXPR =
286N/A "ER_EXPECTED_LOC_PATH_AT_END_EXPR";
286N/A /** Problem with Step */
286N/A public static final String ER_EXPECTED_LOC_STEP = "ER_EXPECTED_LOC_STEP";
286N/A /** Problem with NodeTest */
286N/A public static final String ER_EXPECTED_NODE_TEST = "ER_EXPECTED_NODE_TEST";
286N/A /** Expected step pattern */
286N/A public static final String ER_EXPECTED_STEP_PATTERN =
286N/A "ER_EXPECTED_STEP_PATTERN";
286N/A /** Expected relative path pattern */
286N/A public static final String ER_EXPECTED_REL_PATH_PATTERN =
286N/A "ER_EXPECTED_REL_PATH_PATTERN";
286N/A /** ER_CANT_CONVERT_XPATHRESULTTYPE_TO_BOOLEAN */
286N/A public static final String ER_CANT_CONVERT_TO_BOOLEAN =
286N/A "ER_CANT_CONVERT_TO_BOOLEAN";
286N/A /** Field ER_CANT_CONVERT_TO_SINGLENODE */
286N/A public static final String ER_CANT_CONVERT_TO_SINGLENODE =
286N/A "ER_CANT_CONVERT_TO_SINGLENODE";
286N/A /** Field ER_CANT_GET_SNAPSHOT_LENGTH */
286N/A public static final String ER_CANT_GET_SNAPSHOT_LENGTH =
286N/A "ER_CANT_GET_SNAPSHOT_LENGTH";
286N/A /** Field ER_NON_ITERATOR_TYPE */
286N/A public static final String ER_NON_ITERATOR_TYPE = "ER_NON_ITERATOR_TYPE";
286N/A /** Field ER_DOC_MUTATED */
286N/A public static final String ER_DOC_MUTATED = "ER_DOC_MUTATED";
286N/A public static final String ER_INVALID_XPATH_TYPE = "ER_INVALID_XPATH_TYPE";
286N/A public static final String ER_EMPTY_XPATH_RESULT = "ER_EMPTY_XPATH_RESULT";
286N/A public static final String ER_INCOMPATIBLE_TYPES = "ER_INCOMPATIBLE_TYPES";
286N/A public static final String ER_NULL_RESOLVER = "ER_NULL_RESOLVER";
286N/A public static final String ER_CANT_CONVERT_TO_STRING =
286N/A "ER_CANT_CONVERT_TO_STRING";
286N/A public static final String ER_NON_SNAPSHOT_TYPE = "ER_NON_SNAPSHOT_TYPE";
286N/A public static final String ER_WRONG_DOCUMENT = "ER_WRONG_DOCUMENT";
286N/A /* Note to translators: The XPath expression cannot be evaluated with respect
286N/A * to this type of node.
286N/A */
286N/A /** Field ER_WRONG_NODETYPE */
286N/A public static final String ER_WRONG_NODETYPE = "ER_WRONG_NODETYPE";
286N/A public static final String ER_XPATH_ERROR = "ER_XPATH_ERROR";
286N/A
286N/A //BEGIN: Keys needed for exception messages of JAXP 1.3 XPath API implementation
286N/A public static final String ER_EXTENSION_FUNCTION_CANNOT_BE_INVOKED = "ER_EXTENSION_FUNCTION_CANNOT_BE_INVOKED";
286N/A public static final String ER_RESOLVE_VARIABLE_RETURNS_NULL = "ER_RESOLVE_VARIABLE_RETURNS_NULL";
286N/A public static final String ER_UNSUPPORTED_RETURN_TYPE = "ER_UNSUPPORTED_RETURN_TYPE";
286N/A public static final String ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL = "ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL";
286N/A public static final String ER_ARG_CANNOT_BE_NULL = "ER_ARG_CANNOT_BE_NULL";
286N/A
286N/A public static final String ER_OBJECT_MODEL_NULL = "ER_OBJECT_MODEL_NULL";
286N/A public static final String ER_OBJECT_MODEL_EMPTY = "ER_OBJECT_MODEL_EMPTY";
286N/A public static final String ER_FEATURE_NAME_NULL = "ER_FEATURE_NAME_NULL";
286N/A public static final String ER_FEATURE_UNKNOWN = "ER_FEATURE_UNKNOWN";
286N/A public static final String ER_GETTING_NULL_FEATURE = "ER_GETTING_NULL_FEATURE";
286N/A public static final String ER_GETTING_UNKNOWN_FEATURE = "ER_GETTING_UNKNOWN_FEATURE";
286N/A public static final String ER_SECUREPROCESSING_FEATURE = "ER_SECUREPROCESSING_FEATURE";
286N/A public static final String ER_NULL_XPATH_FUNCTION_RESOLVER = "ER_NULL_XPATH_FUNCTION_RESOLVER";
286N/A public static final String ER_NULL_XPATH_VARIABLE_RESOLVER = "ER_NULL_XPATH_VARIABLE_RESOLVER";
286N/A //END: Keys needed for exception messages of JAXP 1.3 XPath API implementation
286N/A
286N/A public static final String WG_LOCALE_NAME_NOT_HANDLED =
286N/A "WG_LOCALE_NAME_NOT_HANDLED";
286N/A public static final String WG_PROPERTY_NOT_SUPPORTED =
286N/A "WG_PROPERTY_NOT_SUPPORTED";
286N/A public static final String WG_DONT_DO_ANYTHING_WITH_NS =
286N/A "WG_DONT_DO_ANYTHING_WITH_NS";
286N/A public static final String WG_SECURITY_EXCEPTION = "WG_SECURITY_EXCEPTION";
286N/A public static final String WG_QUO_NO_LONGER_DEFINED =
286N/A "WG_QUO_NO_LONGER_DEFINED";
286N/A public static final String WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST =
286N/A "WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST";
286N/A public static final String WG_FUNCTION_TOKEN_NOT_FOUND =
286N/A "WG_FUNCTION_TOKEN_NOT_FOUND";
286N/A public static final String WG_COULDNOT_FIND_FUNCTION =
286N/A "WG_COULDNOT_FIND_FUNCTION";
286N/A public static final String WG_CANNOT_MAKE_URL_FROM ="WG_CANNOT_MAKE_URL_FROM";
286N/A public static final String WG_EXPAND_ENTITIES_NOT_SUPPORTED =
286N/A "WG_EXPAND_ENTITIES_NOT_SUPPORTED";
286N/A public static final String WG_ILLEGAL_VARIABLE_REFERENCE =
286N/A "WG_ILLEGAL_VARIABLE_REFERENCE";
286N/A public static final String WG_UNSUPPORTED_ENCODING ="WG_UNSUPPORTED_ENCODING";
286N/A
286N/A /** detach() not supported by XRTreeFragSelectWrapper */
286N/A public static final String ER_DETACH_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER =
286N/A "ER_DETACH_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
286N/A /** num() not supported by XRTreeFragSelectWrapper */
286N/A public static final String ER_NUM_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER =
286N/A "ER_NUM_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
286N/A /** xstr() not supported by XRTreeFragSelectWrapper */
286N/A public static final String ER_XSTR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER =
286N/A "ER_XSTR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
286N/A /** str() not supported by XRTreeFragSelectWrapper */
286N/A public static final String ER_STR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER =
286N/A "ER_STR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
286N/A
286N/A // Error messages...
286N/A
286N/A private static final Object[][] _contents = new Object[][]{
286N/A
286N/A { "ERROR0000" , "{0}" },
286N/A
286N/A { ER_CURRENT_NOT_ALLOWED_IN_MATCH, "La funzione current() non \u00E8 consentita in un pattern di corrispondenza." },
286N/A
286N/A { ER_CURRENT_TAKES_NO_ARGS, "La funzione current() non accetta argomenti." },
286N/A
286N/A { ER_DOCUMENT_REPLACED,
286N/A "L'implementazione della funzione document() \u00E8 stata sostituita da com.sun.org.apache.xalan.internal.xslt.FuncDocument."},
286N/A
286N/A { ER_CONTEXT_HAS_NO_OWNERDOC,
286N/A "il contesto non dispone di un documento proprietario."},
286N/A
286N/A { ER_LOCALNAME_HAS_TOO_MANY_ARGS,
286N/A "local-name() contiene troppi argomenti."},
286N/A
286N/A { ER_NAMESPACEURI_HAS_TOO_MANY_ARGS,
286N/A "namespace-uri() contiene troppi argomenti."},
286N/A
286N/A { ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS,
286N/A "normalize-space() contiene troppi argomenti."},
286N/A
286N/A { ER_NUMBER_HAS_TOO_MANY_ARGS,
286N/A "number() contiene troppi argomenti."},
286N/A
286N/A { ER_NAME_HAS_TOO_MANY_ARGS,
286N/A "name() contiene troppi argomenti."},
286N/A
286N/A { ER_STRING_HAS_TOO_MANY_ARGS,
286N/A "string() contiene troppi argomenti."},
286N/A
286N/A { ER_STRINGLENGTH_HAS_TOO_MANY_ARGS,
286N/A "string-length() contiene troppi argomenti."},
286N/A
286N/A { ER_TRANSLATE_TAKES_3_ARGS,
286N/A "La funzione translate() ha tre argomenti."},
286N/A
286N/A { ER_UNPARSEDENTITYURI_TAKES_1_ARG,
286N/A "La funzione unparsed-entity-uri deve avere un solo argomento."},
286N/A
286N/A { ER_NAMESPACEAXIS_NOT_IMPLEMENTED,
286N/A "l'asse dello spazio di nomi non \u00E8 ancora implementato."},
286N/A
286N/A { ER_UNKNOWN_AXIS,
286N/A "asse sconosciuto: {0}"},
286N/A
286N/A { ER_UNKNOWN_MATCH_OPERATION,
286N/A "operazione di corrispondenza sconosciuta."},
286N/A
286N/A { ER_INCORRECT_ARG_LENGTH,
286N/A "La lunghezza degli argomenti del testo del nodo processing-instruction() \u00E8 errata."},
286N/A
286N/A { ER_CANT_CONVERT_TO_NUMBER,
286N/A "Impossibile convertire {0} in un numero"},
286N/A
286N/A { ER_CANT_CONVERT_TO_NODELIST,
286N/A "Impossibile convertire {0} in NodeList."},
286N/A
286N/A { ER_CANT_CONVERT_TO_MUTABLENODELIST,
286N/A "Impossibile convertire {0} in NodeSetDTM."},
286N/A
286N/A { ER_CANT_CONVERT_TO_TYPE,
286N/A "Impossibile convertire {0} in type#{1}"},
286N/A
286N/A { ER_EXPECTED_MATCH_PATTERN,
286N/A "\u00C8 previsto un pattern di corrispondenza in getMatchScore."},
286N/A
286N/A { ER_COULDNOT_GET_VAR_NAMED,
286N/A "Impossibile recuperare la variabile denominata {0}"},
286N/A
286N/A { ER_UNKNOWN_OPCODE,
286N/A "ERRORE. Codice di operazione sconosciuto: {0}"},
286N/A
286N/A { ER_EXTRA_ILLEGAL_TOKENS,
286N/A "Esistono altri token non validi: {0}"},
286N/A
286N/A { ER_EXPECTED_DOUBLE_QUOTE,
286N/A "valore non tra apici... sono previste le virgolette."},
286N/A
286N/A { ER_EXPECTED_SINGLE_QUOTE,
286N/A "valore non tra apici... \u00E8 previsto un apice."},
286N/A
286N/A { ER_EMPTY_EXPRESSION,
286N/A "Espressione vuota."},
286N/A
286N/A { ER_EXPECTED_BUT_FOUND,
286N/A "Previsto {0}, trovato {1}."},
286N/A
286N/A { ER_INCORRECT_PROGRAMMER_ASSERTION,
286N/A "L''asserzione del programmatore \u00E8 errata - {0}"},
286N/A
286N/A { ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL,
286N/A "L'argomento boolean(...) non \u00E8 pi\u00F9 facoltativo nella bozza XPath 19990709."},
286N/A
286N/A { ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG,
286N/A "\u00C8 stata trovata la virgola (','), ma non l'argomento che la precede."},
286N/A
286N/A { ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG,
286N/A "\u00C8 stata trovata la virgola (','), ma non l'argomento che la segue."},
286N/A
286N/A { ER_PREDICATE_ILLEGAL_SYNTAX,
286N/A "'..[predicate]' o '.[predicate]' \u00E8 una sintassi non valida. Utilizzare 'self::node()[predicate]'."},
286N/A
286N/A { ER_ILLEGAL_AXIS_NAME,
286N/A "nome asse non valido: {0}"},
286N/A
286N/A { ER_UNKNOWN_NODETYPE,
286N/A "Tipo di nodo sconosciuto: {0}"},
286N/A
286N/A { ER_PATTERN_LITERAL_NEEDS_BE_QUOTED,
286N/A "Il valore del pattern ({0}) deve essere compreso tra apici."},
286N/A
286N/A { ER_COULDNOT_BE_FORMATTED_TO_NUMBER,
286N/A "Impossibile formattare {0} in un numero."},
286N/A
286N/A { ER_COULDNOT_CREATE_XMLPROCESSORLIAISON,
286N/A "Impossibile creare la relazione TransformerFactory XML {0}"},
286N/A
286N/A { ER_DIDNOT_FIND_XPATH_SELECT_EXP,
286N/A "Errore. L'espressione di selezione dell'xpath (-select) non \u00E8 stata trovata."},
286N/A
286N/A { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH,
286N/A "ERRORE. Impossibile trovare ENDOP dopo OP_LOCATIONPATH."},
286N/A
286N/A { ER_ERROR_OCCURED,
286N/A "Si \u00E8 verificato un errore."},
286N/A
286N/A { ER_ILLEGAL_VARIABLE_REFERENCE,
286N/A "Il valore di VariableReference specificato per la variabile \u00E8 fuori contesto o senza definizione. Nome = {0}"},
286N/A
286N/A { ER_AXES_NOT_ALLOWED,
286N/A "Solo gli assi child:: e attribute:: sono consentiti nei pattern di corrispondenza. Assi errati = {0}"},
286N/A
286N/A { ER_KEY_HAS_TOO_MANY_ARGS,
286N/A "key() contiene un numero di argomenti errato."},
286N/A
286N/A { ER_COUNT_TAKES_1_ARG,
286N/A "La funzione count deve avere un solo argomento."},
286N/A
286N/A { ER_COULDNOT_FIND_FUNCTION,
286N/A "Impossibile trovare la funzione {0}"},
286N/A
286N/A { ER_UNSUPPORTED_ENCODING,
286N/A "Codifica non supportata: {0}"},
286N/A
286N/A { ER_PROBLEM_IN_DTM_NEXTSIBLING,
286N/A "Si \u00E8 verificato un problema in DTM in getNextSibling... Tentativo di recupero in corso."},
286N/A
286N/A { ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL,
286N/A "Errore del programmatore: impossibile scrivere EmptyNodeList."},
286N/A
286N/A { ER_SETDOMFACTORY_NOT_SUPPORTED,
286N/A "setDOMFactory non supportato da XPathContext"},
286N/A
286N/A { ER_PREFIX_MUST_RESOLVE,
286N/A "Il prefisso deve essere risolto in uno spazio di nomi: {0}"},
286N/A
286N/A { ER_PARSE_NOT_SUPPORTED,
286N/A "analisi (origine InputSource) non supportata in XPathContext. Impossibile aprire {0}."},
286N/A
286N/A { ER_SAX_API_NOT_HANDLED,
286N/A "Caratteri API SAX (char ch[]... non gestiti da DTM."},
286N/A
286N/A { ER_IGNORABLE_WHITESPACE_NOT_HANDLED,
286N/A "ignorableWhitespace(char ch[]... non gestito da DTM."},
286N/A
286N/A { ER_DTM_CANNOT_HANDLE_NODES,
286N/A "DTMLiaison non pu\u00F2 gestire i nodi di tipo {0}"},
286N/A
286N/A { ER_XERCES_CANNOT_HANDLE_NODES,
286N/A "DOM2Helper non pu\u00F2 gestire i nodi di tipo {0}"},
286N/A
286N/A { ER_XERCES_PARSE_ERROR_DETAILS,
286N/A "Errore DOM2Helper.parse: SystemID - {0} Riga - {1}"},
286N/A
286N/A { ER_XERCES_PARSE_ERROR,
286N/A "Errore DOM2Helper.parse"},
286N/A
286N/A { ER_INVALID_UTF16_SURROGATE,
286N/A "Rilevato surrogato UTF-16 non valido: {0}?"},
286N/A
286N/A { ER_OIERROR,
286N/A "Errore IO"},
286N/A
286N/A { ER_CANNOT_CREATE_URL,
286N/A "Impossibile creare l''URL per {0}"},
286N/A
286N/A { ER_XPATH_READOBJECT,
286N/A "In XPath.readObject: {0}"},
286N/A
286N/A { ER_FUNCTION_TOKEN_NOT_FOUND,
286N/A "token di funzione non trovato."},
286N/A
286N/A { ER_CANNOT_DEAL_XPATH_TYPE,
286N/A "Impossibile utilizzare il tipo XPath: {0}"},
286N/A
286N/A { ER_NODESET_NOT_MUTABLE,
286N/A "Impossibile modificare questo NodeSet"},
286N/A
286N/A { ER_NODESETDTM_NOT_MUTABLE,
286N/A "Impossibile modificare questo NodeSetDTM"},
286N/A
286N/A { ER_VAR_NOT_RESOLVABLE,
286N/A "Impossibile risolvere la variabile: {0}"},
286N/A
286N/A { ER_NULL_ERROR_HANDLER,
286N/A "Handler degli errori nullo"},
286N/A
286N/A { ER_PROG_ASSERT_UNKNOWN_OPCODE,
286N/A "Asserzione del programmatore: opcode {0} sconosciuto"},
286N/A
286N/A { ER_ZERO_OR_ONE,
286N/A "0 o 1"},
286N/A
286N/A { ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
286N/A "rtf() non supportato da XRTreeFragSelectWrapper"},
286N/A
286N/A { ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
286N/A "asNodeIterator() non supportato da XRTreeFragSelectWrapper"},
286N/A
286N/A /** detach() not supported by XRTreeFragSelectWrapper */
286N/A { ER_DETACH_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
286N/A "detach() non supportato da XRTreeFragSelectWrapper"},
286N/A
286N/A /** num() not supported by XRTreeFragSelectWrapper */
286N/A { ER_NUM_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
286N/A "num() non supportato da XRTreeFragSelectWrapper"},
286N/A
286N/A /** xstr() not supported by XRTreeFragSelectWrapper */
286N/A { ER_XSTR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
286N/A "xstr() non supportato da XRTreeFragSelectWrapper"},
286N/A
286N/A /** str() not supported by XRTreeFragSelectWrapper */
286N/A { ER_STR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
286N/A "str() non supportato da XRTreeFragSelectWrapper"},
286N/A
286N/A { ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS,
286N/A "fsb() non supportato per XStringForChars"},
286N/A
286N/A { ER_COULD_NOT_FIND_VAR,
286N/A "Impossibile trovare la variabile con nome {0}"},
286N/A
286N/A { ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING,
286N/A "XStringForChars non pu\u00F2 avere una stringa per un argomento"},
286N/A
286N/A { ER_FASTSTRINGBUFFER_CANNOT_BE_NULL,
286N/A "L'argomento FastStringBuffer non pu\u00F2 essere nullo"},
286N/A
286N/A { ER_TWO_OR_THREE,
286N/A "2 o 3"},
286N/A
286N/A { ER_VARIABLE_ACCESSED_BEFORE_BIND,
286N/A "Accesso alla variabile eseguito prima che fosse associata."},
286N/A
286N/A { ER_FSB_CANNOT_TAKE_STRING,
286N/A "XStringForFSB non pu\u00F2 avere una stringa per un argomento"},
286N/A
286N/A { ER_SETTING_WALKER_ROOT_TO_NULL,
286N/A "\n !!!! Errore. Si sta impostando radice di un walker su un valore nullo."},
286N/A
286N/A { ER_NODESETDTM_CANNOT_ITERATE,
286N/A "Questo NodeSetDTM non pu\u00F2 eseguire un'iterazione a un nodo precedente."},
286N/A
286N/A { ER_NODESET_CANNOT_ITERATE,
286N/A "Questo NodeSet non pu\u00F2 eseguire un'iterazione a un nodo precedente."},
286N/A
286N/A { ER_NODESETDTM_CANNOT_INDEX,
286N/A "Questo NodeSetDTM non pu\u00F2 eseguire l'indicizzazione o il conteggio delle funzioni."},
286N/A
286N/A { ER_NODESET_CANNOT_INDEX,
286N/A "Questo NodeSet non pu\u00F2 eseguire l'indicizzazione o il conteggio delle funzioni."},
286N/A
286N/A { ER_CANNOT_CALL_SETSHOULDCACHENODE,
286N/A "Impossibile richiamare setShouldCacheNodes dopo aver richiamato nextNode."},
286N/A
286N/A { ER_ONLY_ALLOWS,
286N/A "{0} consente solo {1} argomenti"},
286N/A
286N/A { ER_UNKNOWN_STEP,
286N/A "Asserzione del programmatore in getNextStepPos: stepType {0} sconosciuto"},
286N/A
286N/A //Note to translators: A relative location path is a form of XPath expression.
286N/A // The message indicates that such an expression was expected following the
286N/A // characters '/' or '//', but was not found.
286N/A { ER_EXPECTED_REL_LOC_PATH,
286N/A "\u00C8 previsto un percorso di posizione relativa dopo il token '/' o '//'."},
286N/A
286N/A // Note to translators: A location path is a form of XPath expression.
286N/A // The message indicates that syntactically such an expression was expected,but
286N/A // the characters specified by the substitution text were encountered instead.
286N/A { ER_EXPECTED_LOC_PATH,
286N/A "\u00C8 previsto un percorso di posizione, ma \u00E8 stato trovato il seguente token: {0}"},
286N/A
286N/A // Note to translators: A location path is a form of XPath expression.
286N/A // The message indicates that syntactically such a subexpression was expected,
286N/A // but no more characters were found in the expression.
286N/A { ER_EXPECTED_LOC_PATH_AT_END_EXPR,
286N/A "\u00C8 previsto un percorso di posizione, ma \u00E8 stata trovata la fine dell'espressione XPath."},
286N/A
286N/A // Note to translators: A location step is part of an XPath expression.
286N/A // The message indicates that syntactically such an expression was expected
286N/A // following the specified characters.
286N/A { ER_EXPECTED_LOC_STEP,
286N/A "\u00C8 previsto un passo di posizione dopo il token '/' o '//'."},
286N/A
286N/A // Note to translators: A node test is part of an XPath expression that is
286N/A // used to test for particular kinds of nodes. In this case, a node test that
286N/A // consists of an NCName followed by a colon and an asterisk or that consists
286N/A // of a QName was expected, but was not found.
286N/A { ER_EXPECTED_NODE_TEST,
286N/A "\u00C8 previsto un test del nodo che corrisponda a NCName:* o a QName."},
286N/A
286N/A // Note to translators: A step pattern is part of an XPath expression.
286N/A // The message indicates that syntactically such an expression was expected,
286N/A // but the specified character was found in the expression instead.
286N/A { ER_EXPECTED_STEP_PATTERN,
286N/A "\u00C8 previsto un pattern di passo, ma \u00E8 stato trovato '/'."},
286N/A
286N/A // Note to translators: A relative path pattern is part of an XPath expression.
286N/A // The message indicates that syntactically such an expression was expected,
286N/A // but was not found.
286N/A { ER_EXPECTED_REL_PATH_PATTERN,
286N/A "\u00C8 previsto un pattern di percorso relativo."},
286N/A
286N/A // Note to translators: The substitution text is the name of a data type. The
286N/A // message indicates that a value of a particular type could not be converted
286N/A // to a value of type boolean.
286N/A { ER_CANT_CONVERT_TO_BOOLEAN,
286N/A "XPathResult dell''espressione XPath ''{0}'' a un valore di XPathResultType pari a {1} che non pu\u00F2 essere convertito in un valore booleano."},
286N/A
286N/A // Note to translators: Do not translate ANY_UNORDERED_NODE_TYPE and
286N/A // FIRST_ORDERED_NODE_TYPE.
286N/A { ER_CANT_CONVERT_TO_SINGLENODE,
286N/A "XPathResult dell''espressione XPath ''{0}'' a un valore di XPathResultType pari a {1} che non pu\u00F2 essere convertito in un nodo singolo. Il metodo getSingleNodeValue \u00E8 valido solo per i tipi ANY_UNORDERED_NODE_TYPE e FIRST_ORDERED_NODE_TYPE."},
286N/A
286N/A // Note to translators: Do not translate UNORDERED_NODE_SNAPSHOT_TYPE and
286N/A // ORDERED_NODE_SNAPSHOT_TYPE.
286N/A { ER_CANT_GET_SNAPSHOT_LENGTH,
286N/A "Impossibile richiamare il metodo getSnapshotLength nell''XPathResult dell''espressione XPath ''{0}'' poich\u00E9 il valore di XPathResultType \u00E8 {1}. Questo metodo \u00E8 valido solo per i tipi UNORDERED_NODE_SNAPSHOT_TYPE e ORDERED_NODE_SNAPSHOT_TYPE."},
286N/A
286N/A { ER_NON_ITERATOR_TYPE,
286N/A "Impossibile richiamare il metodo iterateNext nell''XPathResult dell''espressione XPath ''{0}'' poich\u00E9 il valore di XPathResultType \u00E8 {1}. Questo metodo \u00E8 valido solo per i tipi UNORDERED_NODE_ITERATOR_TYPE e ORDERED_NODE_ITERATOR_TYPE."},
286N/A
286N/A // Note to translators: This message indicates that the document being operated
286N/A // upon changed, so the iterator object that was being used to traverse the
286N/A // document has now become invalid.
286N/A { ER_DOC_MUTATED,
286N/A "Il documento \u00E8 cambiato da quando \u00E8 stato restituito l'ultimo risultato. L'iteratore non \u00E8 valido."},
286N/A
286N/A { ER_INVALID_XPATH_TYPE,
286N/A "Tipo di argomento XPath non valido: {0}"},
286N/A
286N/A { ER_EMPTY_XPATH_RESULT,
286N/A "Oggetto risultati XPath vuoto"},
286N/A
286N/A { ER_INCOMPATIBLE_TYPES,
286N/A "XPathResult dell''espressione XPath ''{0}'' a un valore di XPathResultType pari a {1} che non pu\u00F2 essere convertito forzatamente nel valore XPathResultType {2}."},
286N/A
286N/A { ER_NULL_RESOLVER,
286N/A "Impossibile risolvere il prefisso con un resolver di prefissi nullo."},
286N/A
286N/A // Note to translators: The substitution text is the name of a data type. The
286N/A // message indicates that a value of a particular type could not be converted
286N/A // to a value of type string.
286N/A { ER_CANT_CONVERT_TO_STRING,
286N/A "XPathResult dell''espressione XPath ''{0}'' a un valore di XPathResultType pari a {1} che non pu\u00F2 essere convertito in una stringa."},
286N/A
286N/A // Note to translators: Do not translate snapshotItem,
286N/A // UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.
286N/A { ER_NON_SNAPSHOT_TYPE,
286N/A "Impossibile richiamare il metodo snapshotItem nell''XPathResult dell''espressione XPath ''{0}'' poich\u00E9 il valore di XPathResultType \u00E8 {1}. Questo metodo \u00E8 valido solo per i tipi UNORDERED_NODE_SNAPSHOT_TYPE e ORDERED_NODE_SNAPSHOT_TYPE."},
286N/A
286N/A // Note to translators: XPathEvaluator is a Java interface name. An
286N/A // XPathEvaluator is created with respect to a particular XML document, and in
286N/A // this case the expression represented by this object was being evaluated with
286N/A // respect to a context node from a different document.
286N/A { ER_WRONG_DOCUMENT,
286N/A "Il nodo di contesto non appartiene al documento associato a questo XPathEvaluator."},
286N/A
286N/A // Note to translators: The XPath expression cannot be evaluated with respect
286N/A // to this type of node.
286N/A { ER_WRONG_NODETYPE,
286N/A "Il tipo di nodo di contesto non \u00E8 supportato."},
286N/A
286N/A { ER_XPATH_ERROR,
286N/A "Errore sconosciuto nell'XPath."},
286N/A
286N/A { ER_CANT_CONVERT_XPATHRESULTTYPE_TO_NUMBER,
286N/A "XPathResult dell''espressione XPath ''{0}'' a un valore di XPathResultType pari a {1} che non pu\u00F2 essere convertito in un numero."},
286N/A
286N/A //BEGIN: Definitions of error keys used in exception messages of JAXP 1.3 XPath API implementation
286N/A
286N/A /** Field ER_EXTENSION_FUNCTION_CANNOT_BE_INVOKED */
286N/A
286N/A { ER_EXTENSION_FUNCTION_CANNOT_BE_INVOKED,
286N/A "Impossibile richiamare la funzione di estensione ''{0}'' se la funzione XMLConstants.FEATURE_SECURE_PROCESSING \u00E8 impostata su true."},
286N/A
286N/A /** Field ER_RESOLVE_VARIABLE_RETURNS_NULL */
286N/A
286N/A { ER_RESOLVE_VARIABLE_RETURNS_NULL,
286N/A "resolveVariable per la variabile {0} ha restituito un valore nullo"},
286N/A
286N/A /** Field ER_UNSUPPORTED_RETURN_TYPE */
286N/A
286N/A { ER_UNSUPPORTED_RETURN_TYPE,
286N/A "Tipo restituito non supportato: {0}"},
286N/A
286N/A /** Field ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL */
286N/A
286N/A { ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL,
286N/A "Il tipo di origine e/o restituito non pu\u00F2 essere nullo"},
286N/A
286N/A /** Field ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL */
286N/A
286N/A { ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL,
286N/A "Il tipo di origine e/o restituito non pu\u00F2 essere nullo"},
286N/A
286N/A /** Field ER_ARG_CANNOT_BE_NULL */
286N/A
286N/A { ER_ARG_CANNOT_BE_NULL,
286N/A "L''argomento {0} non pu\u00F2 essere nullo"},
286N/A
286N/A /** Field ER_OBJECT_MODEL_NULL */
286N/A
286N/A { ER_OBJECT_MODEL_NULL,
286N/A "{0}#isObjectModelSupported( String objectModel ) non pu\u00F2 essere richiamato se objectModel == null"},
286N/A
286N/A /** Field ER_OBJECT_MODEL_EMPTY */
286N/A
286N/A { ER_OBJECT_MODEL_EMPTY,
286N/A "{0}#isObjectModelSupported( String objectModel ) non pu\u00F2 essere richiamato se objectModel == \"\""},
286N/A
286N/A /** Field ER_OBJECT_MODEL_EMPTY */
286N/A
286N/A { ER_FEATURE_NAME_NULL,
286N/A "Tentativo di impostare una funzione con nome nullo: {0}#setFeature( null, {1})"},
286N/A
286N/A /** Field ER_FEATURE_UNKNOWN */
286N/A
286N/A { ER_FEATURE_UNKNOWN,
286N/A "Tentativo di impostare la funzione sconosciuta \"{0}\":{1}#setFeature({0},{2})"},
286N/A
286N/A /** Field ER_GETTING_NULL_FEATURE */
286N/A
286N/A { ER_GETTING_NULL_FEATURE,
286N/A "Tentativo di recuperare una funzione con nome nullo: {0}#getFeature(null)"},
286N/A
286N/A /** Field ER_GETTING_NULL_FEATURE */
286N/A
286N/A { ER_GETTING_UNKNOWN_FEATURE,
286N/A "Tentativo di recuperare la funzione sconosciuta \"{0}\":{1}#getFeature({0})"},
286N/A
286N/A {ER_SECUREPROCESSING_FEATURE,
286N/A "FEATURE_SECURE_PROCESSING: impossibile impostare la funzione su false se \u00E8 presente Security Manager: {1}#setFeature({0},{2})"},
286N/A
286N/A /** Field ER_NULL_XPATH_FUNCTION_RESOLVER */
286N/A
286N/A { ER_NULL_XPATH_FUNCTION_RESOLVER,
286N/A "Tentativo di impostare un valore nullo per XPathFunctionResolver:{0}#setXPathFunctionResolver(null)"},
286N/A
286N/A /** Field ER_NULL_XPATH_VARIABLE_RESOLVER */
286N/A
286N/A { ER_NULL_XPATH_VARIABLE_RESOLVER,
286N/A "Tentativo di impostare un valore nullo per XPathVariableResolver:{0}#setXPathVariableResolver(null)"},
286N/A
286N/A //END: Definitions of error keys used in exception messages of JAXP 1.3 XPath API implementation
286N/A
286N/A // Warnings...
286N/A
286N/A { WG_LOCALE_NAME_NOT_HANDLED,
286N/A "il nome di impostazioni nazionali nella funzione format-number non \u00E8 ancora gestito."},
286N/A
286N/A { WG_PROPERTY_NOT_SUPPORTED,
286N/A "Propriet\u00E0 XSL non supportata: {0}"},
286N/A
286N/A { WG_DONT_DO_ANYTHING_WITH_NS,
286N/A "Non effettuare alcuna operazione sullo spazio di nomi {0} nella propriet\u00E0: {1}"},
286N/A
286N/A { WG_SECURITY_EXCEPTION,
286N/A "SecurityException nel tentativo di accedere alla propriet\u00E0 di sistema XSL {0}"},
286N/A
286N/A { WG_QUO_NO_LONGER_DEFINED,
286N/A "Sintassi obsoleta: quo(...) non \u00E8 pi\u00F9 definito nell'XPath."},
286N/A
286N/A { WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST,
286N/A "L'XPath richiede un oggetto derivato che implementi nodeTest."},
286N/A
286N/A { WG_FUNCTION_TOKEN_NOT_FOUND,
286N/A "token di funzione non trovato."},
286N/A
286N/A { WG_COULDNOT_FIND_FUNCTION,
286N/A "Impossibile trovare la funzione {0}"},
286N/A
286N/A { WG_CANNOT_MAKE_URL_FROM,
286N/A "Impossibile creare un URL da {0}"},
286N/A
286N/A { WG_EXPAND_ENTITIES_NOT_SUPPORTED,
286N/A "Opzione -E non supportata per il parser DTM"},
286N/A
286N/A { WG_ILLEGAL_VARIABLE_REFERENCE,
286N/A "Il valore di VariableReference specificato per la variabile \u00E8 fuori contesto o senza definizione. Nome = {0}"},
286N/A
286N/A { WG_UNSUPPORTED_ENCODING,
286N/A "Codifica non supportata: {0}"},
286N/A
286N/A
286N/A
286N/A // Other miscellaneous text used inside the code...
286N/A { "ui_language", "it"},
286N/A { "help_language", "it"},
286N/A { "language", "it"},
286N/A { "BAD_CODE", "Parametro per createMessage fuori limite"},
286N/A { "FORMAT_FAILED", "Eccezione durante la chiamata messageFormat"},
286N/A { "version", ">>>>>>> Versione Xalan "},
286N/A { "version2", "<<<<<<<"},
286N/A { "yes", "s\u00EC"},
286N/A { "line", "N. riga"},
286N/A { "column", "N. colonna"},
286N/A { "xsldone", "XSLProcessor: operazione completata"},
286N/A { "xpath_option", "opzioni xpath: "},
286N/A { "optionIN", " [-in inputXMLURL]"},
286N/A { "optionSelect", " [-select xpath expression]"},
286N/A { "optionMatch", " [-match match pattern (per la diagnostica delle corrispondenze)]"},
286N/A { "optionAnyExpr", "In alternativa, un'espressione xpath eseguir\u00E0 il dump della diagnostica."},
286N/A { "noParsermsg1", "Processo XSL non riuscito."},
286N/A { "noParsermsg2", "** Impossibile trovare il parser **"},
286N/A { "noParsermsg3", "Controllare il classpath."},
286N/A { "noParsermsg4", "Se non \u00E8 disponibile un parser XML di IBM per Java, \u00E8 possibile scaricarlo da"},
286N/A { "noParsermsg5", "AlphaWorks di IBM: http://www.alphaworks.ibm.com/formula/xml"},
286N/A { "gtone", ">1" },
286N/A { "zero", "0" },
286N/A { "one", "1" },
286N/A { "two" , "2" },
286N/A { "three", "3" }
286N/A
286N/A };
286N/A
286N/A /**
286N/A * Get the association list.
286N/A *
286N/A * @return The association list.
286N/A */
286N/A public Object[][] getContents()
286N/A {
286N/A return _contents;
286N/A }
286N/A
286N/A
286N/A // ================= INFRASTRUCTURE ======================
286N/A
286N/A /** Field BAD_CODE */
286N/A public static final String BAD_CODE = "BAD_CODE";
286N/A
286N/A /** Field FORMAT_FAILED */
286N/A public static final String FORMAT_FAILED = "FORMAT_FAILED";
286N/A
286N/A /** Field ERROR_RESOURCES */
286N/A public static final String ERROR_RESOURCES =
286N/A "com.sun.org.apache.xpath.internal.res.XPATHErrorResources";
286N/A
286N/A /** Field ERROR_STRING */
286N/A public static final String ERROR_STRING = "#error";
286N/A
286N/A /** Field ERROR_HEADER */
286N/A public static final String ERROR_HEADER = "Error: ";
286N/A
286N/A /** Field WARNING_HEADER */
286N/A public static final String WARNING_HEADER = "Warning: ";
286N/A
286N/A /** Field XSL_HEADER */
286N/A public static final String XSL_HEADER = "XSL ";
286N/A
286N/A /** Field XML_HEADER */
286N/A public static final String XML_HEADER = "XML ";
286N/A
286N/A /** Field QUERY_HEADER */
286N/A public static final String QUERY_HEADER = "PATTERN ";
286N/A
286N/A}