1. /*
  2. * @(#)XPATHErrorResources_es.java 1.4 03/05/01
  3. *
  4. * The Apache Software License, Version 1.1
  5. *
  6. *
  7. * Copyright (c) 1999 The Apache Software Foundation. All rights
  8. * reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. *
  14. * 1. Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. *
  17. * 2. Redistributions in binary form must reproduce the above copyright
  18. * notice, this list of conditions and the following disclaimer in
  19. * the documentation and/or other materials provided with the
  20. * distribution.
  21. *
  22. * 3. The end-user documentation included with the redistribution,
  23. * if any, must include the following acknowledgment:
  24. * "This product includes software developed by the
  25. * Apache Software Foundation (http://www.apache.org/)."
  26. * Alternately, this acknowledgment may appear in the software itself,
  27. * if and wherever such third-party acknowledgments normally appear.
  28. *
  29. * 4. The names "Xalan" and "Apache Software Foundation" must
  30. * not be used to endorse or promote products derived from this
  31. * software without prior written permission. For written
  32. * permission, please contact apache@apache.org.
  33. *
  34. * 5. Products derived from this software may not be called "Apache",
  35. * nor may "Apache" appear in their name, without prior written
  36. * permission of the Apache Software Foundation.
  37. *
  38. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  39. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  40. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  41. * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  42. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  43. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  44. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  45. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  46. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  47. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  48. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  49. * SUCH DAMAGE.
  50. * ====================================================================
  51. *
  52. * This software consists of voluntary contributions made by many
  53. * individuals on behalf of the Apache Software Foundation and was
  54. * originally based on software copyright (c) 2002, Sun Microsystems,
  55. * Inc., http://www.sun.com. For more
  56. * information on the Apache Software Foundation, please see
  57. * <http://www.apache.org/>.
  58. */
  59. package org.apache.xpath.res;
  60. import org.apache.xml.utils.res.XResourceBundleBase;
  61. import java.util.*;
  62. import java.text.DecimalFormat;
  63. /**
  64. * <meta name="usage" content="advanced"/>
  65. * Set up error messages.
  66. * We build a two dimensional array of message keys and
  67. * message strings. In order to add a new message here,
  68. * you need to first add a Static string constant for the
  69. * Key and update the contents array with Key, Value pair
  70. * Also you need to update the count of messages(MAX_CODE)or
  71. * the count of warnings(MAX_WARNING) [ Information purpose only]
  72. */
  73. public class XPATHErrorResources_es extends XPATHErrorResources
  74. {
  75. /** Field MAX_CODE */
  76. public static final int MAX_CODE = 116; // this is needed to keep track of the number of messages
  77. /** Field MAX_WARNING */
  78. public static final int MAX_WARNING = 11; // this is needed to keep track of the number of warnings
  79. /** Field MAX_OTHERS */
  80. public static final int MAX_OTHERS = 20;
  81. /** Field MAX_MESSAGES */
  82. public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
  83. // Error messages...
  84. public static final Object[][] contents = {
  85. /** Field ERROR0000 */
  86. //public static final int ERROR0000 = 0;
  87. {
  88. "ERROR0000", "{0}"},
  89. /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH */
  90. //public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
  91. {
  92. ER_CURRENT_NOT_ALLOWED_IN_MATCH,
  93. "Esta funci\u00f3n no se permite en un patr\u00f3n de b\u00fasqueda"},
  94. /** Field ER_CURRENT_TAKES_NO_ARGS */
  95. //public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
  96. {
  97. ER_CURRENT_TAKES_NO_ARGS,
  98. "Esta funci\u00f3n no acepta argumentos."},
  99. /** Field ER_DOCUMENT_REPLACED */
  100. //public static final int ER_DOCUMENT_REPLACED = 3;
  101. {
  102. ER_DOCUMENT_REPLACED,
  103. "la implementaci\u00f3n de la funci\u00f3n del documento() se ha sustituido por org.apache.xalan.xslt.FuncDocument.!"},
  104. /** Field ER_CONTEXT_HAS_NO_OWNERDOC */
  105. //public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
  106. {
  107. ER_CONTEXT_HAS_NO_OWNERDOC,
  108. "el contexto no tiene documento propietario!"},
  109. /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS */
  110. //public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
  111. {
  112. ER_LOCALNAME_HAS_TOO_MANY_ARGS,
  113. "el nombre local tiene demasiados argumentos."},
  114. /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS */
  115. //public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
  116. {
  117. ER_NAMESPACEURI_HAS_TOO_MANY_ARGS,
  118. "el URI del espacio de nombre tiene demasiados argumentos."},
  119. /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS */
  120. //public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
  121. {
  122. ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS,
  123. "el espacio est\u00e1ndar tiene demasiados argumentos."},
  124. /** Field ER_NUMBER_HAS_TOO_MANY_ARGS */
  125. //public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
  126. {
  127. ER_NUMBER_HAS_TOO_MANY_ARGS,
  128. "el n\u00famero tiene demasiados argumentos."},
  129. /** Field ER_NAME_HAS_TOO_MANY_ARGS */
  130. //public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
  131. {
  132. ER_NAME_HAS_TOO_MANY_ARGS, "el nombre tiene demasiados argumentos."},
  133. /** Field ER_STRING_HAS_TOO_MANY_ARGS */
  134. //public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
  135. {
  136. ER_STRING_HAS_TOO_MANY_ARGS,
  137. "la cadena tiene demasiados argumentos."},
  138. /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS */
  139. //public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
  140. {
  141. ER_STRINGLENGTH_HAS_TOO_MANY_ARGS,
  142. "la longitud de la cadena tiene demasiados argumentos."},
  143. /** Field ER_TRANSLATE_TAKES_3_ARGS */
  144. //public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
  145. {
  146. ER_TRANSLATE_TAKES_3_ARGS,
  147. "La funci\u00f3n de traducci\u00f3n utiliza tres argumentos!"},
  148. /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG */
  149. //public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
  150. {
  151. ER_UNPARSEDENTITYURI_TAKES_1_ARG,
  152. "La funci\u00f3n unparsed-entity-uri deber\u00eda utilizar un argumento!"},
  153. /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED */
  154. //public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
  155. {
  156. ER_NAMESPACEAXIS_NOT_IMPLEMENTED,
  157. "no se ha implementado todav\u00eda el eje de espacio de nombre!"},
  158. /** Field ER_UNKNOWN_AXIS */
  159. //public static final int ER_UNKNOWN_AXIS = 15;
  160. {
  161. ER_UNKNOWN_AXIS, "eje desconocido: {0}"},
  162. /** Field ER_UNKNOWN_MATCH_OPERATION */
  163. //public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
  164. {
  165. ER_UNKNOWN_MATCH_OPERATION, "operaci\u00f3n de b\u00fasqueda desconocida!"},
  166. /** Field ER_INCORRECT_ARG_LENGTH */
  167. //public static final int ER_INCORRECT_ARG_LENGTH = 17;
  168. {
  169. ER_INCORRECT_ARG_LENGTH,
  170. "La longitud de los argumentos de la prueba del nodo de instrucci\u00f3n de procesamiento () es incorrecta!"},
  171. /** Field ER_CANT_CONVERT_TO_NUMBER */
  172. //public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
  173. {
  174. ER_CANT_CONVERT_TO_NUMBER,
  175. "No se puede convertir {0} en un n\u00famero."},
  176. /** Field ER_CANT_CONVERT_TO_NODELIST */
  177. //public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
  178. {
  179. ER_CANT_CONVERT_TO_NODELIST,
  180. "No se puede convertir {0} en una NodeList."},
  181. /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST */
  182. //public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
  183. {
  184. ER_CANT_CONVERT_TO_MUTABLENODELIST,
  185. "No se puede convertir {0} en un NodeSetDTM!."},
  186. /** Field ER_CANT_CONVERT_TO_TYPE */
  187. //public static final int ER_CANT_CONVERT_TO_TYPE = 21;
  188. {
  189. ER_CANT_CONVERT_TO_TYPE,
  190. "No se puede convertir {0} en un tipo//{1}"},
  191. /** Field ER_EXPECTED_MATCH_PATTERN */
  192. //public static final int ER_EXPECTED_MATCH_PATTERN = 22;
  193. {
  194. ER_EXPECTED_MATCH_PATTERN,
  195. "Patr\u00f3n de b\u00fasqueda esperado en getMatchScore!"},
  196. /** Field ER_COULDNOT_GET_VAR_NAMED */
  197. //public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
  198. {
  199. ER_COULDNOT_GET_VAR_NAMED,
  200. "No se ha podido obtener una variable con el nombre {0}"},
  201. /** Field ER_UNKNOWN_OPCODE */
  202. //public static final int ER_UNKNOWN_OPCODE = 24;
  203. {
  204. ER_UNKNOWN_OPCODE, "ERROR! C\u00f3digo de operaci\u00f3n desconocido: {0}"},
  205. /** Field ER_EXTRA_ILLEGAL_TOKENS */
  206. //public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
  207. {
  208. ER_EXTRA_ILLEGAL_TOKENS, "Tokens adicionales no permitidos: {0}"},
  209. /** Field ER_EXPECTED_DOUBLE_QUOTE */
  210. //public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
  211. {
  212. ER_EXPECTED_DOUBLE_QUOTE,
  213. "error de entrecomillado... debe usar comillas dobles!"},
  214. /** Field ER_EXPECTED_SINGLE_QUOTE */
  215. //public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
  216. {
  217. ER_EXPECTED_SINGLE_QUOTE,
  218. "error de entrecomillado... debe usar comillas sencillas!"},
  219. /** Field ER_EMPTY_EXPRESSION */
  220. //public static final int ER_EMPTY_EXPRESSION = 28;
  221. {
  222. ER_EMPTY_EXPRESSION, "Expresi\u00f3n vac\u00eda!"},
  223. /** Field ER_EXPECTED_BUT_FOUND */
  224. //public static final int ER_EXPECTED_BUT_FOUND = 29;
  225. {
  226. ER_EXPECTED_BUT_FOUND, "Esperados {0}, pero encontrados: {1}"},
  227. /** Field ER_INCORRECT_PROGRAMMER_ASSERTION */
  228. //public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
  229. {
  230. ER_INCORRECT_PROGRAMMER_ASSERTION,
  231. "El aserto del programador es incorrecto! - {0}"},
  232. /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL */
  233. //public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
  234. {
  235. ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL,
  236. "El argumento booleano(...) ya no es opcional con el borrador 19990709 Xpath."},
  237. /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG */
  238. //public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
  239. {
  240. ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG,
  241. "Se ha encontrado ',' pero no hay ning\u00fan argumento anterior!"},
  242. /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG */
  243. //public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
  244. {
  245. ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG,
  246. "Se ha encontrado ',' pero no hay ning\u00fan argumento posterior!"},
  247. /** Field ER_PREDICATE_ILLEGAL_SYNTAX */
  248. //public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
  249. {
  250. ER_PREDICATE_ILLEGAL_SYNTAX,
  251. "La sintaxis '..[predicate]' no es v\u00e1lida. Sustituir por 'self::node()[predicate]'."},
  252. /** Field ER_ILLEGAL_AXIS_NAME */
  253. //public static final int ER_ILLEGAL_AXIS_NAME = 35;
  254. {
  255. ER_ILLEGAL_AXIS_NAME, "nombre de eje no v\u00e1lido: {0}"},
  256. /** Field ER_UNKNOWN_NODETYPE */
  257. //public static final int ER_UNKNOWN_NODETYPE = 36;
  258. {
  259. ER_UNKNOWN_NODETYPE, "Tipo de nodo desconocido: {0}"},
  260. /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED */
  261. //public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
  262. {
  263. ER_PATTERN_LITERAL_NEEDS_BE_QUOTED,
  264. "La cadena literal del patr\u00f3 ({0}) requiere entrecomillado!"},
  265. /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER */
  266. //public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
  267. {
  268. ER_COULDNOT_BE_FORMATTED_TO_NUMBER,
  269. "No se ha podido dar formato num\u00e9rico a {0}!"},
  270. /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON */
  271. //public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
  272. {
  273. ER_COULDNOT_CREATE_XMLPROCESSORLIAISON,
  274. "No se ha podido crear un v\u00ednculo XML TransformerFactory: {0}"},
  275. /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP */
  276. //public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
  277. {
  278. ER_DIDNOT_FIND_XPATH_SELECT_EXP,
  279. "Error! No se ha encontrado la expresi\u00f3n de selecci\u00f3n de xpath (-seleccionar)."},
  280. /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH */
  281. //public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
  282. {
  283. ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH,
  284. "ERROR! No se ha podido encontra ENDOP despu\u00e9s de OP_LOCATIONPATH."},
  285. /** Field ER_ERROR_OCCURED */
  286. //public static final int ER_ERROR_OCCURED = 42;
  287. {
  288. ER_ERROR_OCCURED, "Se ha producido un error!"},
  289. /** Field ER_ILLEGAL_VARIABLE_REFERENCE */
  290. //public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
  291. {
  292. ER_ILLEGAL_VARIABLE_REFERENCE,
  293. "Referencia variable atribuida a una variable fuera de contexto o sin definici\u00f3n! Nombre = {0}"},
  294. /** Field ER_AXES_NOT_ALLOWED */
  295. //public static final int ER_AXES_NOT_ALLOWED = 44;
  296. {
  297. ER_AXES_NOT_ALLOWED,
  298. "S\u00f3lo se permiten los ejes child:: y attribute:: en los patrones de b\u00fasqueda! Ejes incompatibles = {0}"},
  299. /** Field ER_KEY_HAS_TOO_MANY_ARGS */
  300. //public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
  301. {
  302. ER_KEY_HAS_TOO_MANY_ARGS,
  303. "El n\u00famero de argumentos de la clave es incorrecto."},
  304. /** Field ER_COUNT_TAKES_1_ARG */
  305. //public static final int ER_COUNT_TAKES_1_ARG = 46;
  306. {
  307. ER_COUNT_TAKES_1_ARG,
  308. "La funci\u00f3n de c\u00f3mputo deber\u00eda utilizar un argumento!"},
  309. /** Field ER_COULDNOT_FIND_FUNCTION */
  310. //public static final int ER_COULDNOT_FIND_FUNCTION = 47;
  311. {
  312. ER_COULDNOT_FIND_FUNCTION, "No se ha podido encontrar la funci\u00f3n: {0}"},
  313. /** Field ER_UNSUPPORTED_ENCODING */
  314. //public static final int ER_UNSUPPORTED_ENCODING = 48;
  315. {
  316. ER_UNSUPPORTED_ENCODING, "Codificaci\u00f3n no admitida: {0}"},
  317. /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING */
  318. //public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
  319. {
  320. ER_PROBLEM_IN_DTM_NEXTSIBLING,
  321. "Se ha producido un error en DTM en getNextSibling... intentando restablecer."},
  322. /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL */
  323. //public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
  324. {
  325. ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL,
  326. "Error del programador: no se puede escribir en EmptyNodeList."},
  327. /** Field ER_SETDOMFACTORY_NOT_SUPPORTED */
  328. //public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
  329. {
  330. ER_SETDOMFACTORY_NOT_SUPPORTED,
  331. "XPathContext no admite setDOMFactory!"},
  332. /** Field ER_PREFIX_MUST_RESOLVE */
  333. //public static final int ER_PREFIX_MUST_RESOLVE = 52;
  334. {
  335. ER_PREFIX_MUST_RESOLVE,
  336. "El prefijo debe convertirse en un espacio de nombre: {0}"},
  337. /** Field ER_PARSE_NOT_SUPPORTED */
  338. //public static final int ER_PARSE_NOT_SUPPORTED = 53;
  339. {
  340. ER_PARSE_NOT_SUPPORTED,
  341. "an\u00e1lisis sint\u00e1ctico (fuente InputSource source) no admitido! No se puede abri {0}"},
  342. /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED */
  343. //public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
  344. {
  345. ER_CREATEDOCUMENT_NOT_SUPPORTED,
  346. "createDocument no admitido en XPathContext."},
  347. /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT */
  348. //public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
  349. {
  350. ER_CHILD_HAS_NO_OWNER_DOCUMENT,
  351. "El atributo hijo no tiene documento propietario!"},
  352. /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT */
  353. //public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
  354. {
  355. ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT,
  356. "El atributo hijo no tiene elemento de documento propietario!"},
  357. /** Field ER_SAX_API_NOT_HANDLED */
  358. //public static final int ER_SAX_API_NOT_HANDLED = 57;
  359. {
  360. ER_SAX_API_NOT_HANDLED,
  361. "Caracteres SAX API no manejados por DTM!"},
  362. /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED */
  363. //public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
  364. {
  365. ER_IGNORABLE_WHITESPACE_NOT_HANDLED,
  366. "Espacio en blanco que puede ignorarse no procesado por DTM!"},
  367. /** Field ER_DTM_CANNOT_HANDLE_NODES */
  368. //public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
  369. {
  370. ER_DTM_CANNOT_HANDLE_NODES,
  371. "DTMLiaison no puede manejar nodos de tipo {0}"},
  372. /** Field ER_XERCES_CANNOT_HANDLE_NODES */
  373. //public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
  374. {
  375. ER_XERCES_CANNOT_HANDLE_NODES,
  376. "DOM2Helper no puede manejar nodos de tipo {0}"},
  377. /** Field ER_XERCES_PARSE_ERROR_DETAILS */
  378. //public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
  379. {
  380. ER_XERCES_PARSE_ERROR_DETAILS,
  381. "Error DOM2Helper.parse: ID del sistema - {0} l\u00ednea - {1}"},
  382. /** Field ER_XERCES_PARSE_ERROR */
  383. //public static final int ER_XERCES_PARSE_ERROR = 62;
  384. {
  385. ER_XERCES_PARSE_ERROR, "Error DOM2Helper.parse."},
  386. /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC */
  387. //public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
  388. {
  389. ER_CANT_OUTPUT_TEXT_BEFORE_DOC,
  390. "Advertencia: no puede enviar el texto antes del elemento de documento. Se ignora..."},
  391. /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT */
  392. //public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
  393. {
  394. ER_CANT_HAVE_MORE_THAN_ONE_ROOT,
  395. "No puede haber m\u00e1s de una ra\u00edz en un DOM."},
  396. /** Field ER_INVALID_UTF16_SURROGATE */
  397. //public static final int ER_INVALID_UTF16_SURROGATE = 65;
  398. {
  399. ER_INVALID_UTF16_SURROGATE,
  400. "Se ha detectado un sustituto UTF-16 no v\u00e1lido: {0} ?"},
  401. /** Field ER_OIERROR */
  402. //public static final int ER_OIERROR = 66;
  403. {
  404. ER_OIERROR, "Error de entrada/salida."},
  405. /** Field ER_CANNOT_CREATE_URL */
  406. //public static final int ER_CANNOT_CREATE_URL = 67;
  407. {
  408. ER_CANNOT_CREATE_URL, "No se puede crear url para: {0}"},
  409. /** Field ER_XPATH_READOBJECT */
  410. //public static final int ER_XPATH_READOBJECT = 68;
  411. {
  412. ER_XPATH_READOBJECT, "En XPath.readObject: {0}"},
  413. /** Field ER_XPATH_READOBJECT */
  414. //public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
  415. {
  416. ER_FUNCTION_TOKEN_NOT_FOUND,
  417. "No se ha encontrado el token de funci\u00f3n."},
  418. /** Argument 'localName' is null */
  419. //public static final int ER_ARG_LOCALNAME_NULL = 70;
  420. {
  421. ER_ARG_LOCALNAME_NULL,
  422. "El argumentoArgument 'localName' es nulo."},
  423. /** Can not deal with XPath type: */
  424. //public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
  425. {
  426. ER_CANNOT_DEAL_XPATH_TYPE,
  427. "No puede manejar el tipo XPath: {0}"},
  428. /** This NodeSet is not mutable */
  429. //public static final int ER_NODESET_NOT_MUTABLE = 72;
  430. {
  431. ER_NODESET_NOT_MUTABLE,
  432. "Este NodeSet es inmutable."},
  433. /** This NodeSetDTM is not mutable */
  434. //public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
  435. {
  436. ER_NODESETDTM_NOT_MUTABLE,
  437. " Este NodeSetDTM es inmutable."},
  438. /** Variable not resolvable: */
  439. //public static final int ER_VAR_NOT_RESOLVABLE = 74;
  440. {
  441. ER_VAR_NOT_RESOLVABLE,
  442. "Variable no convertible: {0}"},
  443. /** Null error handler */
  444. //public static final int ER_NULL_ERROR_HANDLER = 75;
  445. {
  446. ER_NULL_ERROR_HANDLER,
  447. "Manejador de errores nulo."},
  448. /** Programmer's assertion: unknown opcode */
  449. //public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
  450. {
  451. ER_PROG_ASSERT_UNKNOWN_OPCODE,
  452. "Aserto del programador: c\u00f3digo de operaci\u00f3n desconocido: {0}"},
  453. /** 0 or 1 */
  454. //public static final int ER_ZERO_OR_ONE = 77;
  455. {
  456. ER_ZERO_OR_ONE,
  457. "0 \u00f3r 1"},
  458. /** rtf() not supported by XRTreeFragSelectWrapper */
  459. //public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
  460. {
  461. ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
  462. "rtf() no admitido por XRTreeFragSelectWrapper"},
  463. /** asNodeIterator() not supported by XRTreeFragSelectWrapper */
  464. //public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
  465. {
  466. ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
  467. "asNodeIterator() no admitido por XRTreeFragSelectWrapper"},
  468. /** fsb() not supported for XStringForChars */
  469. //public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
  470. {
  471. ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS,
  472. "fsb() no admitido para XStringForChars"},
  473. /** Could not find variable with the name of */
  474. //public static final int ER_COULD_NOT_FIND_VAR = 81;
  475. {
  476. ER_COULD_NOT_FIND_VAR,
  477. "No se ha podido encontrar variable con el nombre {0}"},
  478. /** XStringForChars can not take a string for an argument */
  479. //public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
  480. {
  481. ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING,
  482. "XStringForChars no puede utilizar una cadena para un argumento"},
  483. /** The FastStringBuffer argument can not be null */
  484. //public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
  485. {
  486. ER_FASTSTRINGBUFFER_CANNOT_BE_NULL,
  487. "El argumento FastStringBuffer no puede ser nulo"},
  488. /* MANTIS_XALAN CHANGE: BEGIN */
  489. /** 2 or 3 */
  490. //public static final int ER_TWO_OR_THREE = 84;
  491. {
  492. ER_TWO_OR_THREE,
  493. "2 o 3"},
  494. /** Variable accessed before it is bound! */
  495. //public static final int ER_VARIABLE_ACCESSED_BEFORE_BIND = 85;
  496. {
  497. ER_VARIABLE_ACCESSED_BEFORE_BIND,
  498. "Se ha accedido a la variable antes de vincularla!"},
  499. /** XStringForFSB can not take a string for an argument! */
  500. //public static final int ER_FSB_CANNOT_TAKE_STRING = 86;
  501. {
  502. ER_FSB_CANNOT_TAKE_STRING,
  503. "\u00a1XStringForFSB no puede utilizar una cadena como argumento!"},
  504. /** Error! Setting the root of a walker to null! */
  505. //public static final int ER_SETTING_WALKER_ROOT_TO_NULL = 87;
  506. {
  507. ER_SETTING_WALKER_ROOT_TO_NULL,
  508. "\n !!!! \u00a1Error! Se est\u00e1 estableciendo la ra\u00edz de un walker a nulo"},
  509. /** This NodeSetDTM can not iterate to a previous node! */
  510. //public static final int ER_NODESETDTM_CANNOT_ITERATE = 88;
  511. {
  512. ER_NODESETDTM_CANNOT_ITERATE,
  513. "\u00a1Este NodeSetDTM no puede hacer iteraciones a un nodo previo!"},
  514. /** This NodeSet can not iterate to a previous node! */
  515. //public static final int ER_NODESET_CANNOT_ITERATE = 89;
  516. {
  517. ER_NODESET_CANNOT_ITERATE,
  518. "\u00a1Este NodeSet no puede hacer iteraciones a un nodo previo!"},
  519. /** This NodeSetDTM can not do indexing or counting functions! */
  520. //public static final int ER_NODESETDTM_CANNOT_INDEX = 90;
  521. {
  522. ER_NODESETDTM_CANNOT_INDEX,
  523. "\u00a1Este NodeSetDTM no puede generar \u00edndices o funciones de contador!"},
  524. /** This NodeSet can not do indexing or counting functions! */
  525. //public static final int ER_NODESET_CANNOT_INDEX = 91;
  526. {
  527. ER_NODESET_CANNOT_INDEX,
  528. "\u00a1Este NodeSet no puede generar \u00edndices ni funciones de contador!"},
  529. /** Can not call setShouldCacheNodes after nextNode has been called! */
  530. //public static final int ER_CANNOT_CALL_SETSHOULDCACHENODE = 92;
  531. {
  532. ER_CANNOT_CALL_SETSHOULDCACHENODE,
  533. "No se puede invocar setShouldCacheNodes despu\u00e9s de haber invocado nextNode"},
  534. /** {0} only allows {1} arguments */
  535. //public static final int ER_ONLY_ALLOWS = 93;
  536. {
  537. ER_ONLY_ALLOWS,
  538. "{0} s\u00f3lo permite {1} argumentos"},
  539. /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
  540. //public static final int ER_UNKNOWN_STEP = 94;
  541. {
  542. ER_UNKNOWN_STEP,
  543. "Confirmaci\u00f3n del programador en getNextStepPos: stepType desconocido: {0}"},
  544. //Note to translators: A relative location path is a form of XPath expression.
  545. // The message indicates that such an expression was expected following the
  546. // characters '/' or '//', but was not found.
  547. /** Problem with RelativeLocationPath */
  548. //public static final int ER_EXPECTED_REL_LOC_PATH = 95;
  549. {
  550. ER_EXPECTED_REL_LOC_PATH,
  551. "Se esperaba una ruta de destino relativa despu\u00e9s del token '/' o '//'."},
  552. // Note to translators: A location path is a form of XPath expression.
  553. // The message indicates that syntactically such an expression was expected,but
  554. // the characters specified by the substitution text were encountered instead.
  555. /** Problem with LocationPath */
  556. //public static final int ER_EXPECTED_LOC_PATH = 96;
  557. {
  558. ER_EXPECTED_LOC_PATH,
  559. "Se esperaba una ruta de destino, pero se ha encontrado el siguiente token: {0}"},
  560. // Note to translators: A location step is part of an XPath expression.
  561. // The message indicates that syntactically such an expression was expected
  562. // following the specified characters.
  563. /** Problem with Step */
  564. //public static final int ER_EXPECTED_LOC_STEP = 97;
  565. {
  566. ER_EXPECTED_LOC_STEP,
  567. "Se esperaba un paso de ubicaci\u00f3n despu\u00e9s de '/' o '//'."},
  568. // Note to translators: A node test is part of an XPath expression that is
  569. // used to test for particular kinds of nodes. In this case, a node test that
  570. // consists of an NCName followed by a colon and an asterisk or that consists
  571. // of a QName was expected, but was not found.
  572. /** Problem with NodeTest */
  573. //public static final int ER_EXPECTED_NODE_TEST = 98;
  574. {
  575. ER_EXPECTED_NODE_TEST,
  576. "Se esperaba una prueba de nodo coincidente con NCName:* o con QName."},
  577. // Note to translators: A step pattern is part of an XPath expression.
  578. // The message indicates that syntactically such an expression was expected,
  579. // but the specified character was found in the expression instead.
  580. /** Expected step pattern */
  581. //public static final int ER_EXPECTED_STEP_PATTERN = 99;
  582. {
  583. ER_EXPECTED_STEP_PATTERN,
  584. "Se esperaba un patr\u00f3n de pasos, pero se ha encontrado '/' ."},
  585. // Note to translators: A relative path pattern is part of an XPath expression.
  586. // The message indicates that syntactically such an expression was expected,
  587. // but was not found.
  588. /** Expected relative path pattern */
  589. //public static final int ER_EXPECTED_REL_PATH_PATTERN = 100;
  590. {
  591. ER_EXPECTED_REL_PATH_PATTERN,
  592. "Se esperaba un patr\u00f3n de pasos relativo."},
  593. // Note to translators: A QNAME has the syntactic form [NCName:]NCName
  594. // The localname is the portion after the optional colon; the message indicates
  595. // that there is a problem with that part of the QNAME.
  596. /** localname in QNAME should be a valid NCName */
  597. //public static final int ER_ARG_LOCALNAME_INVALID = 101;
  598. {
  599. ER_ARG_LOCALNAME_INVALID,
  600. "El nombre local especificado en QNAME debe ser un nombre NCName v\u00e1lido"},
  601. // Note to translators: A QNAME has the syntactic form [NCName:]NCName
  602. // The prefix is the portion before the optional colon; the message indicates
  603. // that there is a problem with that part of the QNAME.
  604. /** prefix in QNAME should be a valid NCName */
  605. //public static final int ER_ARG_PREFIX_INVALID = 102;
  606. {
  607. ER_ARG_PREFIX_INVALID,
  608. "El prefijo especificado en QNAME debe ser un nombre NCName v\u00e1lido"},
  609. // Note to translators: The substitution text is the name of a data type. The
  610. // message indicates that a value of a particular type could not be converted
  611. // to a value of type string.
  612. /** Field ER_CANT_CONVERT_TO_BOOLEAN */
  613. //public static final int ER_CANT_CONVERT_TO_BOOLEAN = 103;
  614. {
  615. ER_CANT_CONVERT_TO_BOOLEAN,
  616. "No se puede convertir {0} en una instancia booleana."},
  617. // Note to translators: Do not translate ANY_UNORDERED_NODE_TYPE and
  618. // FIRST_ORDERED_NODE_TYPE.
  619. /** Field ER_CANT_CONVERT_TO_SINGLENODE */
  620. //public static final int ER_CANT_CONVERT_TO_SINGLENODE = 104;
  621. {
  622. ER_CANT_CONVERT_TO_SINGLENODE,
  623. "No se puede convertir {0} en un nodo \u00fanico. Este m\u00e9todo getter se aplica a los tipos ANY_UNORDERED_NODE_TYPE y FIRST_ORDERED_NODE_TYPE."},
  624. // Note to translators: Do not translate UNORDERED_NODE_SNAPSHOT_TYPE and
  625. // ORDERED_NODE_SNAPSHOT_TYPE.
  626. /** Field ER_CANT_GET_SNAPSHOT_LENGTH */
  627. //public static final int ER_CANT_GET_SNAPSHOT_LENGTH = 105;
  628. {
  629. ER_CANT_GET_SNAPSHOT_LENGTH,
  630. "No se puede obtener la longitud de la snapshot del tipo: {0}. Este m\u00e9todo getter se aplica a los tipos UNORDERED_NODE_SNAPSHOT_TYPE y ORDERED_NODE_SNAPSHOT_TYPE."},
  631. /** Field ER_NON_ITERATOR_TYPE */
  632. //public static final int ER_NON_ITERATOR_TYPE = 106;
  633. {
  634. ER_NON_ITERATOR_TYPE,
  635. "No se puede hacer iteraciones en un tipo que no permite iteraciones: {0}"},
  636. // Note to translators: This message indicates that the document being operated
  637. // upon changed, so the iterator object that was being used to traverse the
  638. // document has now become invalid.
  639. /** Field ER_DOC_MUTATED */
  640. //public static final int ER_DOC_MUTATED = 107;
  641. {
  642. ER_DOC_MUTATED,
  643. "El documento ha cambiado desde que se envi\u00f3 el resultado. La iteraci\u00f3n no es v\u00e1lida."},
  644. /** Field ER_INVALID_XPATH_TYPE */
  645. //public static final int ER_INVALID_XPATH_TYPE = 108;
  646. {
  647. ER_INVALID_XPATH_TYPE,
  648. "Argumento de tipo XPath no v\u00e1lido: {0}"},
  649. /** Field ER_EMPTY_XPATH_RESULT */
  650. //public static final int ER_EMPTY_XPATH_RESULT = 109;
  651. {
  652. ER_EMPTY_XPATH_RESULT,
  653. "Objeto resultado XPath vac\u00edo"},
  654. /** Field ER_INCOMPATIBLE_TYPES */
  655. //public static final int ER_INCOMPATIBLE_TYPES = 110;
  656. {
  657. ER_INCOMPATIBLE_TYPES,
  658. "El tipo devuelto: {0} no se puede transformar en el tipo especificado: {1}"},
  659. /** Field ER_NULL_RESOLVER */
  660. //public static final int ER_NULL_RESOLVER = 111;
  661. {
  662. ER_NULL_RESOLVER,
  663. "No se puede resolver el prefijo con un convertidor de prefijo nulo."},
  664. // Note to translators: The substitution text is the name of a data type. The
  665. // message indicates that a value of a particular type could not be converted
  666. // to a value of type string.
  667. /** Field ER_CANT_CONVERT_TO_STRING */
  668. //public static final int ER_CANT_CONVERT_TO_STRING = 112;
  669. {
  670. ER_CANT_CONVERT_TO_STRING,
  671. "No se puede convertir {0} en una cadena."},
  672. // Note to translators: Do not translate snapshotItem,
  673. // UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.
  674. /** Field ER_NON_SNAPSHOT_TYPE */
  675. //public static final int ER_NON_SNAPSHOT_TYPE = 113;
  676. {
  677. ER_NON_SNAPSHOT_TYPE,
  678. "No se puede invocar snapshotItem en el tipo: {0}. Este m\u00e9todo se aplica a los tipos UNORDERED_NODE_SNAPSHOT_TYPE y ORDERED_NODE_SNAPSHOT_TYPE."},
  679. // Note to translators: XPathEvaluator is a Java interface name. An
  680. // XPathEvaluator is created with respect to a particular XML document, and in
  681. // this case the expression represented by this object was being evaluated with
  682. // respect to a context node from a different document.
  683. /** Field ER_WRONG_DOCUMENT */
  684. //public static final int ER_WRONG_DOCUMENT = 114;
  685. {
  686. ER_WRONG_DOCUMENT,
  687. "El nodo de contexto no pertenece al documento vinculado a este XPathEvaluator."},
  688. // Note to translators: The XPath expression cannot be evaluated with respect
  689. // to this type of node.
  690. /** Field ER_WRONG_NODETYPE */
  691. //public static final int ER_WRONG_NODETYPE = 115;
  692. {
  693. ER_WRONG_NODETYPE ,
  694. "El tipo de nodo de contexto no es compatible."},
  695. /** Field ER_XPATH_ERROR */
  696. //public static final int ER_XPATH_ERROR = 116;
  697. {
  698. ER_XPATH_ERROR ,
  699. "Error desconocido en XPath."},
  700. // Warnings...
  701. /** Field WG_LOCALE_NAME_NOT_HANDLED */
  702. //public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
  703. {
  704. WG_LOCALE_NAME_NOT_HANDLED,
  705. "No se ha manejado todav\u00eda el nombre locale en la funci\u00f3n!"},
  706. /** Field WG_PROPERTY_NOT_SUPPORTED */
  707. //public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
  708. {
  709. WG_PROPERTY_NOT_SUPPORTED,
  710. "Propiedad XSL no admitida: {0}"},
  711. /** Field WG_DONT_DO_ANYTHING_WITH_NS */
  712. //public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
  713. {
  714. WG_DONT_DO_ANYTHING_WITH_NS,
  715. "Actualmente el espacio de nombres {0} en propiedad debe dejarse como est\u00e1: {1}"},
  716. /** Field WG_SECURITY_EXCEPTION */
  717. //public static final int WG_SECURITY_EXCEPTION = 4;
  718. {
  719. WG_SECURITY_EXCEPTION,
  720. "SecurityException al intentar tener acceso a la propiedad del sistema XSL: {0}"},
  721. /** Field WG_QUO_NO_LONGER_DEFINED */
  722. //public static final int WG_QUO_NO_LONGER_DEFINED = 5;
  723. {
  724. WG_QUO_NO_LONGER_DEFINED,
  725. "Sintaxis antigua: quo(...) ya no viene definida enis XPath"},
  726. /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST */
  727. //public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
  728. {
  729. WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST,
  730. "XPath requiere un objeto derivado para ejecutar nodeTest!"},
  731. /** Field WG_FUNCTION_TOKEN_NOT_FOUND */
  732. //public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
  733. {
  734. WG_FUNCTION_TOKEN_NOT_FOUND,
  735. "No se ha encontrado el token de la funci\u00f3n"},
  736. /** Field WG_COULDNOT_FIND_FUNCTION */
  737. //public static final int WG_COULDNOT_FIND_FUNCTION = 8;
  738. {
  739. WG_COULDNOT_FIND_FUNCTION,
  740. "No se ha podido encontrar la funci\u00f3n: {0}"},
  741. /** Field WG_CANNOT_MAKE_URL_FROM */
  742. //public static final int WG_CANNOT_MAKE_URL_FROM = 9;
  743. {
  744. WG_CANNOT_MAKE_URL_FROM,
  745. "No se puede crear URL desde: {0}"},
  746. /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED */
  747. //public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
  748. {
  749. WG_EXPAND_ENTITIES_NOT_SUPPORTED,
  750. "opci\u00f3n -E no admitida para analizador sint\u00e1ctico DTM"},
  751. /** Field WG_ILLEGAL_VARIABLE_REFERENCE */
  752. //public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
  753. {
  754. WG_ILLEGAL_VARIABLE_REFERENCE,
  755. "VariableReference atribuida a una variable fuera de contexto o sin definici\u00f3n. Nombre = {0}"},
  756. /** Field WG_UNSUPPORTED_ENCODING */
  757. //public static final int WG_UNSUPPORTED_ENCODING = 12;
  758. {
  759. ER_UNSUPPORTED_ENCODING, "Codificaci\u00f3n no admitida: {0}"},
  760. // Other miscellaneous text used inside the code...
  761. { "ui_language", "es"},
  762. { "help_language", "es"},
  763. { "language", "es"},
  764. { "BAD_CODE",
  765. "El par\u00e1metro para createMessage estaba fuera de los l\u00edmites"},
  766. { "FORMAT_FAILED", "Excepci\u00f3n generada la llamada messageFormat"},
  767. { "version", ">>>>>>> Versi\u00f3n Xalan "},
  768. { "version2", "<<<<<<<"},
  769. { "yes", "s\u00ed"},
  770. { "line", "L\u00ednea //"},
  771. { "column", "Columna //"},
  772. { "xsldone", "XSLProcessor: hecho"},
  773. { "xpath_option", "opciones xpath: "},
  774. { "optionIN", " [-in inputXMLURL]"},
  775. { "optionSelect", " [- seleccionar expresi\u00f3n xpath]"},
  776. { "optionMatch",
  777. " [-match coincidir patr\u00f3n de b\u00fasqueda (para diagn\u00f3sticos de b\u00fasqueda)]"},
  778. { "optionAnyExpr",
  779. "O una expresi\u00f3n xpath realizar\u00e1 un volcado de diagn\u00f3stico"},
  780. { "noParsermsg1", "Ha fallado el proceso XSLl"},
  781. { "noParsermsg2", "** No se ha podido encontrar analizador sint\u00e1ctico **"},
  782. { "noParsermsg3", "Compruebe el classpath"},
  783. { "noParsermsg4",
  784. "Si no tiene el analizador sint\u00e1ctico XML para Java de IBM, puede descargarlo desde"},
  785. { "noParsermsg5",
  786. "AlphaWorks de IBM: http://www.alphaworks.ibm.com/formula/xml"},
  787. { "gtone", ">1" },
  788. { "zero", "0" },
  789. { "one", "1" },
  790. { "two" , "2" },
  791. { "three", "3" }
  792. };
  793. // ================= INFRASTRUCTURE ======================
  794. /** Field BAD_CODE */
  795. public static final String BAD_CODE = "BAD_CODE";
  796. /** Field FORMAT_FAILED */
  797. public static final String FORMAT_FAILED = "FORMAT_FAILED";
  798. /** Field ERROR_RESOURCES */
  799. public static final String ERROR_RESOURCES =
  800. "org.apache.xpath.res.XPATHErrorResources";
  801. /** Field ERROR_STRING */
  802. public static final String ERROR_STRING = "//error";
  803. /** Field ERROR_HEADER */
  804. public static final String ERROR_HEADER = "Error: ";
  805. /** Field WARNING_HEADER */
  806. public static final String WARNING_HEADER = "Advertencia: ";
  807. /** Field XSL_HEADER */
  808. public static final String XSL_HEADER = "XSL ";
  809. /** Field XML_HEADER */
  810. public static final String XML_HEADER = "XML ";
  811. /** Field QUERY_HEADER */
  812. public static final String QUERY_HEADER = "PATR\u00d3N ";
  813. /**
  814. * Get the association list.
  815. *
  816. * @return The association list.
  817. */
  818. public Object[][] getContents()
  819. {
  820. return contents;
  821. }
  822. }