0001: /*
0002: * Copyright 1999-2004 The Apache Software Foundation.
0003: *
0004: * Licensed under the Apache License, Version 2.0 (the "License");
0005: * you may not use this file except in compliance with the License.
0006: * You may obtain a copy of the License at
0007: *
0008: * http://www.apache.org/licenses/LICENSE-2.0
0009: *
0010: * Unless required by applicable law or agreed to in writing, software
0011: * distributed under the License is distributed on an "AS IS" BASIS,
0012: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0013: * See the License for the specific language governing permissions and
0014: * limitations under the License.
0015: */
0016: /*
0017: * $Id: XSLTErrorResources_it.java,v 1.9 2004/12/15 17:35:32 jycli Exp $
0018: */
0019: package org.apache.xalan.res;
0020:
0021: import java.util.ListResourceBundle;
0022: import java.util.Locale;
0023: import java.util.MissingResourceException;
0024: import java.util.ResourceBundle;
0025:
0026: /**
0027: * Set up error messages.
0028: * We build a two dimensional array of message keys and
0029: * message strings. In order to add a new message here,
0030: * you need to first add a String constant. And
0031: * you need to enter key , value pair as part of contents
0032: * Array. You also need to update MAX_CODE for error strings
0033: * and MAX_WARNING for warnings ( Needed for only information
0034: * purpose )
0035: */
0036: public class XSLTErrorResources_it extends ListResourceBundle {
0037:
0038: /*
0039: * This file contains error and warning messages related to Xalan Error
0040: * Handling.
0041: *
0042: * General notes to translators:
0043: *
0044: * 1) Xalan (or more properly, Xalan-interpretive) and XSLTC are names of
0045: * components.
0046: * XSLT is an acronym for "XML Stylesheet Language: Transformations".
0047: * XSLTC is an acronym for XSLT Compiler.
0048: *
0049: * 2) A stylesheet is a description of how to transform an input XML document
0050: * into a resultant XML document (or HTML document or text). The
0051: * stylesheet itself is described in the form of an XML document.
0052: *
0053: * 3) A template is a component of a stylesheet that is used to match a
0054: * particular portion of an input document and specifies the form of the
0055: * corresponding portion of the output document.
0056: *
0057: * 4) An element is a mark-up tag in an XML document; an attribute is a
0058: * modifier on the tag. For example, in <elem attr='val' attr2='val2'>
0059: * "elem" is an element name, "attr" and "attr2" are attribute names with
0060: * the values "val" and "val2", respectively.
0061: *
0062: * 5) A namespace declaration is a special attribute that is used to associate
0063: * a prefix with a URI (the namespace). The meanings of element names and
0064: * attribute names that use that prefix are defined with respect to that
0065: * namespace.
0066: *
0067: * 6) "Translet" is an invented term that describes the class file that
0068: * results from compiling an XML stylesheet into a Java class.
0069: *
0070: * 7) XPath is a specification that describes a notation for identifying
0071: * nodes in a tree-structured representation of an XML document. An
0072: * instance of that notation is referred to as an XPath expression.
0073: *
0074: */
0075:
0076: /** Maximum error messages, this is needed to keep track of the number of messages. */
0077: public static final int MAX_CODE = 201;
0078:
0079: /** Maximum warnings, this is needed to keep track of the number of warnings. */
0080: public static final int MAX_WARNING = 29;
0081:
0082: /** Maximum misc strings. */
0083: public static final int MAX_OTHERS = 55;
0084:
0085: /** Maximum total warnings and error messages. */
0086: public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
0087:
0088: /*
0089: * Static variables
0090: */
0091: public static final String ER_NO_CURLYBRACE = "ER_NO_CURLYBRACE";;
0092: public static final String ER_ILLEGAL_ATTRIBUTE = "ER_ILLEGAL_ATTRIBUTE";
0093: public static final String ER_NULL_SOURCENODE_APPLYIMPORTS = "ER_NULL_SOURCENODE_APPLYIMPORTS";
0094: public static final String ER_CANNOT_ADD = "ER_CANNOT_ADD";
0095: public static final String ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = "ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES";
0096: public static final String ER_NO_NAME_ATTRIB = "ER_NO_NAME_ATTRIB";
0097: public static final String ER_TEMPLATE_NOT_FOUND = "ER_TEMPLATE_NOT_FOUND";
0098: public static final String ER_CANT_RESOLVE_NAME_AVT = "ER_CANT_RESOLVE_NAME_AVT";
0099: public static final String ER_REQUIRES_ATTRIB = "ER_REQUIRES_ATTRIB";
0100: public static final String ER_MUST_HAVE_TEST_ATTRIB = "ER_MUST_HAVE_TEST_ATTRIB";
0101: public static final String ER_BAD_VAL_ON_LEVEL_ATTRIB = "ER_BAD_VAL_ON_LEVEL_ATTRIB";
0102: public static final String ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = "ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML";
0103: public static final String ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = "ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME";
0104: public static final String ER_NEED_MATCH_ATTRIB = "ER_NEED_MATCH_ATTRIB";
0105: public static final String ER_NEED_NAME_OR_MATCH_ATTRIB = "ER_NEED_NAME_OR_MATCH_ATTRIB";
0106: public static final String ER_CANT_RESOLVE_NSPREFIX = "ER_CANT_RESOLVE_NSPREFIX";
0107: public static final String ER_ILLEGAL_VALUE = "ER_ILLEGAL_VALUE";
0108: public static final String ER_NO_OWNERDOC = "ER_NO_OWNERDOC";
0109: public static final String ER_ELEMTEMPLATEELEM_ERR = "ER_ELEMTEMPLATEELEM_ERR";
0110: public static final String ER_NULL_CHILD = "ER_NULL_CHILD";
0111: public static final String ER_NEED_SELECT_ATTRIB = "ER_NEED_SELECT_ATTRIB";
0112: public static final String ER_NEED_TEST_ATTRIB = "ER_NEED_TEST_ATTRIB";
0113: public static final String ER_NEED_NAME_ATTRIB = "ER_NEED_NAME_ATTRIB";
0114: public static final String ER_NO_CONTEXT_OWNERDOC = "ER_NO_CONTEXT_OWNERDOC";
0115: public static final String ER_COULD_NOT_CREATE_XML_PROC_LIAISON = "ER_COULD_NOT_CREATE_XML_PROC_LIAISON";
0116: public static final String ER_PROCESS_NOT_SUCCESSFUL = "ER_PROCESS_NOT_SUCCESSFUL";
0117: public static final String ER_NOT_SUCCESSFUL = "ER_NOT_SUCCESSFUL";
0118: public static final String ER_ENCODING_NOT_SUPPORTED = "ER_ENCODING_NOT_SUPPORTED";
0119: public static final String ER_COULD_NOT_CREATE_TRACELISTENER = "ER_COULD_NOT_CREATE_TRACELISTENER";
0120: public static final String ER_KEY_REQUIRES_NAME_ATTRIB = "ER_KEY_REQUIRES_NAME_ATTRIB";
0121: public static final String ER_KEY_REQUIRES_MATCH_ATTRIB = "ER_KEY_REQUIRES_MATCH_ATTRIB";
0122: public static final String ER_KEY_REQUIRES_USE_ATTRIB = "ER_KEY_REQUIRES_USE_ATTRIB";
0123: public static final String ER_REQUIRES_ELEMENTS_ATTRIB = "ER_REQUIRES_ELEMENTS_ATTRIB";
0124: public static final String ER_MISSING_PREFIX_ATTRIB = "ER_MISSING_PREFIX_ATTRIB";
0125: public static final String ER_BAD_STYLESHEET_URL = "ER_BAD_STYLESHEET_URL";
0126: public static final String ER_FILE_NOT_FOUND = "ER_FILE_NOT_FOUND";
0127: public static final String ER_IOEXCEPTION = "ER_IOEXCEPTION";
0128: public static final String ER_NO_HREF_ATTRIB = "ER_NO_HREF_ATTRIB";
0129: public static final String ER_STYLESHEET_INCLUDES_ITSELF = "ER_STYLESHEET_INCLUDES_ITSELF";
0130: public static final String ER_PROCESSINCLUDE_ERROR = "ER_PROCESSINCLUDE_ERROR";
0131: public static final String ER_MISSING_LANG_ATTRIB = "ER_MISSING_LANG_ATTRIB";
0132: public static final String ER_MISSING_CONTAINER_ELEMENT_COMPONENT = "ER_MISSING_CONTAINER_ELEMENT_COMPONENT";
0133: public static final String ER_CAN_ONLY_OUTPUT_TO_ELEMENT = "ER_CAN_ONLY_OUTPUT_TO_ELEMENT";
0134: public static final String ER_PROCESS_ERROR = "ER_PROCESS_ERROR";
0135: public static final String ER_UNIMPLNODE_ERROR = "ER_UNIMPLNODE_ERROR";
0136: public static final String ER_NO_SELECT_EXPRESSION = "ER_NO_SELECT_EXPRESSION";
0137: public static final String ER_CANNOT_SERIALIZE_XSLPROCESSOR = "ER_CANNOT_SERIALIZE_XSLPROCESSOR";
0138: public static final String ER_NO_INPUT_STYLESHEET = "ER_NO_INPUT_STYLESHEET";
0139: public static final String ER_FAILED_PROCESS_STYLESHEET = "ER_FAILED_PROCESS_STYLESHEET";
0140: public static final String ER_COULDNT_PARSE_DOC = "ER_COULDNT_PARSE_DOC";
0141: public static final String ER_COULDNT_FIND_FRAGMENT = "ER_COULDNT_FIND_FRAGMENT";
0142: public static final String ER_NODE_NOT_ELEMENT = "ER_NODE_NOT_ELEMENT";
0143: public static final String ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = "ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB";
0144: public static final String ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = "ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB";
0145: public static final String ER_NO_CLONE_OF_DOCUMENT_FRAG = "ER_NO_CLONE_OF_DOCUMENT_FRAG";
0146: public static final String ER_CANT_CREATE_ITEM = "ER_CANT_CREATE_ITEM";
0147: public static final String ER_XMLSPACE_ILLEGAL_VALUE = "ER_XMLSPACE_ILLEGAL_VALUE";
0148: public static final String ER_NO_XSLKEY_DECLARATION = "ER_NO_XSLKEY_DECLARATION";
0149: public static final String ER_CANT_CREATE_URL = "ER_CANT_CREATE_URL";
0150: public static final String ER_XSLFUNCTIONS_UNSUPPORTED = "ER_XSLFUNCTIONS_UNSUPPORTED";
0151: public static final String ER_PROCESSOR_ERROR = "ER_PROCESSOR_ERROR";
0152: public static final String ER_NOT_ALLOWED_INSIDE_STYLESHEET = "ER_NOT_ALLOWED_INSIDE_STYLESHEET";
0153: public static final String ER_RESULTNS_NOT_SUPPORTED = "ER_RESULTNS_NOT_SUPPORTED";
0154: public static final String ER_DEFAULTSPACE_NOT_SUPPORTED = "ER_DEFAULTSPACE_NOT_SUPPORTED";
0155: public static final String ER_INDENTRESULT_NOT_SUPPORTED = "ER_INDENTRESULT_NOT_SUPPORTED";
0156: public static final String ER_ILLEGAL_ATTRIB = "ER_ILLEGAL_ATTRIB";
0157: public static final String ER_UNKNOWN_XSL_ELEM = "ER_UNKNOWN_XSL_ELEM";
0158: public static final String ER_BAD_XSLSORT_USE = "ER_BAD_XSLSORT_USE";
0159: public static final String ER_MISPLACED_XSLWHEN = "ER_MISPLACED_XSLWHEN";
0160: public static final String ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = "ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE";
0161: public static final String ER_MISPLACED_XSLOTHERWISE = "ER_MISPLACED_XSLOTHERWISE";
0162: public static final String ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = "ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE";
0163: public static final String ER_NOT_ALLOWED_INSIDE_TEMPLATE = "ER_NOT_ALLOWED_INSIDE_TEMPLATE";
0164: public static final String ER_UNKNOWN_EXT_NS_PREFIX = "ER_UNKNOWN_EXT_NS_PREFIX";
0165: public static final String ER_IMPORTS_AS_FIRST_ELEM = "ER_IMPORTS_AS_FIRST_ELEM";
0166: public static final String ER_IMPORTING_ITSELF = "ER_IMPORTING_ITSELF";
0167: public static final String ER_XMLSPACE_ILLEGAL_VAL = "ER_XMLSPACE_ILLEGAL_VAL";
0168: public static final String ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = "ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL";
0169: public static final String ER_SAX_EXCEPTION = "ER_SAX_EXCEPTION";
0170: public static final String ER_XSLT_ERROR = "ER_XSLT_ERROR";
0171: public static final String ER_CURRENCY_SIGN_ILLEGAL = "ER_CURRENCY_SIGN_ILLEGAL";
0172: public static final String ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = "ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM";
0173: public static final String ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = "ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER";
0174: public static final String ER_REDIRECT_COULDNT_GET_FILENAME = "ER_REDIRECT_COULDNT_GET_FILENAME";
0175: public static final String ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = "ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT";
0176: public static final String ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = "ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX";
0177: public static final String ER_MISSING_NS_URI = "ER_MISSING_NS_URI";
0178: public static final String ER_MISSING_ARG_FOR_OPTION = "ER_MISSING_ARG_FOR_OPTION";
0179: public static final String ER_INVALID_OPTION = "ER_INVALID_OPTION";
0180: public static final String ER_MALFORMED_FORMAT_STRING = "ER_MALFORMED_FORMAT_STRING";
0181: public static final String ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = "ER_STYLESHEET_REQUIRES_VERSION_ATTRIB";
0182: public static final String ER_ILLEGAL_ATTRIBUTE_VALUE = "ER_ILLEGAL_ATTRIBUTE_VALUE";
0183: public static final String ER_CHOOSE_REQUIRES_WHEN = "ER_CHOOSE_REQUIRES_WHEN";
0184: public static final String ER_NO_APPLY_IMPORT_IN_FOR_EACH = "ER_NO_APPLY_IMPORT_IN_FOR_EACH";
0185: public static final String ER_CANT_USE_DTM_FOR_OUTPUT = "ER_CANT_USE_DTM_FOR_OUTPUT";
0186: public static final String ER_CANT_USE_DTM_FOR_INPUT = "ER_CANT_USE_DTM_FOR_INPUT";
0187: public static final String ER_CALL_TO_EXT_FAILED = "ER_CALL_TO_EXT_FAILED";
0188: public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE";
0189: public static final String ER_INVALID_UTF16_SURROGATE = "ER_INVALID_UTF16_SURROGATE";
0190: public static final String ER_XSLATTRSET_USED_ITSELF = "ER_XSLATTRSET_USED_ITSELF";
0191: public static final String ER_CANNOT_MIX_XERCESDOM = "ER_CANNOT_MIX_XERCESDOM";
0192: public static final String ER_TOO_MANY_LISTENERS = "ER_TOO_MANY_LISTENERS";
0193: public static final String ER_IN_ELEMTEMPLATEELEM_READOBJECT = "ER_IN_ELEMTEMPLATEELEM_READOBJECT";
0194: public static final String ER_DUPLICATE_NAMED_TEMPLATE = "ER_DUPLICATE_NAMED_TEMPLATE";
0195: public static final String ER_INVALID_KEY_CALL = "ER_INVALID_KEY_CALL";
0196: public static final String ER_REFERENCING_ITSELF = "ER_REFERENCING_ITSELF";
0197: public static final String ER_ILLEGAL_DOMSOURCE_INPUT = "ER_ILLEGAL_DOMSOURCE_INPUT";
0198: public static final String ER_CLASS_NOT_FOUND_FOR_OPTION = "ER_CLASS_NOT_FOUND_FOR_OPTION";
0199: public static final String ER_REQUIRED_ELEM_NOT_FOUND = "ER_REQUIRED_ELEM_NOT_FOUND";
0200: public static final String ER_INPUT_CANNOT_BE_NULL = "ER_INPUT_CANNOT_BE_NULL";
0201: public static final String ER_URI_CANNOT_BE_NULL = "ER_URI_CANNOT_BE_NULL";
0202: public static final String ER_FILE_CANNOT_BE_NULL = "ER_FILE_CANNOT_BE_NULL";
0203: public static final String ER_SOURCE_CANNOT_BE_NULL = "ER_SOURCE_CANNOT_BE_NULL";
0204: public static final String ER_CANNOT_INIT_BSFMGR = "ER_CANNOT_INIT_BSFMGR";
0205: public static final String ER_CANNOT_CMPL_EXTENSN = "ER_CANNOT_CMPL_EXTENSN";
0206: public static final String ER_CANNOT_CREATE_EXTENSN = "ER_CANNOT_CREATE_EXTENSN";
0207: public static final String ER_INSTANCE_MTHD_CALL_REQUIRES = "ER_INSTANCE_MTHD_CALL_REQUIRES";
0208: public static final String ER_INVALID_ELEMENT_NAME = "ER_INVALID_ELEMENT_NAME";
0209: public static final String ER_ELEMENT_NAME_METHOD_STATIC = "ER_ELEMENT_NAME_METHOD_STATIC";
0210: public static final String ER_EXTENSION_FUNC_UNKNOWN = "ER_EXTENSION_FUNC_UNKNOWN";
0211: public static final String ER_MORE_MATCH_CONSTRUCTOR = "ER_MORE_MATCH_CONSTRUCTOR";
0212: public static final String ER_MORE_MATCH_METHOD = "ER_MORE_MATCH_METHOD";
0213: public static final String ER_MORE_MATCH_ELEMENT = "ER_MORE_MATCH_ELEMENT";
0214: public static final String ER_INVALID_CONTEXT_PASSED = "ER_INVALID_CONTEXT_PASSED";
0215: public static final String ER_POOL_EXISTS = "ER_POOL_EXISTS";
0216: public static final String ER_NO_DRIVER_NAME = "ER_NO_DRIVER_NAME";
0217: public static final String ER_NO_URL = "ER_NO_URL";
0218: public static final String ER_POOL_SIZE_LESSTHAN_ONE = "ER_POOL_SIZE_LESSTHAN_ONE";
0219: public static final String ER_INVALID_DRIVER = "ER_INVALID_DRIVER";
0220: public static final String ER_NO_STYLESHEETROOT = "ER_NO_STYLESHEETROOT";
0221: public static final String ER_ILLEGAL_XMLSPACE_VALUE = "ER_ILLEGAL_XMLSPACE_VALUE";
0222: public static final String ER_PROCESSFROMNODE_FAILED = "ER_PROCESSFROMNODE_FAILED";
0223: public static final String ER_RESOURCE_COULD_NOT_LOAD = "ER_RESOURCE_COULD_NOT_LOAD";
0224: public static final String ER_BUFFER_SIZE_LESSTHAN_ZERO = "ER_BUFFER_SIZE_LESSTHAN_ZERO";
0225: public static final String ER_UNKNOWN_ERROR_CALLING_EXTENSION = "ER_UNKNOWN_ERROR_CALLING_EXTENSION";
0226: public static final String ER_NO_NAMESPACE_DECL = "ER_NO_NAMESPACE_DECL";
0227: public static final String ER_ELEM_CONTENT_NOT_ALLOWED = "ER_ELEM_CONTENT_NOT_ALLOWED";
0228: public static final String ER_STYLESHEET_DIRECTED_TERMINATION = "ER_STYLESHEET_DIRECTED_TERMINATION";
0229: public static final String ER_ONE_OR_TWO = "ER_ONE_OR_TWO";
0230: public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE";
0231: public static final String ER_COULD_NOT_LOAD_RESOURCE = "ER_COULD_NOT_LOAD_RESOURCE";
0232: public static final String ER_CANNOT_INIT_DEFAULT_TEMPLATES = "ER_CANNOT_INIT_DEFAULT_TEMPLATES";
0233: public static final String ER_RESULT_NULL = "ER_RESULT_NULL";
0234: public static final String ER_RESULT_COULD_NOT_BE_SET = "ER_RESULT_COULD_NOT_BE_SET";
0235: public static final String ER_NO_OUTPUT_SPECIFIED = "ER_NO_OUTPUT_SPECIFIED";
0236: public static final String ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = "ER_CANNOT_TRANSFORM_TO_RESULT_TYPE";
0237: public static final String ER_CANNOT_TRANSFORM_SOURCE_TYPE = "ER_CANNOT_TRANSFORM_SOURCE_TYPE";
0238: public static final String ER_NULL_CONTENT_HANDLER = "ER_NULL_CONTENT_HANDLER";
0239: public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER";
0240: public static final String ER_CANNOT_CALL_PARSE = "ER_CANNOT_CALL_PARSE";
0241: public static final String ER_NO_PARENT_FOR_FILTER = "ER_NO_PARENT_FOR_FILTER";
0242: public static final String ER_NO_STYLESHEET_IN_MEDIA = "ER_NO_STYLESHEET_IN_MEDIA";
0243: public static final String ER_NO_STYLESHEET_PI = "ER_NO_STYLESHEET_PI";
0244: public static final String ER_NOT_SUPPORTED = "ER_NOT_SUPPORTED";
0245: public static final String ER_PROPERTY_VALUE_BOOLEAN = "ER_PROPERTY_VALUE_BOOLEAN";
0246: public static final String ER_COULD_NOT_FIND_EXTERN_SCRIPT = "ER_COULD_NOT_FIND_EXTERN_SCRIPT";
0247: public static final String ER_RESOURCE_COULD_NOT_FIND = "ER_RESOURCE_COULD_NOT_FIND";
0248: public static final String ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = "ER_OUTPUT_PROPERTY_NOT_RECOGNIZED";
0249: public static final String ER_FAILED_CREATING_ELEMLITRSLT = "ER_FAILED_CREATING_ELEMLITRSLT";
0250: public static final String ER_VALUE_SHOULD_BE_NUMBER = "ER_VALUE_SHOULD_BE_NUMBER";
0251: public static final String ER_VALUE_SHOULD_EQUAL = "ER_VALUE_SHOULD_EQUAL";
0252: public static final String ER_FAILED_CALLING_METHOD = "ER_FAILED_CALLING_METHOD";
0253: public static final String ER_FAILED_CREATING_ELEMTMPL = "ER_FAILED_CREATING_ELEMTMPL";
0254: public static final String ER_CHARS_NOT_ALLOWED = "ER_CHARS_NOT_ALLOWED";
0255: public static final String ER_ATTR_NOT_ALLOWED = "ER_ATTR_NOT_ALLOWED";
0256: public static final String ER_BAD_VALUE = "ER_BAD_VALUE";
0257: public static final String ER_ATTRIB_VALUE_NOT_FOUND = "ER_ATTRIB_VALUE_NOT_FOUND";
0258: public static final String ER_ATTRIB_VALUE_NOT_RECOGNIZED = "ER_ATTRIB_VALUE_NOT_RECOGNIZED";
0259: public static final String ER_NULL_URI_NAMESPACE = "ER_NULL_URI_NAMESPACE";
0260: public static final String ER_NUMBER_TOO_BIG = "ER_NUMBER_TOO_BIG";
0261: public static final String ER_CANNOT_FIND_SAX1_DRIVER = "ER_CANNOT_FIND_SAX1_DRIVER";
0262: public static final String ER_SAX1_DRIVER_NOT_LOADED = "ER_SAX1_DRIVER_NOT_LOADED";
0263: public static final String ER_SAX1_DRIVER_NOT_INSTANTIATED = "ER_SAX1_DRIVER_NOT_INSTANTIATED";
0264: public static final String ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = "ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER";
0265: public static final String ER_PARSER_PROPERTY_NOT_SPECIFIED = "ER_PARSER_PROPERTY_NOT_SPECIFIED";
0266: public static final String ER_PARSER_ARG_CANNOT_BE_NULL = "ER_PARSER_ARG_CANNOT_BE_NULL";
0267: public static final String ER_FEATURE = "ER_FEATURE";
0268: public static final String ER_PROPERTY = "ER_PROPERTY";
0269: public static final String ER_NULL_ENTITY_RESOLVER = "ER_NULL_ENTITY_RESOLVER";
0270: public static final String ER_NULL_DTD_HANDLER = "ER_NULL_DTD_HANDLER";
0271: public static final String ER_NO_DRIVER_NAME_SPECIFIED = "ER_NO_DRIVER_NAME_SPECIFIED";
0272: public static final String ER_NO_URL_SPECIFIED = "ER_NO_URL_SPECIFIED";
0273: public static final String ER_POOLSIZE_LESS_THAN_ONE = "ER_POOLSIZE_LESS_THAN_ONE";
0274: public static final String ER_INVALID_DRIVER_NAME = "ER_INVALID_DRIVER_NAME";
0275: public static final String ER_ERRORLISTENER = "ER_ERRORLISTENER";
0276: public static final String ER_ASSERT_NO_TEMPLATE_PARENT = "ER_ASSERT_NO_TEMPLATE_PARENT";
0277: public static final String ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = "ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR";
0278: public static final String ER_NOT_ALLOWED_IN_POSITION = "ER_NOT_ALLOWED_IN_POSITION";
0279: public static final String ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = "ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION";
0280: public static final String INVALID_TCHAR = "INVALID_TCHAR";
0281: public static final String INVALID_QNAME = "INVALID_QNAME";
0282: public static final String INVALID_ENUM = "INVALID_ENUM";
0283: public static final String INVALID_NMTOKEN = "INVALID_NMTOKEN";
0284: public static final String INVALID_NCNAME = "INVALID_NCNAME";
0285: public static final String INVALID_BOOLEAN = "INVALID_BOOLEAN";
0286: public static final String INVALID_NUMBER = "INVALID_NUMBER";
0287: public static final String ER_ARG_LITERAL = "ER_ARG_LITERAL";
0288: public static final String ER_DUPLICATE_GLOBAL_VAR = "ER_DUPLICATE_GLOBAL_VAR";
0289: public static final String ER_DUPLICATE_VAR = "ER_DUPLICATE_VAR";
0290: public static final String ER_TEMPLATE_NAME_MATCH = "ER_TEMPLATE_NAME_MATCH";
0291: public static final String ER_INVALID_PREFIX = "ER_INVALID_PREFIX";
0292: public static final String ER_NO_ATTRIB_SET = "ER_NO_ATTRIB_SET";
0293:
0294: public static final String WG_FOUND_CURLYBRACE = "WG_FOUND_CURLYBRACE";
0295: public static final String WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = "WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR";
0296: public static final String WG_EXPR_ATTRIB_CHANGED_TO_SELECT = "WG_EXPR_ATTRIB_CHANGED_TO_SELECT";
0297: public static final String WG_NO_LOCALE_IN_FORMATNUMBER = "WG_NO_LOCALE_IN_FORMATNUMBER";
0298: public static final String WG_LOCALE_NOT_FOUND = "WG_LOCALE_NOT_FOUND";
0299: public static final String WG_CANNOT_MAKE_URL_FROM = "WG_CANNOT_MAKE_URL_FROM";
0300: public static final String WG_CANNOT_LOAD_REQUESTED_DOC = "WG_CANNOT_LOAD_REQUESTED_DOC";
0301: public static final String WG_CANNOT_FIND_COLLATOR = "WG_CANNOT_FIND_COLLATOR";
0302: public static final String WG_FUNCTIONS_SHOULD_USE_URL = "WG_FUNCTIONS_SHOULD_USE_URL";
0303: public static final String WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = "WG_ENCODING_NOT_SUPPORTED_USING_UTF8";
0304: public static final String WG_ENCODING_NOT_SUPPORTED_USING_JAVA = "WG_ENCODING_NOT_SUPPORTED_USING_JAVA";
0305: public static final String WG_SPECIFICITY_CONFLICTS = "WG_SPECIFICITY_CONFLICTS";
0306: public static final String WG_PARSING_AND_PREPARING = "WG_PARSING_AND_PREPARING";
0307: public static final String WG_ATTR_TEMPLATE = "WG_ATTR_TEMPLATE";
0308: public static final String WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = "WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESP";
0309: public static final String WG_ATTRIB_NOT_HANDLED = "WG_ATTRIB_NOT_HANDLED";
0310: public static final String WG_NO_DECIMALFORMAT_DECLARATION = "WG_NO_DECIMALFORMAT_DECLARATION";
0311: public static final String WG_OLD_XSLT_NS = "WG_OLD_XSLT_NS";
0312: public static final String WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = "WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED";
0313: public static final String WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = "WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE";
0314: public static final String WG_ILLEGAL_ATTRIBUTE = "WG_ILLEGAL_ATTRIBUTE";
0315: public static final String WG_COULD_NOT_RESOLVE_PREFIX = "WG_COULD_NOT_RESOLVE_PREFIX";
0316: public static final String WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = "WG_STYLESHEET_REQUIRES_VERSION_ATTRIB";
0317: public static final String WG_ILLEGAL_ATTRIBUTE_NAME = "WG_ILLEGAL_ATTRIBUTE_NAME";
0318: public static final String WG_ILLEGAL_ATTRIBUTE_VALUE = "WG_ILLEGAL_ATTRIBUTE_VALUE";
0319: public static final String WG_EMPTY_SECOND_ARG = "WG_EMPTY_SECOND_ARG";
0320: public static final String WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = "WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML";
0321: public static final String WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = "WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME";
0322: public static final String WG_ILLEGAL_ATTRIBUTE_POSITION = "WG_ILLEGAL_ATTRIBUTE_POSITION";
0323:
0324: // public static final int ER_NO_CURLYBRACE = 1;
0325: /*
0326: * Now fill in the message text.
0327: * Then fill in the message text for that message code in the
0328: * array. Use the new error code as the index into the array.
0329: */
0330:
0331: // Error messages...
0332: /** Get the lookup table for error messages.
0333: *
0334: * @return The int to message lookup table.
0335: */
0336: public Object[][] getContents() {
0337: return new Object[][] {
0338:
0339: /** Error message ID that has a null message, but takes in a single object. */
0340: { "ER0000", "{0}" },
0341:
0342: /** ER_NO_CURLYBRACE */
0343:
0344: // public static final int ER_NO_CURLYBRACE = 1;
0345: { ER_NO_CURLYBRACE,
0346: "Errore: '{' non pu\u00f2 essere contenuto in un'espressione " },
0347:
0348: /** ER_ILLEGAL_ATTRIBUTE */
0349: // public static final int ER_ILLEGAL_ATTRIBUTE = 2;
0350: { ER_ILLEGAL_ATTRIBUTE,
0351: "{0} ha un attributo non valido: {1}" },
0352:
0353: /** ER_NULL_SOURCENODE_APPLYIMPORTS */
0354: // public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
0355: { ER_NULL_SOURCENODE_APPLYIMPORTS,
0356: "sourceNode nullo in xsl:apply-imports!" },
0357:
0358: /** ER_CANNOT_ADD */
0359: // public static final int ER_CANNOT_ADD = 4;
0360: { ER_CANNOT_ADD, "Impossibile aggiungere {0} a {1}" },
0361:
0362: /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES */
0363: // public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
0364:
0365: { ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES,
0366: "sourceNode nullo in handleApplyTemplatesInstruction." },
0367:
0368: /** ER_NO_NAME_ATTRIB */
0369: // public static final int ER_NO_NAME_ATTRIB = 6;
0370:
0371: { ER_NO_NAME_ATTRIB,
0372: "{0} deve avere un attributo name." },
0373:
0374: /** ER_TEMPLATE_NOT_FOUND */
0375: //public static final int ER_TEMPLATE_NOT_FOUND = 7;
0376:
0377: { ER_TEMPLATE_NOT_FOUND,
0378: "Impossibile trovare la maschera: {0}" },
0379:
0380: /** ER_CANT_RESOLVE_NAME_AVT */
0381: // public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
0382: { ER_CANT_RESOLVE_NAME_AVT,
0383: "Impossibile risolvere il nome AVT in xsl:call-template." },
0384:
0385: /** ER_REQUIRES_ATTRIB */
0386: //public static final int ER_REQUIRES_ATTRIB = 9;
0387:
0388: { ER_REQUIRES_ATTRIB, "{0} richiede l''attributo: {1}" },
0389:
0390: /** ER_MUST_HAVE_TEST_ATTRIB */
0391: // public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
0392:
0393: { ER_MUST_HAVE_TEST_ATTRIB,
0394: "{0} deve avere un attributo ''test''. " },
0395:
0396: /** ER_BAD_VAL_ON_LEVEL_ATTRIB */
0397: // public static final int ER_BAD_VAL_ON_LEVEL_ATTRIB = 11;
0398:
0399: { ER_BAD_VAL_ON_LEVEL_ATTRIB,
0400: "Valore errato nell''attributo livello: {0}" },
0401:
0402: /** ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
0403: // public static final int ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 12;
0404:
0405: { ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
0406: "Il nome dell'istruzione di elaborazione non pu\u00f2 essere 'xml'" },
0407:
0408: /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
0409: // public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
0410:
0411: { ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
0412: "il nome dell''istruzione di elaborazione deve essere un NCName valido: {0}" },
0413:
0414: /** ER_NEED_MATCH_ATTRIB */
0415: // public static final int ER_NEED_MATCH_ATTRIB = 14;
0416:
0417: { ER_NEED_MATCH_ATTRIB,
0418: "{0} deve avere un attributo match nel caso abbia un modo." },
0419:
0420: /** ER_NEED_NAME_OR_MATCH_ATTRIB */
0421: // public static final int ER_NEED_NAME_OR_MATCH_ATTRIB = 15;
0422:
0423: { ER_NEED_NAME_OR_MATCH_ATTRIB,
0424: "{0} richiede un attributo match o name." },
0425:
0426: /** ER_CANT_RESOLVE_NSPREFIX */
0427: // public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
0428:
0429: { ER_CANT_RESOLVE_NSPREFIX,
0430: "Impossibile risolvere il prefisso dello spazio nomi: {0}" },
0431:
0432: /** ER_ILLEGAL_VALUE */
0433: // public static final int ER_ILLEGAL_VALUE = 17;
0434:
0435: { ER_ILLEGAL_VALUE,
0436: "xml:space ha un valore non valido: {0}" },
0437:
0438: /** ER_NO_OWNERDOC */
0439: // public static final int ER_NO_OWNERDOC = 18;
0440:
0441: { ER_NO_OWNERDOC,
0442: "Il nodo secondario non ha un documento proprietario." },
0443:
0444: /** ER_ELEMTEMPLATEELEM_ERR */
0445: // public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
0446:
0447: { ER_ELEMTEMPLATEELEM_ERR,
0448: "Errore ElemTemplateElement: {0}" },
0449:
0450: /** ER_NULL_CHILD */
0451: // public static final int ER_NULL_CHILD = 20;
0452:
0453: { ER_NULL_CHILD,
0454: "E' stato effettuato un tentativo di aggiungere un secondario nullo." },
0455:
0456: /** ER_NEED_SELECT_ATTRIB */
0457: // public static final int ER_NEED_SELECT_ATTRIB = 21;
0458:
0459: { ER_NEED_SELECT_ATTRIB,
0460: "{0} richiede un attributo select." },
0461:
0462: /** ER_NEED_TEST_ATTRIB */
0463: // public static final int ER_NEED_TEST_ATTRIB = 22;
0464:
0465: { ER_NEED_TEST_ATTRIB,
0466: "xsl:when deve avere un attributo 'test'. " },
0467:
0468: /** ER_NEED_NAME_ATTRIB */
0469: // public static final int ER_NEED_NAME_ATTRIB = 23;
0470:
0471: { ER_NEED_NAME_ATTRIB,
0472: "xsl:with-param deve avere un attributo 'name'. " },
0473:
0474: /** ER_NO_CONTEXT_OWNERDOC */
0475: // public static final int ER_NO_CONTEXT_OWNERDOC = 24;
0476:
0477: { ER_NO_CONTEXT_OWNERDOC,
0478: "il contesto non ha un documento proprietario." },
0479:
0480: /** ER_COULD_NOT_CREATE_XML_PROC_LIAISON */
0481: // public static final int ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 25;
0482:
0483: { ER_COULD_NOT_CREATE_XML_PROC_LIAISON,
0484: "Impossibile creare XML TransformerFactory Liaison: {0}" },
0485:
0486: /** ER_PROCESS_NOT_SUCCESSFUL */
0487: // public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
0488:
0489: { ER_PROCESS_NOT_SUCCESSFUL,
0490: "Xalan: Processo non eseguito correttamente. " },
0491:
0492: /** ER_NOT_SUCCESSFUL */
0493: // public static final int ER_NOT_SUCCESSFUL = 27;
0494:
0495: { ER_NOT_SUCCESSFUL,
0496: "Xalan: non eseguito correttamente. " },
0497:
0498: /** ER_ENCODING_NOT_SUPPORTED */
0499: // public static final int ER_ENCODING_NOT_SUPPORTED = 28;
0500:
0501: { ER_ENCODING_NOT_SUPPORTED,
0502: "Codifica non supportata: {0}" },
0503:
0504: /** ER_COULD_NOT_CREATE_TRACELISTENER */
0505: // public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
0506:
0507: { ER_COULD_NOT_CREATE_TRACELISTENER,
0508: "Impossibile creare TraceListener: {0}" },
0509:
0510: /** ER_KEY_REQUIRES_NAME_ATTRIB */
0511: // public static final int ER_KEY_REQUIRES_NAME_ATTRIB = 30;
0512:
0513: { ER_KEY_REQUIRES_NAME_ATTRIB,
0514: "xsl:key richiede un attributo 'name'. " },
0515:
0516: /** ER_KEY_REQUIRES_MATCH_ATTRIB */
0517: // public static final int ER_KEY_REQUIRES_MATCH_ATTRIB = 31;
0518:
0519: { ER_KEY_REQUIRES_MATCH_ATTRIB,
0520: "xsl:key richiede un attributo 'match'. " },
0521:
0522: /** ER_KEY_REQUIRES_USE_ATTRIB */
0523: // public static final int ER_KEY_REQUIRES_USE_ATTRIB = 32;
0524:
0525: { ER_KEY_REQUIRES_USE_ATTRIB,
0526: "xsl:key richiede un attributo 'use'. " },
0527:
0528: /** ER_REQUIRES_ELEMENTS_ATTRIB */
0529: // public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
0530:
0531: { ER_REQUIRES_ELEMENTS_ATTRIB,
0532: "(StylesheetHandler) {0} richiede un attributo ''elements''. " },
0533:
0534: /** ER_MISSING_PREFIX_ATTRIB */
0535: // public static final int ER_MISSING_PREFIX_ATTRIB = 34;
0536:
0537: { ER_MISSING_PREFIX_ATTRIB,
0538: "(StylesheetHandler) {0} attributo ''prefix'' mancante " },
0539:
0540: /** ER_BAD_STYLESHEET_URL */
0541: // public static final int ER_BAD_STYLESHEET_URL = 35;
0542:
0543: { ER_BAD_STYLESHEET_URL,
0544: "URL del foglio di stile errato: {0}" },
0545:
0546: /** ER_FILE_NOT_FOUND */
0547: // public static final int ER_FILE_NOT_FOUND = 36;
0548:
0549: { ER_FILE_NOT_FOUND,
0550: "File del foglio di stile non trovato: {0}" },
0551:
0552: /** ER_IOEXCEPTION */
0553: // public static final int ER_IOEXCEPTION = 37;
0554:
0555: { ER_IOEXCEPTION,
0556: "Eccezione IO nel file del foglio di stile: {0}" },
0557:
0558: /** ER_NO_HREF_ATTRIB */
0559: // public static final int ER_NO_HREF_ATTRIB = 38;
0560:
0561: { ER_NO_HREF_ATTRIB,
0562: "(StylesheetHandler) Impossibile trovare l''attributo href per {0}" },
0563:
0564: /** ER_STYLESHEET_INCLUDES_ITSELF */
0565: // public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
0566:
0567: {
0568: ER_STYLESHEET_INCLUDES_ITSELF,
0569: "(StylesheetHandler) {0} sta direttamente o indirettamente includendo se stesso." },
0570:
0571: /** ER_PROCESSINCLUDE_ERROR */
0572: // public static final int ER_PROCESSINCLUDE_ERROR = 40;
0573:
0574: { ER_PROCESSINCLUDE_ERROR,
0575: "Errore StylesheetHandler.processInclude, {0}" },
0576:
0577: /** ER_MISSING_LANG_ATTRIB */
0578: // public static final int ER_MISSING_LANG_ATTRIB = 41;
0579:
0580: { ER_MISSING_LANG_ATTRIB,
0581: "(StylesheetHandler) {0} attributo ''lang'' mancante " },
0582:
0583: /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT */
0584: // public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
0585: {
0586: ER_MISSING_CONTAINER_ELEMENT_COMPONENT,
0587: "(StylesheetHandler) elemento {0} non ubicato correttamente. Elemento contenitore ''component'' mancante " },
0588:
0589: /** ER_CAN_ONLY_OUTPUT_TO_ELEMENT */
0590: // public static final int ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 43;
0591: {
0592: ER_CAN_ONLY_OUTPUT_TO_ELEMENT,
0593: "L'emissione \u00e8 consentita solo in un elemento, frammento di documento, documento o stampante." },
0594:
0595: /** ER_PROCESS_ERROR */
0596: // public static final int ER_PROCESS_ERROR = 44;
0597: { ER_PROCESS_ERROR, "Errore StylesheetRoot.process" },
0598:
0599: /** ER_UNIMPLNODE_ERROR */
0600: // public static final int ER_UNIMPLNODE_ERROR = 45;
0601: { ER_UNIMPLNODE_ERROR, "Errore UnImplNode: {0}" },
0602:
0603: /** ER_NO_SELECT_EXPRESSION */
0604: // public static final int ER_NO_SELECT_EXPRESSION = 46;
0605: { ER_NO_SELECT_EXPRESSION,
0606: "Errore! Impossibile trovare espressione selezione xpath (-select)." },
0607:
0608: /** ER_CANNOT_SERIALIZE_XSLPROCESSOR */
0609: // public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
0610: { ER_CANNOT_SERIALIZE_XSLPROCESSOR,
0611: "Impossibile serializzare XSLProcessor!" },
0612:
0613: /** ER_NO_INPUT_STYLESHEET */
0614: // public static final int ER_NO_INPUT_STYLESHEET = 48;
0615: { ER_NO_INPUT_STYLESHEET,
0616: "Input del foglio di stile non specificato." },
0617:
0618: /** ER_FAILED_PROCESS_STYLESHEET */
0619: // public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
0620: { ER_FAILED_PROCESS_STYLESHEET,
0621: "Impossibile elaborare il foglio di stile." },
0622:
0623: /** ER_COULDNT_PARSE_DOC */
0624: // public static final int ER_COULDNT_PARSE_DOC = 50;
0625: { ER_COULDNT_PARSE_DOC,
0626: "Impossibile analizzare il documento {0}." },
0627:
0628: /** ER_COULDNT_FIND_FRAGMENT */
0629: // public static final int ER_COULDNT_FIND_FRAGMENT = 51;
0630: { ER_COULDNT_FIND_FRAGMENT,
0631: "Impossibile trovare il frammento: {0}" },
0632:
0633: /** ER_NODE_NOT_ELEMENT */
0634: // public static final int ER_NODE_NOT_ELEMENT = 52;
0635: {
0636: ER_NODE_NOT_ELEMENT,
0637: "Il nodo a cui fa riferimento l''identificativo del frammento non \u00e8 un elemento: {0}" },
0638:
0639: /** ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB */
0640: // public static final int ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 53;
0641: { ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB,
0642: "for-each deve avere un attributo match o name" },
0643:
0644: /** ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB */
0645: // public static final int ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 54;
0646: { ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB,
0647: "le maschere devono avere un attributo match o name" },
0648:
0649: /** ER_NO_CLONE_OF_DOCUMENT_FRAG */
0650: // public static final int ER_NO_CLONE_OF_DOCUMENT_FRAG = 55;
0651: { ER_NO_CLONE_OF_DOCUMENT_FRAG,
0652: "Non \u00e8 possibile avere un clone di un frammento di documento." },
0653:
0654: /** ER_CANT_CREATE_ITEM */
0655: // public static final int ER_CANT_CREATE_ITEM = 56;
0656: { ER_CANT_CREATE_ITEM,
0657: "Impossibile creare la voce nella struttura dei risultati: {0}" },
0658:
0659: /** ER_XMLSPACE_ILLEGAL_VALUE */
0660: // public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
0661: { ER_XMLSPACE_ILLEGAL_VALUE,
0662: "xml:space in XML di origine ha un valore non valido: {0}" },
0663:
0664: /** ER_NO_XSLKEY_DECLARATION */
0665: // public static final int ER_NO_XSLKEY_DECLARATION = 58;
0666: { ER_NO_XSLKEY_DECLARATION,
0667: "Nessuna dichiarazione xsl:key per {0}!" },
0668:
0669: /** ER_CANT_CREATE_URL */
0670: // public static final int ER_CANT_CREATE_URL = 59;
0671: { ER_CANT_CREATE_URL,
0672: "Errore! Impossibile creare url per: {0}" },
0673:
0674: /** ER_XSLFUNCTIONS_UNSUPPORTED */
0675: // public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
0676: { ER_XSLFUNCTIONS_UNSUPPORTED,
0677: "xsl:functions non supportato " },
0678:
0679: /** ER_PROCESSOR_ERROR */
0680: // public static final int ER_PROCESSOR_ERROR = 61;
0681: { ER_PROCESSOR_ERROR, "Errore XSLT TransformerFactory" },
0682:
0683: /** ER_NOT_ALLOWED_INSIDE_STYLESHEET */
0684: // public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
0685: { ER_NOT_ALLOWED_INSIDE_STYLESHEET,
0686: "(StylesheetHandler) {0} non consentito nel foglio di stile." },
0687:
0688: /** ER_RESULTNS_NOT_SUPPORTED */
0689: // public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
0690: { ER_RESULTNS_NOT_SUPPORTED,
0691: "result-ns non \u00e8 pi\u00f9 supportato. Utilizzare xsl:output. " },
0692:
0693: /** ER_DEFAULTSPACE_NOT_SUPPORTED */
0694: // public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
0695: {
0696: ER_DEFAULTSPACE_NOT_SUPPORTED,
0697: "default-space non \u00e8 pi\u00f9 supportato. Utilizzare xsl:strip-space oppure xsl:preserve-space. " },
0698:
0699: /** ER_INDENTRESULT_NOT_SUPPORTED */
0700: // public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
0701: { ER_INDENTRESULT_NOT_SUPPORTED,
0702: "indent-result non \u00e8 pi\u00f9 supportato. Utilizzare xsl:output. " },
0703:
0704: /** ER_ILLEGAL_ATTRIB */
0705: // public static final int ER_ILLEGAL_ATTRIB = 66;
0706: { ER_ILLEGAL_ATTRIB,
0707: "(StylesheetHandler) {0} ha un attributo non valido: {1}" },
0708:
0709: /** ER_UNKNOWN_XSL_ELEM */
0710: // public static final int ER_UNKNOWN_XSL_ELEM = 67;
0711: { ER_UNKNOWN_XSL_ELEM, "Elemento XSL sconosciuto: {0}" },
0712:
0713: /** ER_BAD_XSLSORT_USE */
0714: // public static final int ER_BAD_XSLSORT_USE = 68;
0715: {
0716: ER_BAD_XSLSORT_USE,
0717: "(StylesheetHandler) xsl:sort pu\u00f2 essere utilizzato solo con xsl:apply-templates oppure xsl:for-each." },
0718:
0719: /** ER_MISPLACED_XSLWHEN */
0720: // public static final int ER_MISPLACED_XSLWHEN = 69;
0721: { ER_MISPLACED_XSLWHEN,
0722: "(StylesheetHandler) xsl:when posizionato in modo non corretto. " },
0723:
0724: /** ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE */
0725: // public static final int ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 70;
0726: { ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE,
0727: "(StylesheetHandler) xsl:when non reso principale da xsl:choose!" },
0728:
0729: /** ER_MISPLACED_XSLOTHERWISE */
0730: // public static final int ER_MISPLACED_XSLOTHERWISE = 71;
0731: { ER_MISPLACED_XSLOTHERWISE,
0732: "(StylesheetHandler) xsl:otherwise posizionato in modo non corretto. " },
0733:
0734: /** ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE */
0735: // public static final int ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 72;
0736: { ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE,
0737: "(StylesheetHandler) xsl:otherwise non reso principale da xsl:choose!" },
0738:
0739: /** ER_NOT_ALLOWED_INSIDE_TEMPLATE */
0740: // public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
0741: { ER_NOT_ALLOWED_INSIDE_TEMPLATE,
0742: "(StylesheetHandler) {0} non \u00e8 consentito in una maschera." },
0743:
0744: /** ER_UNKNOWN_EXT_NS_PREFIX */
0745: // public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
0746: { ER_UNKNOWN_EXT_NS_PREFIX,
0747: "(StylesheetHandler) {0} prefisso namespace estensione {1} sconosciuto" },
0748:
0749: /** ER_IMPORTS_AS_FIRST_ELEM */
0750: // public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
0751: {
0752: ER_IMPORTS_AS_FIRST_ELEM,
0753: "(StylesheetHandler) Le importazioni possono verificarsi solo come primi elementi nel foglio di stile." },
0754:
0755: /** ER_IMPORTING_ITSELF */
0756: // public static final int ER_IMPORTING_ITSELF = 76;
0757: {
0758: ER_IMPORTING_ITSELF,
0759: "(StylesheetHandler) {0} sta direttamente o indirettamente importando se stesso." },
0760:
0761: /** ER_XMLSPACE_ILLEGAL_VAL */
0762: // public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
0763: { ER_XMLSPACE_ILLEGAL_VAL,
0764: "(StylesheetHandler) xml:space ha un valore non valido: {0}" },
0765:
0766: /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL */
0767: // public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
0768: { ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL,
0769: "processStylesheet con esito negativo." },
0770:
0771: /** ER_SAX_EXCEPTION */
0772: // public static final int ER_SAX_EXCEPTION = 79;
0773: { ER_SAX_EXCEPTION, "Eccezione SAX" },
0774:
0775: /** ER_FUNCTION_NOT_SUPPORTED */
0776: // public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
0777: //{ ER_FUNCTION_NOT_SUPPORTED,
0778: // "Function not supported!"},
0779: /** ER_XSLT_ERROR */
0780: // public static final int ER_XSLT_ERROR = 81;
0781: { ER_XSLT_ERROR, "Errore XSLT" },
0782:
0783: /** ER_CURRENCY_SIGN_ILLEGAL */
0784: // public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
0785: { ER_CURRENCY_SIGN_ILLEGAL,
0786: "il simbolo della valuta non \u00e8 consentito nella stringa modello formato." },
0787:
0788: /** ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM */
0789: // public static final int ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 83;
0790: { ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM,
0791: "La funzione documento non \u00e8 supportata nel DOM del foglio di stile." },
0792:
0793: /** ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER */
0794: // public static final int ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 84;
0795: { ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER,
0796: "Impossibile risolvere il prefisso di un resolver non di prefisso." },
0797:
0798: /** ER_REDIRECT_COULDNT_GET_FILENAME */
0799: // public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
0800: {
0801: ER_REDIRECT_COULDNT_GET_FILENAME,
0802: "Redirect extension: Impossibile richiamare il nome file - l'attributo file o select deve restituire una stringa valida. " },
0803:
0804: /** ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT */
0805: // public static final int ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 86;
0806: { ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT,
0807: "Impossibile creare FormatterListener in Redirect extension!" },
0808:
0809: /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX */
0810: // public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
0811: { ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX,
0812: "Prefisso in exclude-result-prefixes non valido: {0}" },
0813:
0814: /** ER_MISSING_NS_URI */
0815: // public static final int ER_MISSING_NS_URI = 88;
0816: { ER_MISSING_NS_URI,
0817: "URI spazio nome mancante per il prefisso specificato" },
0818:
0819: /** ER_MISSING_ARG_FOR_OPTION */
0820: // public static final int ER_MISSING_ARG_FOR_OPTION = 89;
0821: { ER_MISSING_ARG_FOR_OPTION,
0822: "Argomento mancante per l''opzione: {0}" },
0823:
0824: /** ER_INVALID_OPTION */
0825: // public static final int ER_INVALID_OPTION = 90;
0826: { ER_INVALID_OPTION, "Opzione non valida: {0}" },
0827:
0828: /** ER_MALFORMED_FORMAT_STRING */
0829: // public static final int ER_MALFORMED_FORMAT_STRING = 91;
0830: { ER_MALFORMED_FORMAT_STRING,
0831: "Stringa di formato errato: {0}" },
0832:
0833: /** ER_STYLESHEET_REQUIRES_VERSION_ATTRIB */
0834: // public static final int ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 92;
0835: { ER_STYLESHEET_REQUIRES_VERSION_ATTRIB,
0836: "xsl:stylesheet richiede un attributo 'version'. " },
0837:
0838: /** ER_ILLEGAL_ATTRIBUTE_VALUE */
0839: // public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
0840: { ER_ILLEGAL_ATTRIBUTE_VALUE,
0841: "L'attributo: {0} ha un valore non valido: {1}" },
0842:
0843: /** ER_CHOOSE_REQUIRES_WHEN */
0844: // public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
0845: { ER_CHOOSE_REQUIRES_WHEN,
0846: "xsl:choose richiede xsl:when" },
0847:
0848: /** ER_NO_APPLY_IMPORT_IN_FOR_EACH */
0849: // public static final int ER_NO_APPLY_IMPORT_IN_FOR_EACH = 95;
0850: { ER_NO_APPLY_IMPORT_IN_FOR_EACH,
0851: "xsl:apply-imports non consentito in xsl:for-each" },
0852:
0853: /** ER_CANT_USE_DTM_FOR_OUTPUT */
0854: // public static final int ER_CANT_USE_DTM_FOR_OUTPUT = 96;
0855: {
0856: ER_CANT_USE_DTM_FOR_OUTPUT,
0857: "Impossibile utilizzare DTMLiaison per un nodo DOM di output... utilizzare invece org.apache.xpath.DOM2Helper." },
0858:
0859: /** ER_CANT_USE_DTM_FOR_INPUT */
0860: // public static final int ER_CANT_USE_DTM_FOR_INPUT = 97;
0861: {
0862: ER_CANT_USE_DTM_FOR_INPUT,
0863: "Impossibile utilizzare DTMLiaison per un nodo DON di input... utilizzare invece org.apache.xpath.DOM2Helper." },
0864:
0865: /** ER_CALL_TO_EXT_FAILED */
0866: // public static final int ER_CALL_TO_EXT_FAILED = 98;
0867: { ER_CALL_TO_EXT_FAILED,
0868: "Chiamata all''elemento estensione non riuscita: {0}" },
0869:
0870: /** ER_PREFIX_MUST_RESOLVE */
0871: // public static final int ER_PREFIX_MUST_RESOLVE = 99;
0872: { ER_PREFIX_MUST_RESOLVE,
0873: "Il prefisso deve risolvere in uno spazio nomi: {0}" },
0874:
0875: /** ER_INVALID_UTF16_SURROGATE */
0876: // public static final int ER_INVALID_UTF16_SURROGATE = 100;
0877: { ER_INVALID_UTF16_SURROGATE,
0878: "Rilevato surrogato UTF-16 non valido: {0} ?" },
0879:
0880: /** ER_XSLATTRSET_USED_ITSELF */
0881: // public static final int ER_XSLATTRSET_USED_ITSELF = 101;
0882: {
0883: ER_XSLATTRSET_USED_ITSELF,
0884: "xsl:attribute-set {0} sta utilizzando se stesso, determinando un loop infinito. " },
0885:
0886: /** ER_CANNOT_MIX_XERCESDOM */
0887: // public static final int ER_CANNOT_MIX_XERCESDOM = 102;
0888: { ER_CANNOT_MIX_XERCESDOM,
0889: "Impossibile unire input non Xerces-DOM con output Xerces-DOM." },
0890:
0891: /** ER_TOO_MANY_LISTENERS */
0892: // public static final int ER_TOO_MANY_LISTENERS = 103;
0893: { ER_TOO_MANY_LISTENERS,
0894: "addTraceListenersToStylesheet - TooManyListenersException" },
0895:
0896: /** ER_IN_ELEMTEMPLATEELEM_READOBJECT */
0897: // public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
0898: { ER_IN_ELEMTEMPLATEELEM_READOBJECT,
0899: "In ElemTemplateElement.readObject: {0}" },
0900:
0901: /** ER_DUPLICATE_NAMED_TEMPLATE */
0902: // public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
0903: { ER_DUPLICATE_NAMED_TEMPLATE,
0904: "Sono state rilevate pi\u00f9 maschere denominate: {0}" },
0905:
0906: /** ER_INVALID_KEY_CALL */
0907: // public static final int ER_INVALID_KEY_CALL = 106;
0908: {
0909: ER_INVALID_KEY_CALL,
0910: "Chiamata funzione non valida: le chiamate key() ricorsive non sono consentite " },
0911:
0912: /** Variable is referencing itself */
0913: // public static final int ER_REFERENCING_ITSELF = 107;
0914: {
0915: ER_REFERENCING_ITSELF,
0916: "La variabile {0} sta direttamente o indirettamente facendo riferimento a se stessa." },
0917:
0918: /** Illegal DOMSource input */
0919: // public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
0920: { ER_ILLEGAL_DOMSOURCE_INPUT,
0921: "Il nodo di input non pu\u00f2 essere nullo per DOMSource per newTemplates." },
0922:
0923: /** Class not found for option */
0924: // public static final int ER_CLASS_NOT_FOUND_FOR_OPTION = 109;
0925: { ER_CLASS_NOT_FOUND_FOR_OPTION,
0926: "File di classe non trovato per l'opzione {0}" },
0927:
0928: /** Required Element not found */
0929: // public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
0930: { ER_REQUIRED_ELEM_NOT_FOUND,
0931: "Elemento richiesto non trovato: {0}" },
0932:
0933: /** InputStream cannot be null */
0934: // public static final int ER_INPUT_CANNOT_BE_NULL = 111;
0935: { ER_INPUT_CANNOT_BE_NULL,
0936: "InputStream non pu\u00f2 essere nullo" },
0937:
0938: /** URI cannot be null */
0939: // public static final int ER_URI_CANNOT_BE_NULL = 112;
0940: { ER_URI_CANNOT_BE_NULL,
0941: "URI non pu\u00f2 essere nullo" },
0942:
0943: /** File cannot be null */
0944: // public static final int ER_FILE_CANNOT_BE_NULL = 113;
0945: { ER_FILE_CANNOT_BE_NULL,
0946: "File non pu\u00f2 essere nullo" },
0947:
0948: /** InputSource cannot be null */
0949: // public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
0950: { ER_SOURCE_CANNOT_BE_NULL,
0951: "InputSource non pu\u00f2 essere nullo" },
0952:
0953: /** Can't overwrite cause */
0954: // public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
0955: //{ ER_CANNOT_OVERWRITE_CAUSE,
0956: // "Cannot overwrite cause"},
0957: /** Could not initialize BSF Manager */
0958: // public static final int ER_CANNOT_INIT_BSFMGR = 116;
0959: { ER_CANNOT_INIT_BSFMGR,
0960: "Impossibile inizializzare BSF Manager" },
0961:
0962: /** Could not compile extension */
0963: // public static final int ER_CANNOT_CMPL_EXTENSN = 117;
0964: { ER_CANNOT_CMPL_EXTENSN,
0965: "Impossibile compilare l'estensione" },
0966:
0967: /** Could not create extension */
0968: // public static final int ER_CANNOT_CREATE_EXTENSN = 118;
0969: { ER_CANNOT_CREATE_EXTENSN,
0970: "Impossibile creare l''estensione: {0} a causa di: {1}" },
0971:
0972: /** Instance method call to method {0} requires an Object instance as first argument */
0973: // public static final int ER_INSTANCE_MTHD_CALL_REQUIRES = 119;
0974: {
0975: ER_INSTANCE_MTHD_CALL_REQUIRES,
0976: "La chiamata metodo istanza al metodo {0} richiede un'istanza Object come primo argomento" },
0977:
0978: /** Invalid element name specified */
0979: // public static final int ER_INVALID_ELEMENT_NAME = 120;
0980: { ER_INVALID_ELEMENT_NAME,
0981: "Specificato nome elemento non valido {0}" },
0982:
0983: /** Element name method must be static */
0984: // public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
0985: { ER_ELEMENT_NAME_METHOD_STATIC,
0986: "Il metodo nome elemento deve essere statico {0}" },
0987:
0988: /** Extension function {0} : {1} is unknown */
0989: // public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
0990: { ER_EXTENSION_FUNC_UNKNOWN,
0991: "Funzione estensione {0} : {1} sconosciuta " },
0992:
0993: /** More than one best match for constructor for */
0994: // public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
0995: {
0996: ER_MORE_MATCH_CONSTRUCTOR,
0997: "E'' stata trovata pi\u00f9 di una corrispondenza migliore per il costruttore per {0}" },
0998:
0999: /** More than one best match for method */
1000: // public static final int ER_MORE_MATCH_METHOD = 124;
1001: { ER_MORE_MATCH_METHOD,
1002: "E'' stata trovata pi\u00f9 di una corrispondenza migliore per il metodo {0}" },
1003:
1004: /** More than one best match for element method */
1005: // public static final int ER_MORE_MATCH_ELEMENT = 125;
1006: {
1007: ER_MORE_MATCH_ELEMENT,
1008: "E'' stata trovata pi\u00f9 di una corrispondenza migliore per il metodo elemento {0}" },
1009:
1010: /** Invalid context passed to evaluate */
1011: // public static final int ER_INVALID_CONTEXT_PASSED = 126;
1012: { ER_INVALID_CONTEXT_PASSED,
1013: "Specificato contesto non valido per valutare {0}" },
1014:
1015: /** Pool already exists */
1016: // public static final int ER_POOL_EXISTS = 127;
1017: { ER_POOL_EXISTS, "Pool gi\u00e0 esistente" },
1018:
1019: /** No driver Name specified */
1020: // public static final int ER_NO_DRIVER_NAME = 128;
1021: { ER_NO_DRIVER_NAME,
1022: "Non \u00e8 stato specificato alcun Nome driver" },
1023:
1024: /** No URL specified */
1025: // public static final int ER_NO_URL = 129;
1026: { ER_NO_URL, "Non \u00e8 stata specificata alcuna URL" },
1027:
1028: /** Pool size is less than one */
1029: // public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
1030: { ER_POOL_SIZE_LESSTHAN_ONE,
1031: "La dimensione del pool \u00e8 inferiore a uno." },
1032:
1033: /** Invalid driver name specified */
1034: // public static final int ER_INVALID_DRIVER = 131;
1035: { ER_INVALID_DRIVER,
1036: "Specificato nome driver non valido." },
1037:
1038: /** Did not find the stylesheet root */
1039: // public static final int ER_NO_STYLESHEETROOT = 132;
1040: { ER_NO_STYLESHEETROOT,
1041: "Impossibile trovare la root del foglio di stile." },
1042:
1043: /** Illegal value for xml:space */
1044: // public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
1045: { ER_ILLEGAL_XMLSPACE_VALUE,
1046: "Valore non valido per xml:space" },
1047:
1048: /** processFromNode failed */
1049: // public static final int ER_PROCESSFROMNODE_FAILED = 134;
1050: { ER_PROCESSFROMNODE_FAILED,
1051: "processFromNode non riuscito" },
1052:
1053: /** The resource [] could not load: */
1054: // public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
1055: { ER_RESOURCE_COULD_NOT_LOAD,
1056: "Impossibile caricare la risorsa [ {0} ]: {1} \n {2} \t {3}" },
1057:
1058: /** Buffer size <=0 */
1059: // public static final int ER_BUFFER_SIZE_LESSTHAN_ZERO = 136;
1060: { ER_BUFFER_SIZE_LESSTHAN_ZERO, "Dimensione buffer <=0" },
1061:
1062: /** Unknown error when calling extension */
1063: // public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
1064: { ER_UNKNOWN_ERROR_CALLING_EXTENSION,
1065: "Errore sconosciuto durante la chiamata all'estensione" },
1066:
1067: /** Prefix {0} does not have a corresponding namespace declaration */
1068: // public static final int ER_NO_NAMESPACE_DECL = 138;
1069: { ER_NO_NAMESPACE_DECL,
1070: "Il prefisso {0} non ha una dichiarazione namaspace corrispondente" },
1071:
1072: /** Element content not allowed for lang=javaclass */
1073: // public static final int ER_ELEM_CONTENT_NOT_ALLOWED = 139;
1074: { ER_ELEM_CONTENT_NOT_ALLOWED,
1075: "Contenuto elemento non consentito per lang=javaclass {0}" },
1076:
1077: /** Stylesheet directed termination */
1078: // public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
1079: { ER_STYLESHEET_DIRECTED_TERMINATION,
1080: "Il foglio di stile ha indirizzato l'interruzione" },
1081:
1082: /** 1 or 2 */
1083: // public static final int ER_ONE_OR_TWO = 141;
1084: { ER_ONE_OR_TWO, "1 o 2" },
1085:
1086: /** 2 or 3 */
1087: // public static final int ER_TWO_OR_THREE = 142;
1088: { ER_TWO_OR_THREE, "2 o 3" },
1089:
1090: /** Could not load {0} (check CLASSPATH), now using just the defaults */
1091: // public static final int ER_COULD_NOT_LOAD_RESOURCE = 143;
1092: {
1093: ER_COULD_NOT_LOAD_RESOURCE,
1094: "Impossibile caricare {0} (controllare CLASSPATH), verranno utilizzati i valori predefiniti." },
1095:
1096: /** Cannot initialize default templates */
1097: // public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
1098: { ER_CANNOT_INIT_DEFAULT_TEMPLATES,
1099: "Impossibile inizializzare le maschere predefinite" },
1100:
1101: /** Result should not be null */
1102: // public static final int ER_RESULT_NULL = 145;
1103: { ER_RESULT_NULL,
1104: "Il risultato non pu\u00f2 essere nullo" },
1105:
1106: /** Result could not be set */
1107: // public static final int ER_RESULT_COULD_NOT_BE_SET = 146;
1108: { ER_RESULT_COULD_NOT_BE_SET,
1109: "Impossibile impostare il risultato" },
1110:
1111: /** No output specified */
1112: // public static final int ER_NO_OUTPUT_SPECIFIED = 147;
1113: { ER_NO_OUTPUT_SPECIFIED,
1114: "Non \u00e8 stato specificato alcun output" },
1115:
1116: /** Can't transform to a Result of type */
1117: // public static final int ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 148;
1118: { ER_CANNOT_TRANSFORM_TO_RESULT_TYPE,
1119: "Impossibile trasformare in un risultato di tipo {0}" },
1120:
1121: /** Can't transform to a Source of type */
1122: // public static final int ER_CANNOT_TRANSFORM_SOURCE_TYPE = 149;
1123: { ER_CANNOT_TRANSFORM_SOURCE_TYPE,
1124: "Impossibile trasformare un''origine di tipo {0}" },
1125:
1126: /** Null content handler */
1127: // public static final int ER_NULL_CONTENT_HANDLER = 150;
1128: { ER_NULL_CONTENT_HANDLER, "Handler contenuto nullo" },
1129:
1130: /** Null error handler */
1131: // public static final int ER_NULL_ERROR_HANDLER = 151;
1132: { ER_NULL_ERROR_HANDLER, "Handler errori nullo" },
1133:
1134: /** parse can not be called if the ContentHandler has not been set */
1135: // public static final int ER_CANNOT_CALL_PARSE = 152;
1136: {
1137: ER_CANNOT_CALL_PARSE,
1138: "non \u00e8 possibile richiamare l'analisi se ContentHandler non \u00e8 stato impostato" },
1139:
1140: /** No parent for filter */
1141: // public static final int ER_NO_PARENT_FOR_FILTER = 153;
1142: { ER_NO_PARENT_FOR_FILTER,
1143: "Nessun principale per il filtro" },
1144:
1145: /** No stylesheet found in: {0}, media */
1146: // public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
1147: { ER_NO_STYLESHEET_IN_MEDIA,
1148: "Nessun foglio di stile trovato in: {0}, supporto= {1}" },
1149:
1150: /** No xml-stylesheet PI found in */
1151: // public static final int ER_NO_STYLESHEET_PI = 155;
1152: { ER_NO_STYLESHEET_PI,
1153: "Nessun PI xml-stylesheet trovato in: {0}" },
1154:
1155: /** No default implementation found */
1156: // public static final int ER_NO_DEFAULT_IMPL = 156;
1157: //{ ER_NO_DEFAULT_IMPL,
1158: // "No default implementation found "},
1159: /** ChunkedIntArray({0}) not currently supported */
1160: // public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
1161: //{ ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
1162: // "ChunkedIntArray({0}) not currently supported"},
1163: /** Offset bigger than slot */
1164: // public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
1165: //{ ER_OFFSET_BIGGER_THAN_SLOT,
1166: // "Offset bigger than slot"},
1167: /** Coroutine not available, id= */
1168: // public static final int ER_COROUTINE_NOT_AVAIL = 159;
1169: //{ ER_COROUTINE_NOT_AVAIL,
1170: // "Coroutine not available, id={0}"},
1171: /** CoroutineManager recieved co_exit() request */
1172: // public static final int ER_COROUTINE_CO_EXIT = 160;
1173: //{ ER_COROUTINE_CO_EXIT,
1174: // "CoroutineManager received co_exit() request"},
1175: /** co_joinCoroutineSet() failed */
1176: // public static final int ER_COJOINROUTINESET_FAILED = 161;
1177: //{ ER_COJOINROUTINESET_FAILED,
1178: // "co_joinCoroutineSet() failed"},
1179: /** Coroutine parameter error () */
1180: // public static final int ER_COROUTINE_PARAM = 162;
1181: //{ ER_COROUTINE_PARAM,
1182: // "Coroutine parameter error ({0})"},
1183: /** UNEXPECTED: Parser doTerminate answers */
1184: // public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
1185: //{ ER_PARSER_DOTERMINATE_ANSWERS,
1186: // "\nUNEXPECTED: Parser doTerminate answers {0}"},
1187: /** parse may not be called while parsing */
1188: // public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
1189: //{ ER_NO_PARSE_CALL_WHILE_PARSING,
1190: // "parse may not be called while parsing"},
1191: /** Error: typed iterator for axis {0} not implemented */
1192: // public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
1193: //{ ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
1194: // "Error: typed iterator for axis {0} not implemented"},
1195: /** Error: iterator for axis {0} not implemented */
1196: // public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
1197: //{ ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
1198: // "Error: iterator for axis {0} not implemented "},
1199: /** Iterator clone not supported */
1200: // public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
1201: //{ ER_ITERATOR_CLONE_NOT_SUPPORTED,
1202: // "Iterator clone not supported"},
1203: /** Unknown axis traversal type */
1204: // public static final int ER_UNKNOWN_AXIS_TYPE = 168;
1205: //{ ER_UNKNOWN_AXIS_TYPE,
1206: // "Unknown axis traversal type: {0}"},
1207: /** Axis traverser not supported */
1208: // public static final int ER_AXIS_NOT_SUPPORTED = 169;
1209: //{ ER_AXIS_NOT_SUPPORTED,
1210: // "Axis traverser not supported: {0}"},
1211: /** No more DTM IDs are available */
1212: // public static final int ER_NO_DTMIDS_AVAIL = 170;
1213: //{ ER_NO_DTMIDS_AVAIL,
1214: // "No more DTM IDs are available"},
1215: /** Not supported */
1216: // public static final int ER_NOT_SUPPORTED = 171;
1217: { ER_NOT_SUPPORTED, "Non supportato: {0}" },
1218:
1219: /** node must be non-null for getDTMHandleFromNode */
1220: // public static final int ER_NODE_NON_NULL = 172;
1221: //{ ER_NODE_NON_NULL,
1222: // "Node must be non-null for getDTMHandleFromNode"},
1223: /** Could not resolve the node to a handle */
1224: // public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
1225: //{ ER_COULD_NOT_RESOLVE_NODE,
1226: // "Could not resolve the node to a handle"},
1227: /** startParse may not be called while parsing */
1228: // public static final int ER_STARTPARSE_WHILE_PARSING = 174;
1229: //{ ER_STARTPARSE_WHILE_PARSING,
1230: // "startParse may not be called while parsing"},
1231: /** startParse needs a non-null SAXParser */
1232: // public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
1233: //{ ER_STARTPARSE_NEEDS_SAXPARSER,
1234: // "startParse needs a non-null SAXParser"},
1235: /** could not initialize parser with */
1236: // public static final int ER_COULD_NOT_INIT_PARSER = 176;
1237: //{ ER_COULD_NOT_INIT_PARSER,
1238: // "could not initialize parser with"},
1239: /** Value for property {0} should be a Boolean instance */
1240: // public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
1241: { ER_PROPERTY_VALUE_BOOLEAN,
1242: "Il valore della propriet\u00e0 {0} deve essere una istanza booleana" },
1243:
1244: /** exception creating new instance for pool */
1245: // public static final int ER_EXCEPTION_CREATING_POOL = 178;
1246: //{ ER_EXCEPTION_CREATING_POOL,
1247: // "exception creating new instance for pool"},
1248: /** Path contains invalid escape sequence */
1249: // public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
1250: //{ ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
1251: // "Path contains invalid escape sequence"},
1252: /** Scheme is required! */
1253: // public static final int ER_SCHEME_REQUIRED = 180;
1254: //{ ER_SCHEME_REQUIRED,
1255: // "Scheme is required!"},
1256: /** No scheme found in URI */
1257: // public static final int ER_NO_SCHEME_IN_URI = 181;
1258: //{ ER_NO_SCHEME_IN_URI,
1259: // "No scheme found in URI: {0}"},
1260: /** No scheme found in URI */
1261: // public static final int ER_NO_SCHEME_INURI = 182;
1262: //{ ER_NO_SCHEME_INURI,
1263: // "No scheme found in URI"},
1264: /** Path contains invalid character: */
1265: // public static final int ER_PATH_INVALID_CHAR = 183;
1266: //{ ER_PATH_INVALID_CHAR,
1267: // "Path contains invalid character: {0}"},
1268: /** Cannot set scheme from null string */
1269: // public static final int ER_SCHEME_FROM_NULL_STRING = 184;
1270: //{ ER_SCHEME_FROM_NULL_STRING,
1271: // "Cannot set scheme from null string"},
1272: /** The scheme is not conformant. */
1273: // public static final int ER_SCHEME_NOT_CONFORMANT = 185;
1274: //{ ER_SCHEME_NOT_CONFORMANT,
1275: // "The scheme is not conformant."},
1276: /** Host is not a well formed address */
1277: // public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
1278: //{ ER_HOST_ADDRESS_NOT_WELLFORMED,
1279: // "Host is not a well formed address"},
1280: /** Port cannot be set when host is null */
1281: // public static final int ER_PORT_WHEN_HOST_NULL = 187;
1282: //{ ER_PORT_WHEN_HOST_NULL,
1283: // "Port cannot be set when host is null"},
1284: /** Invalid port number */
1285: // public static final int ER_INVALID_PORT = 188;
1286: //{ ER_INVALID_PORT,
1287: // "Invalid port number"},
1288: /** Fragment can only be set for a generic URI */
1289: // public static final int ER_FRAG_FOR_GENERIC_URI = 189;
1290: //{ ER_FRAG_FOR_GENERIC_URI,
1291: // "Fragment can only be set for a generic URI"},
1292: /** Fragment cannot be set when path is null */
1293: // public static final int ER_FRAG_WHEN_PATH_NULL = 190;
1294: //{ ER_FRAG_WHEN_PATH_NULL,
1295: // "Fragment cannot be set when path is null"},
1296: /** Fragment contains invalid character */
1297: // public static final int ER_FRAG_INVALID_CHAR = 191;
1298: //{ ER_FRAG_INVALID_CHAR,
1299: // "Fragment contains invalid character"},
1300:
1301: /** Parser is already in use */
1302: // public static final int ER_PARSER_IN_USE = 192;
1303: //{ ER_PARSER_IN_USE,
1304: // "Parser is already in use"},
1305: /** Parser is already in use */
1306: // public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
1307: //{ ER_CANNOT_CHANGE_WHILE_PARSING,
1308: // "Cannot change {0} {1} while parsing"},
1309: /** Self-causation not permitted */
1310: // public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
1311: //{ ER_SELF_CAUSATION_NOT_PERMITTED,
1312: // "Self-causation not permitted"},
1313: /** src attribute not yet supported for */
1314: // public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
1315: { ER_COULD_NOT_FIND_EXTERN_SCRIPT,
1316: "Impossibile richiamare lo script esterno in {0}" },
1317:
1318: /** The resource [] could not be found */
1319: // public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
1320: { ER_RESOURCE_COULD_NOT_FIND,
1321: "Risorsa [ {0} ] non trovata.\n {1}" },
1322:
1323: /** output property not recognized: */
1324: // public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
1325: { ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
1326: "Propriet\u00e0 Output non riconosciuta: {0}" },
1327:
1328: /** Userinfo may not be specified if host is not specified */
1329: // public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
1330: //{ ER_NO_USERINFO_IF_NO_HOST,
1331: // "Userinfo may not be specified if host is not specified"},
1332: /** Port may not be specified if host is not specified */
1333: // public static final int ER_NO_PORT_IF_NO_HOST = 199;
1334: //{ ER_NO_PORT_IF_NO_HOST,
1335: // "Port may not be specified if host is not specified"},
1336: /** Query string cannot be specified in path and query string */
1337: // public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
1338: //{ ER_NO_QUERY_STRING_IN_PATH,
1339: // "Query string cannot be specified in path and query string"},
1340: /** Fragment cannot be specified in both the path and fragment */
1341: // public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
1342: //{ ER_NO_FRAGMENT_STRING_IN_PATH,
1343: // "Fragment cannot be specified in both the path and fragment"},
1344: /** Cannot initialize URI with empty parameters */
1345: // public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
1346: //{ ER_CANNOT_INIT_URI_EMPTY_PARMS,
1347: // "Cannot initialize URI with empty parameters"},
1348: /** Failed creating ElemLiteralResult instance */
1349: // public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
1350: { ER_FAILED_CREATING_ELEMLITRSLT,
1351: "Creazione dell'istanza ElemLiteralResult non riuscita" },
1352:
1353: //Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
1354: // In latest Xalan code base key name is ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
1355: //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
1356: //NOTE: Not only the key name but message has also been changed.
1357:
1358: /** Priority value does not contain a parsable number */
1359: // public static final int ER_VALUE_SHOULD_BE_NUMBER = 204;
1360: { ER_VALUE_SHOULD_BE_NUMBER,
1361: "Il valore di {0} deve contenere un numero analizzabile " },
1362:
1363: /** Value for {0} should equal 'yes' or 'no' */
1364: // public static final int ER_VALUE_SHOULD_EQUAL = 205;
1365: { ER_VALUE_SHOULD_EQUAL,
1366: "Il valore di {0} deve essere uguale a yes o no" },
1367:
1368: /** Failed calling {0} method */
1369: // public static final int ER_FAILED_CALLING_METHOD = 206;
1370: { ER_FAILED_CALLING_METHOD,
1371: "Chiamata al metodo {0} non riuscita" },
1372:
1373: /** Failed creating ElemLiteralResult instance */
1374: // public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
1375: { ER_FAILED_CREATING_ELEMTMPL,
1376: "Creazione dell'istanza ElemTemplateElement non riuscita" },
1377:
1378: /** Characters are not allowed at this point in the document */
1379: // public static final int ER_CHARS_NOT_ALLOWED = 208;
1380: { ER_CHARS_NOT_ALLOWED,
1381: "I caratteri non sono consentiti in questo punto del documento" },
1382:
1383: /** attribute is not allowed on the element */
1384: // public static final int ER_ATTR_NOT_ALLOWED = 209;
1385: { ER_ATTR_NOT_ALLOWED,
1386: "L''attributo \"{0}\" non \u00e8 consentito nell''elemento {1}." },
1387:
1388: /** Method not yet supported */
1389: // public static final int ER_METHOD_NOT_SUPPORTED = 210;
1390: //{ ER_METHOD_NOT_SUPPORTED,
1391: // "Method not yet supported "},
1392: /** Bad value */
1393: // public static final int ER_BAD_VALUE = 211;
1394: { ER_BAD_VALUE, "{0} valore errato {1} " },
1395:
1396: /** attribute value not found */
1397: // public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
1398: { ER_ATTRIB_VALUE_NOT_FOUND,
1399: "Valore attributo {0} non trovato " },
1400:
1401: /** attribute value not recognized */
1402: // public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
1403: { ER_ATTRIB_VALUE_NOT_RECOGNIZED,
1404: "Valore attributo {0} non riconosciuto " },
1405:
1406: /** IncrementalSAXSource_Filter not currently restartable */
1407: // public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
1408: //{ ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
1409: // "IncrementalSAXSource_Filter not currently restartable"},
1410: /** IncrementalSAXSource_Filter not currently restartable */
1411: // public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
1412: //{ ER_XMLRDR_NOT_BEFORE_STARTPARSE,
1413: // "XMLReader not before startParse request"},
1414: /** Attempting to generate a namespace prefix with a null URI */
1415: // public static final int ER_NULL_URI_NAMESPACE = 216;
1416: {
1417: ER_NULL_URI_NAMESPACE,
1418: "E' stato effettuato un tentativo di generare un prefisso spazio nome con un URI nullo" },
1419:
1420: //New ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
1421:
1422: /** Attempting to generate a namespace prefix with a null URI */
1423: // public static final int ER_NUMBER_TOO_BIG = 217;
1424: {
1425: ER_NUMBER_TOO_BIG,
1426: "Si sta effettuando un tentativo di formattare un numero superiore all'intero Long pi\u00f9 grande" },
1427:
1428: //ER_CANNOT_FIND_SAX1_DRIVER
1429:
1430: // public static final int ER_CANNOT_FIND_SAX1_DRIVER = 218;
1431:
1432: { ER_CANNOT_FIND_SAX1_DRIVER,
1433: "Impossibile trovare la classe driver SAX1 {0}" },
1434:
1435: //ER_SAX1_DRIVER_NOT_LOADED
1436: // public static final int ER_SAX1_DRIVER_NOT_LOADED = 219;
1437:
1438: {
1439: ER_SAX1_DRIVER_NOT_LOADED,
1440: "La classe driver SAX1 {0} \u00e8 stata trovata ma non \u00e8 stato possibile caricarla" },
1441:
1442: //ER_SAX1_DRIVER_NOT_INSTANTIATED
1443: // public static final int ER_SAX1_DRIVER_NOT_INSTANTIATED = 220 ;
1444:
1445: {
1446: ER_SAX1_DRIVER_NOT_INSTANTIATED,
1447: "La classe driver SAX1 {0} \u00e8 stata caricata ma non \u00e8 stato possibile instanziarla" },
1448:
1449: // ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER
1450: // public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 221;
1451:
1452: { ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER,
1453: "La classe driver SAX1 {0} non implementa org.xml.sax.Parser" },
1454:
1455: // ER_PARSER_PROPERTY_NOT_SPECIFIED
1456: // public static final int ER_PARSER_PROPERTY_NOT_SPECIFIED = 222;
1457:
1458: { ER_PARSER_PROPERTY_NOT_SPECIFIED,
1459: "Propriet\u00e0 di sistema org.xml.sax.parser non specificata" },
1460:
1461: //ER_PARSER_ARG_CANNOT_BE_NULL
1462: // public static final int ER_PARSER_ARG_CANNOT_BE_NULL = 223 ;
1463:
1464: { ER_PARSER_ARG_CANNOT_BE_NULL,
1465: "L'argomento Parser non pu\u00f2 essere nullo" },
1466:
1467: // ER_FEATURE
1468: // public static final int ER_FEATURE = 224;
1469:
1470: { ER_FEATURE, "Funzione: {0}" },
1471:
1472: // ER_PROPERTY
1473: // public static final int ER_PROPERTY = 225 ;
1474:
1475: { ER_PROPERTY, "Propriet\u00e0: {0}" },
1476:
1477: // ER_NULL_ENTITY_RESOLVER
1478: // public static final int ER_NULL_ENTITY_RESOLVER = 226;
1479:
1480: { ER_NULL_ENTITY_RESOLVER, "Resolver entit\u00e0 nullo" },
1481:
1482: // ER_NULL_DTD_HANDLER
1483: // public static final int ER_NULL_DTD_HANDLER = 227 ;
1484:
1485: { ER_NULL_DTD_HANDLER, "Handler DTD nullo" },
1486:
1487: // No Driver Name Specified!
1488: // public static final int ER_NO_DRIVER_NAME_SPECIFIED = 228;
1489: { ER_NO_DRIVER_NAME_SPECIFIED,
1490: "Non \u00e8 stato specificato alcun nome driver." },
1491:
1492: // No URL Specified!
1493: // public static final int ER_NO_URL_SPECIFIED = 229;
1494: { ER_NO_URL_SPECIFIED,
1495: "Non \u00e8 stato specificato alcun URL." },
1496:
1497: // Pool size is less than 1!
1498: // public static final int ER_POOLSIZE_LESS_THAN_ONE = 230;
1499: { ER_POOLSIZE_LESS_THAN_ONE,
1500: "La dimensione del pool \u00e8 inferiore a 1." },
1501:
1502: // Invalid Driver Name Specified!
1503: // public static final int ER_INVALID_DRIVER_NAME = 231;
1504: { ER_INVALID_DRIVER_NAME,
1505: "Specificato nome driver non valido." },
1506:
1507: // ErrorListener
1508: // public static final int ER_ERRORLISTENER = 232;
1509: { ER_ERRORLISTENER, "ErrorListener" },
1510:
1511: // Programmer's error! expr has no ElemTemplateElement parent!
1512: // public static final int ER_ASSERT_NO_TEMPLATE_PARENT = 233;
1513: { ER_ASSERT_NO_TEMPLATE_PARENT,
1514: "Errore di programmazione. expr senza ElemTemplateElement principale." },
1515:
1516: // Programmer''s assertion in RundundentExprEliminator: {0}
1517: // public static final int ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 234;
1518: { ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
1519: "Asserzione di programma in RedundentExprEliminator: {0}" },
1520:
1521: // Axis traverser not supported: {0}
1522: // public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
1523: //{ ER_AXIS_TRAVERSER_NOT_SUPPORTED,
1524: // "Axis traverser not supported: {0}"},
1525:
1526: // ListingErrorHandler created with null PrintWriter!
1527: // public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = 236;
1528: //{ ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
1529: // "ListingErrorHandler created with null PrintWriter!"},
1530:
1531: // {0}is not allowed in this position in the stylesheet!
1532: // public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
1533: { ER_NOT_ALLOWED_IN_POSITION,
1534: "{0}non \u00e8 consentito in questa posizione in stylesheet" },
1535:
1536: // Non-whitespace text is not allowed in this position in the stylesheet!
1537: // public static final int ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 238;
1538: { ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION,
1539: "Testo Non-whitespace non consentito in questa posizione in stylesheet" },
1540:
1541: // This code is shared with warning codes.
1542: // Illegal value: {1} used for CHAR attribute: {0}. An attribute of type CHAR must be only 1 character!
1543: // public static final int INVALID_TCHAR = 239;
1544: // SystemId Unknown
1545: {
1546: INVALID_TCHAR,
1547: "Valore non valido: {1} utilizzato per l''attributo CHAR: {0}. Un attributo di tipo CHAR deve essere di 1 solo carattere. " },
1548:
1549: // public static final int ER_SYSTEMID_UNKNOWN = 240;
1550: //{ ER_SYSTEMID_UNKNOWN,
1551: // "SystemId Unknown"},
1552:
1553: // Location of error unknown
1554: // public static final int ER_LOCATION_UNKNOWN = 241;
1555: //{ ER_LOCATION_UNKNOWN,
1556: // "Location of error unknown"},
1557:
1558: // Note to translators: The following message is used if the value of
1559: // an attribute in a stylesheet is invalid. "QNAME" is the XML data-type of
1560: // the attribute, and should not be translated. The substitution text {1} is
1561: // the attribute value and {0} is the attribute name.
1562: // INVALID_QNAME
1563:
1564: //The following codes are shared with the warning codes...
1565: // Illegal value: {1} used for QNAME attribute: {0}
1566: // public static final int INVALID_QNAME = 242;
1567: { INVALID_QNAME,
1568: "Valore non valido: {1} utilizzato per l''attributo QNAME: {0}" },
1569:
1570: // Note to translators: The following message is used if the value of
1571: // an attribute in a stylesheet is invalid. "ENUM" is the XML data-type of
1572: // the attribute, and should not be translated. The substitution text {1} is
1573: // the attribute value, {0} is the attribute name, and {2} is a list of valid
1574: // values.
1575: // INVALID_ENUM
1576:
1577: // Illegal value: {1} used for ENUM attribute: {0}. Valid values are: {2}.
1578: // public static final int INVALID_ENUM = 243;
1579: {
1580: INVALID_ENUM,
1581: "Valore non valido: {1} utilizzato per l''attributo ENUM: {0}. I valori validi sono: {2}." },
1582:
1583: // Note to translators: The following message is used if the value of
1584: // an attribute in a stylesheet is invalid. "NMTOKEN" is the XML data-type
1585: // of the attribute, and should not be translated. The substitution text {1} is
1586: // the attribute value and {0} is the attribute name.
1587: // INVALID_NMTOKEN
1588:
1589: // Illegal value: {1} used for NMTOKEN attribute: {0}.
1590: // public static final int INVALID_NMTOKEN = 244;
1591: { INVALID_NMTOKEN,
1592: "Valore non valido: {1} utilizzato per l''attributo NMTOKEN: {0} " },
1593:
1594: // Note to translators: The following message is used if the value of
1595: // an attribute in a stylesheet is invalid. "NCNAME" is the XML data-type
1596: // of the attribute, and should not be translated. The substitution text {1} is
1597: // the attribute value and {0} is the attribute name.
1598: // INVALID_NCNAME
1599:
1600: // Illegal value: {1} used for NCNAME attribute: {0}.
1601: // public static final int INVALID_NCNAME = 245;
1602: { INVALID_NCNAME,
1603: "Valore non valido: {1} utilizzato per l''attributo NCNAME: {0} " },
1604:
1605: // Note to translators: The following message is used if the value of
1606: // an attribute in a stylesheet is invalid. "boolean" is the XSLT data-type
1607: // of the attribute, and should not be translated. The substitution text {1} is
1608: // the attribute value and {0} is the attribute name.
1609: // INVALID_BOOLEAN
1610:
1611: // Illegal value: {1} used for boolean attribute: {0}.
1612: // public static final int INVALID_BOOLEAN = 246;
1613:
1614: { INVALID_BOOLEAN,
1615: "Valore non valido: {1} utilizzato per l''attributo boolean: {0} " },
1616:
1617: // Note to translators: The following message is used if the value of
1618: // an attribute in a stylesheet is invalid. "number" is the XSLT data-type
1619: // of the attribute, and should not be translated. The substitution text {1} is
1620: // the attribute value and {0} is the attribute name.
1621: // INVALID_NUMBER
1622:
1623: // Illegal value: {1} used for number attribute: {0}.
1624: // public static final int INVALID_NUMBER = 247;
1625: { INVALID_NUMBER,
1626: "Valore non valido: {1} utilizzato per l''attributo number: {0} " },
1627:
1628: // End of shared codes...
1629:
1630: // Note to translators: A "match pattern" is a special form of XPath expression
1631: // that is used for matching patterns. The substitution text is the name of
1632: // a function. The message indicates that when this function is referenced in
1633: // a match pattern, its argument must be a string literal (or constant.)
1634: // ER_ARG_LITERAL - new error message for bugzilla //5202
1635:
1636: // Argument to {0} in match pattern must be a literal.
1637: // public static final int ER_ARG_LITERAL = 248;
1638: { ER_ARG_LITERAL,
1639: "L''argomento di {0} nel modello di corrispondenza deve essere letterale. " },
1640:
1641: // Note to translators: The following message indicates that two definitions of
1642: // a variable. A "global variable" is a variable that is accessible everywher
1643: // in the stylesheet.
1644: // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
1645:
1646: // Duplicate global variable declaration.
1647: // public static final int ER_DUPLICATE_GLOBAL_VAR = 249;
1648: { ER_DUPLICATE_GLOBAL_VAR,
1649: "Dichiarazione di variabile globale duplicata. " },
1650:
1651: // Note to translators: The following message indicates that two definitions of
1652: // a variable were encountered.
1653: // ER_DUPLICATE_VAR - new error message for bugzilla #790
1654:
1655: // Duplicate variable declaration.
1656: // public static final int ER_DUPLICATE_VAR = 250;
1657: { ER_DUPLICATE_VAR,
1658: "Dichiarazione di variabile duplicata. " },
1659:
1660: // Note to translators: "xsl:template, "name" and "match" are XSLT keywords
1661: // which must not be translated.
1662: // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
1663:
1664: // xsl:template must have a name or match attribute (or both)
1665: // public static final int ER_TEMPLATE_NAME_MATCH = 251;
1666: { ER_TEMPLATE_NAME_MATCH,
1667: "xsl:template deve avere un attributo name oppure match (o entrambi)" },
1668:
1669: // Note to translators: "exclude-result-prefixes" is an XSLT keyword which
1670: // should not be translated. The message indicates that a namespace prefix
1671: // encountered as part of the value of the exclude-result-prefixes attribute
1672: // was in error.
1673: // ER_INVALID_PREFIX - new error message for bugzilla #788
1674:
1675: // Prefix in exclude-result-prefixes is not valid: {0}
1676: // public static final int ER_INVALID_PREFIX = 252;
1677: { ER_INVALID_PREFIX,
1678: "Prefisso in exclude-result-prefixes non valido: {0}" },
1679:
1680: // Note to translators: An "attribute set" is a set of attributes that can be
1681: // added to an element in the output document as a group. The message indicates
1682: // that there was a reference to an attribute set named {0} that was never
1683: // defined.
1684: // ER_NO_ATTRIB_SET - new error message for bugzilla #782
1685:
1686: // attribute-set named {0} does not exist
1687: // public static final int ER_NO_ATTRIB_SET = 253;
1688: { ER_NO_ATTRIB_SET,
1689: "attribute-set denominato {0} non esiste " },
1690:
1691: // Warnings...
1692:
1693: /** WG_FOUND_CURLYBRACE */
1694: // public static final int WG_FOUND_CURLYBRACE = 1;
1695: { WG_FOUND_CURLYBRACE,
1696: "Rilevato '}' senza una maschera attributo aperta." },
1697:
1698: /** WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR */
1699: // public static final int WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 2;
1700: {
1701: WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR,
1702: "Attenzione: l'attributo count non corrisponde ad un predecessore in xsl:number! Destinazione = {0}" },
1703:
1704: /** WG_EXPR_ATTRIB_CHANGED_TO_SELECT */
1705: // public static final int WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 3;
1706: {
1707: WG_EXPR_ATTRIB_CHANGED_TO_SELECT,
1708: "Sintassi obsoleta: Il nome dell'attributo 'expr' \u00e8 stato modificato in 'select'." },
1709:
1710: /** WG_NO_LOCALE_IN_FORMATNUMBER */
1711: // public static final int WG_NO_LOCALE_IN_FORMATNUMBER = 4;
1712: { WG_NO_LOCALE_IN_FORMATNUMBER,
1713: "Xalan non gestisce ancora il nome locale nella funzione formato-numero." },
1714:
1715: /** WG_LOCALE_NOT_FOUND */
1716: // public static final int WG_LOCALE_NOT_FOUND = 5;
1717: { WG_LOCALE_NOT_FOUND,
1718: "Attenzione: Impossibile trovare la locale per xml:lang={0}" },
1719:
1720: /** WG_CANNOT_MAKE_URL_FROM */
1721: // public static final int WG_CANNOT_MAKE_URL_FROM = 6;
1722: { WG_CANNOT_MAKE_URL_FROM,
1723: "Impossibile ricavare l''URL da: {0}" },
1724:
1725: /** WG_CANNOT_LOAD_REQUESTED_DOC */
1726: // public static final int WG_CANNOT_LOAD_REQUESTED_DOC = 7;
1727: { WG_CANNOT_LOAD_REQUESTED_DOC,
1728: "Impossibile caricare il documento richiesto: {0}" },
1729:
1730: /** WG_CANNOT_FIND_COLLATOR */
1731: // public static final int WG_CANNOT_FIND_COLLATOR = 8;
1732: { WG_CANNOT_FIND_COLLATOR,
1733: "Impossibile trovare Collator per <sort xml:lang={0}" },
1734:
1735: /** WG_FUNCTIONS_SHOULD_USE_URL */
1736: // public static final int WG_FUNCTIONS_SHOULD_USE_URL = 9;
1737: { WG_FUNCTIONS_SHOULD_USE_URL,
1738: "Sintassi obsoleta: l'istruzione functions deve utilizzare un url di {0}" },
1739:
1740: /** WG_ENCODING_NOT_SUPPORTED_USING_UTF8 */
1741: // public static final int WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 10;
1742: { WG_ENCODING_NOT_SUPPORTED_USING_UTF8,
1743: "codifica non supportata: {0}, viene utilizzato UTF-8" },
1744:
1745: /** WG_ENCODING_NOT_SUPPORTED_USING_JAVA */
1746: // public static final int WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 11;
1747: { WG_ENCODING_NOT_SUPPORTED_USING_JAVA,
1748: "codifica non supportata: {0}, viene utilizzato Java {1}" },
1749:
1750: /** WG_SPECIFICITY_CONFLICTS */
1751: // public static final int WG_SPECIFICITY_CONFLICTS = 12;
1752: {
1753: WG_SPECIFICITY_CONFLICTS,
1754: "Sono stati rilevati conflitti di specificit\u00e0: {0} Verr\u00e0 utilizzato l'ultimo trovato nel foglio di stile. " },
1755:
1756: /** WG_PARSING_AND_PREPARING */
1757: // public static final int WG_PARSING_AND_PREPARING = 13;
1758: { WG_PARSING_AND_PREPARING,
1759: "========= Analisi e preparazione {0} ==========" },
1760:
1761: /** WG_ATTR_TEMPLATE */
1762: // public static final int WG_ATTR_TEMPLATE = 14;
1763: { WG_ATTR_TEMPLATE, "Maschera attributo, {0}" },
1764:
1765: /** WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE */
1766: // public static final int WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = 15;
1767: {
1768: WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE,
1769: "Conflitto di corrispondenza tra xsl:strip-space e xsl:preserve-space" },
1770:
1771: /** WG_ATTRIB_NOT_HANDLED */
1772: // public static final int WG_ATTRIB_NOT_HANDLED = 16;
1773: { WG_ATTRIB_NOT_HANDLED,
1774: "Xalan non pu\u00f2 ancora gestire l''attributo {0}." },
1775:
1776: /** WG_NO_DECIMALFORMAT_DECLARATION */
1777: // public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
1778: { WG_NO_DECIMALFORMAT_DECLARATION,
1779: "Nessuna dichiarazione trovata per il formato decimale: {0}" },
1780:
1781: /** WG_OLD_XSLT_NS */
1782: // public static final int WG_OLD_XSLT_NS = 18;
1783: { WG_OLD_XSLT_NS,
1784: "XSLT Namespace mancante o non corretto. " },
1785:
1786: /** WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED */
1787: // public static final int WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 19;
1788: { WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED,
1789: "E' consentita una sola dichiarazione xsl:decimal-format predefinita. " },
1790:
1791: /** WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE */
1792: // public static final int WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 20;
1793: {
1794: WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE,
1795: "I nomi xsl:decimal-format devono essere univoci. Il nome \"{0}\" \u00e8 stato duplicato." },
1796:
1797: /** WG_ILLEGAL_ATTRIBUTE */
1798: //public static final int WG_ILLEGAL_ATTRIBUTE = 21;
1799: { WG_ILLEGAL_ATTRIBUTE,
1800: "{0} ha un attributo non valido: {1}" },
1801:
1802: /** WG_COULD_NOT_RESOLVE_PREFIX */
1803: // public static final int WG_COULD_NOT_RESOLVE_PREFIX = 22;
1804: {
1805: WG_COULD_NOT_RESOLVE_PREFIX,
1806: "Impossibile risolvere il prefisso dello spazio nome: {0}. Il nodo verr\u00e0 ignorato." },
1807:
1808: /** WG_STYLESHEET_REQUIRES_VERSION_ATTRIB */
1809: // public static final int WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 23;
1810: { WG_STYLESHEET_REQUIRES_VERSION_ATTRIB,
1811: "xsl:stylesheet richiede un attributo 'version'. " },
1812:
1813: /** WG_ILLEGAL_ATTRIBUTE_NAME */
1814: // public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
1815: { WG_ILLEGAL_ATTRIBUTE_NAME,
1816: "Nome attributo non valido: {0}" },
1817:
1818: /** WG_ILLEGAL_ATTRIBUTE_VALUE */
1819: // public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
1820: { WG_ILLEGAL_ATTRIBUTE_VALUE,
1821: "Valore non valido utilizzato per l''attributo {0}: {1}" },
1822:
1823: /** WG_EMPTY_SECOND_ARG */
1824: // public static final int WG_EMPTY_SECOND_ARG = 26;
1825: {
1826: WG_EMPTY_SECOND_ARG,
1827: "Il nodeset che risulta dal secondo argomento della funzione documento \u00e8 vuoto. Restituisce un nodeset vuoto. " },
1828:
1829: //Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
1830:
1831: // Note to translators: "name" and "xsl:processing-instruction" are keywords
1832: // and must not be translated.
1833: // WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML
1834:
1835: /** WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
1836: // public static final int WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 27;
1837: {
1838: WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
1839: "Il valore dell'attributo 'name' del nome xsl:processing-instruction non deve essere 'xml'" },
1840:
1841: // Note to translators: "name" and "xsl:processing-instruction" are keywords
1842: // and must not be translated. "NCName" is an XML data-type and must not be
1843: // translated.
1844: // WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME
1845:
1846: /** WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
1847: // public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;
1848: {
1849: WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
1850: "Il valore dell'attributo 'name' di xsl:processing-instruction deve essere un NCName valido: {0}" },
1851:
1852: // Note to translators: This message is reported if the stylesheet that is
1853: // being processed attempted to construct an XML document with an attribute in a
1854: // place other than on an element. The substitution text specifies the name of
1855: // the attribute.
1856: // WG_ILLEGAL_ATTRIBUTE_POSITION
1857:
1858: /** WG_ILLEGAL_ATTRIBUTE_POSITION */
1859: // public static final int WG_ILLEGAL_ATTRIBUTE_POSITION = 29;
1860: {
1861: WG_ILLEGAL_ATTRIBUTE_POSITION,
1862: "Impossibile aggiungere l''attributo {0} dopo i nodi secondari o prima che sia prodotto un elemento. L''attributo verr\u00e0 ignorato. " },
1863:
1864: //Check: WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
1865:
1866: // Other miscellaneous text used inside the code...
1867: { "ui_language", "it" },
1868: { "help_language", "it" },
1869: { "language", "it" },
1870: { "BAD_CODE",
1871: "Il parametro per createMessage fuori limite" },
1872: { "FORMAT_FAILED",
1873: "Rilevata eccezione durante la chiamata messageFormat" },
1874: { "version", ">>>>>>> Versione Xalan " },
1875: { "version2", "<<<<<<<" },
1876: { "yes", "s\u00ec" },
1877: { "line", "Riga #" },
1878: { "column", "Colonna #" },
1879: { "xsldone", "XSLProcessor: eseguito" },
1880:
1881: // Note to translators: The following messages provide usage information
1882: // for the Xalan Process command line. "Process" is the name of a Java class,
1883: // and should not be translated.
1884: { "xslProc_option",
1885: "Opzioni classe Process riga comandi Xalan-J: " },
1886: { "xslProc_option",
1887: "Opzioni classe Process riga comandi Xalan-J\u003a" },
1888: { "xslProc_invalid_xsltc_option",
1889: "Opzione {0} non supportata in modalit\u00e0. " },
1890: { "xslProc_invalid_xalan_option",
1891: "L''opzione {0} pu\u00f2 essere utilizzata solo con -XSLTC." },
1892: {
1893: "xslProc_no_input",
1894: "Errore: Nessun foglio di stile o xml di immissione specificato. Eseguire questo comando senza opzioni per istruzioni sull'utilizzo. " },
1895: { "xslProc_common_options", "-Opzioni comuni-" },
1896: { "xslProc_xalan_options", "-Opzioni per Xalan-" },
1897: { "xslProc_xsltc_options", "-Opzioni per XSLTC-" },
1898: { "xslProc_return_to_continue",
1899: "(premere <invio> per continuare)" },
1900:
1901: // Note to translators: The option name and the parameter name do not need to
1902: // be translated. Only translate the messages in parentheses. Note also that
1903: // leading whitespace in the messages is used to indent the usage information
1904: // for each option in the English messages.
1905: // Do not translate the keywords: XSLTC, SAX, DOM and DTM.
1906: { "optionXSLTC",
1907: " [-XSLTC (utilizza XSLTC per la trasformazioni)]" },
1908: { "optionIN", " [-IN inputXMLURL]" },
1909: { "optionXSL", " [-XSL XSLTransformationURL]" },
1910: { "optionOUT", " [-OUT outputFileName]" },
1911: { "optionLXCIN",
1912: " [-LXCIN compiledStylesheetFileNameIn]" },
1913: { "optionLXCOUT",
1914: " [-LXCOUT compiledStylesheetFileNameOutOut]" },
1915: { "optionPARSER",
1916: " [-PARSER nome classe completo del collegamento parser]" },
1917: { "optionE",
1918: " [-E (non espandere i riferimenti entit\u00e0)]" },
1919: { "optionV",
1920: " [-E (non espandere i riferimenti entit\u00e0)]" },
1921: { "optionQC",
1922: " [-QC (Non visualizzare avvertenze conflitti modelli)]" },
1923: { "optionQ", " [-Q (Modalit\u00e0 non interattiva)]" },
1924: {
1925: "optionLF",
1926: " [-LF (Utilizza il caricamento riga solo sull'output {valore predefinito: CR/LF})]" },
1927: {
1928: "optionCR",
1929: " [-CR (Utilizza il ritorno a capo solo sull'output {valore predefinito: CR/LF})]" },
1930: {
1931: "optionESCAPE",
1932: " [-ESCAPE (specifica quali caratteri saltare {valore predefinito: <>&\"\'\\r\\n}]" },
1933: { "optionINDENT",
1934: " [-INDENT (Controlla il numero dei rientri {valore predefinito: 0})]" },
1935: { "optionTT",
1936: " [-TT (Traccia le maschere quando vengono richiamate.)]" },
1937: { "optionTG",
1938: " [-TG (Traccia ogni evento di generazione.)]" },
1939: { "optionTS",
1940: " [-TS (Traccia ogni evento di selezione.)]" },
1941: { "optionTTC",
1942: " [-TTC (Traccia il secondario della maschera quando viene elaborato.)]" },
1943: { "optionTCLASS",
1944: " [-TCLASS (classe TraceListener per le estensioni di traccia.)]" },
1945: {
1946: "optionVALIDATE",
1947: " [-VALIDATE (Imposta se eseguire la convalida. Il valore predefinito per la convalida \u00e8 disattivato.)]" },
1948: { "optionEDUMP",
1949: " [-EDUMP {nome file facoltativo} (Eseguire stackdump in caso di errori.)]" },
1950: { "optionXML",
1951: " [-XML (Utilizza la formattazione XML e aggiunge intestazione XML.)]" },
1952: { "optionTEXT",
1953: " [-TEXT (Utilizza la formattazione Testo semplice.)]" },
1954: { "optionHTML",
1955: " [-HTML (Utilizza la formattazione HTML.)]" },
1956: { "optionPARAM",
1957: " [-PARAM nome espressione (imposta un parametro del foglio di stile)]" },
1958: { "noParsermsg1", "Elaborazione XSL non riuscita." },
1959: { "noParsermsg2", "** Impossibile trovare il parser **" },
1960: { "noParsermsg3", "Controllare il classpath." },
1961: { "noParsermsg4",
1962: "Se non si possiede IBM XML Parser per Java, \u00e8 possibile scaricarlo da" },
1963: { "noParsermsg5",
1964: "IBM AlphaWorks: http://www.alphaworks.ibm.com/formula/xml" },
1965: {
1966: "optionURIRESOLVER",
1967: " [-URIRESOLVER nome classe completo (URIResolver da utilizzare per risolvere gli URI)]" },
1968: {
1969: "optionENTITYRESOLVER",
1970: " [-ENTITYRESOLVER nome classe completo (EntityResolver da utilizzare per risolvere le entit\u00e0)]" },
1971: {
1972: "optionCONTENTHANDLER",
1973: " [-CONTENTHANDLER nome classe completo (ContentHandler da utilizzare per serializzare l'output)]" },
1974: { "optionLINENUMBERS",
1975: " [-L utilizza i numeri riga per il documento di origine]" },
1976:
1977: // Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
1978:
1979: {
1980: "optionMEDIA",
1981: " [-MEDIA mediaType (utilizza l'attributo media per individuare il foglio di stile associato ad un documento.)]" },
1982: {
1983: "optionFLAVOR",
1984: " [-FLAVOR flavorName (Utilizza in modo esplicito s2s=SAX oppure d2d=DOM per eseguire la trasformazione.)] " }, // Added by sboag/scurcuru; experimental
1985: {
1986: "optionDIAG",
1987: " [-DIAG (Visualizza il tempo impiegato in millisecondi per la trasformazione.)]" },
1988: {
1989: "optionINCREMENTAL",
1990: " [-INCREMENTAL (richiede la costruzione DTM incrementale impostando http://xml.apache.org/xalan/features/incremental true.)]" },
1991: {
1992: "optionNOOPTIMIMIZE",
1993: " [-NOOPTIMIMIZE (non richiede alcuna elaborazione di ottimizzazione del foglio di stile impostando http://xml.apache.org/xalan/features/optimize false.)]" },
1994: {
1995: "optionRL",
1996: " [-RL recursionlimit (limite numerico asserzioni nella profondit\u00e0 ricorsiva del foglio di stile.)]" },
1997: { "optionXO",
1998: " [-XO [transletName] (assegna il nome al translet generato)]" },
1999: {
2000: "optionXD",
2001: " [-XD destinationDirectory (specifica una directory di destinazione per il translet)]" },
2002: {
2003: "optionXJ",
2004: " [-XJ jarfile (raggruppa la classi translet in un file jar di nome <jarfile>)]" },
2005: {
2006: "optionXP",
2007: " [-XP package (specifica un prefisso di nome pacchetto per tutte le classi translet generate)]" },
2008:
2009: //AddITIONAL STRINGS that need L10n
2010: // Note to translators: The following message describes usage of a particular
2011: // command-line option that is used to enable the "template inlining"
2012: // optimization. The optimization involves making a copy of the code
2013: // generated for a template in another template that refers to it.
2014: { "optionXN",
2015: " [-XN (abilita l'allineamento della maschera)]" },
2016: { "optionXX",
2017: " [-XX (attiva ulteriori emissioni di messaggi di debug)]" },
2018: { "optionXT",
2019: " [-XT (utilizza il translet per la trasformazione, se possibile)]" },
2020: { "diagTiming",
2021: " --------- La trasformazione di {0} utilizzando {1} ha impiegato {2} ms" },
2022: { "recursionTooDeep",
2023: "Nidificazione della maschera troppo elevata. nesting = {0}, maschera {1} {2}" },
2024: { "nameIs", "il nome \u00e8 " },
2025: { "matchPatternIs",
2026: "il modello di corrispondenza \u00e8 " }
2027:
2028: };
2029: }
2030:
2031: // ================= INFRASTRUCTURE ======================
2032:
2033: /** String for use when a bad error code was encountered. */
2034: public static final String BAD_CODE = "BAD_CODE";
2035:
2036: /** String for use when formatting of the error string failed. */
2037: public static final String FORMAT_FAILED = "FORMAT_FAILED";
2038:
2039: /** General error string. */
2040: public static final String ERROR_STRING = "#error";
2041:
2042: /** String to prepend to error messages. */
2043: public static final String ERROR_HEADER = "Errore: ";
2044:
2045: /** String to prepend to warning messages. */
2046: public static final String WARNING_HEADER = "Avvertenza: ";
2047:
2048: /** String to specify the XSLT module. */
2049: public static final String XSL_HEADER = "XSLT ";
2050:
2051: /** String to specify the XML parser module. */
2052: public static final String XML_HEADER = "XML ";
2053:
2054: /** I don't think this is used any more.
2055: * @deprecated */
2056: public static final String QUERY_HEADER = "MODELLO ";
2057:
2058: /**
2059: * Return a named ResourceBundle for a particular locale. This method mimics the behavior
2060: * of ResourceBundle.getBundle().
2061: *
2062: * @param className the name of the class that implements the resource bundle.
2063: * @return the ResourceBundle
2064: * @throws MissingResourceException
2065: */
2066: public static final XSLTErrorResources loadResourceBundle(
2067: String className) throws MissingResourceException {
2068:
2069: Locale locale = Locale.getDefault();
2070: String suffix = getResourceSuffix(locale);
2071:
2072: try {
2073:
2074: // first try with the given locale
2075: return (XSLTErrorResources) ResourceBundle.getBundle(
2076: className + suffix, locale);
2077: } catch (MissingResourceException e) {
2078: try // try to fall back to en_US if we can't load
2079: {
2080:
2081: // Since we can't find the localized property file,
2082: // fall back to en_US.
2083: return (XSLTErrorResources) ResourceBundle.getBundle(
2084: className, new Locale("it", "IT"));
2085: } catch (MissingResourceException e2) {
2086:
2087: // Now we are really in trouble.
2088: // very bad, definitely very bad...not going to get very far
2089: throw new MissingResourceException(
2090: "Could not load any resource bundles.",
2091: className, "");
2092: }
2093: }
2094: }
2095:
2096: /**
2097: * Return the resource file suffic for the indicated locale
2098: * For most locales, this will be based the language code. However
2099: * for Chinese, we do distinguish between Taiwan and PRC
2100: *
2101: * @param locale the locale
2102: * @return an String suffix which canbe appended to a resource name
2103: */
2104: private static final String getResourceSuffix(Locale locale) {
2105:
2106: String suffix = "_" + locale.getLanguage();
2107: String country = locale.getCountry();
2108:
2109: if (country.equals("TW"))
2110: suffix += "_" + country;
2111:
2112: return suffix;
2113: }
2114:
2115: }
|