1. /*
  2. * @(#)XSLTErrorResources_ko.java 1.3 03/04/28
  3. * The Apache Software License, Version 1.1
  4. *
  5. *
  6. * Copyright (c) 1999 The Apache Software Foundation. All rights
  7. * reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. The end-user documentation included with the redistribution,
  22. * if any, must include the following acknowledgment:
  23. * "This product includes software developed by the
  24. * Apache Software Foundation (http://www.apache.org/)."
  25. * Alternately, this acknowledgment may appear in the software itself,
  26. * if and wherever such third-party acknowledgments normally appear.
  27. *
  28. * 4. The names "Xalan" and "Apache Software Foundation" must
  29. * not be used to endorse or promote products derived from this
  30. * software without prior written permission. For written
  31. * permission, please contact apache@apache.org.
  32. *
  33. * 5. Products derived from this software may not be called "Apache",
  34. * nor may "Apache" appear in their name, without prior written
  35. * permission of the Apache Software Foundation.
  36. *
  37. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40. * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48. * SUCH DAMAGE.
  49. * ====================================================================
  50. *
  51. * This software consists of voluntary contributions made by many
  52. * individuals on behalf of the Apache Software Foundation and was
  53. * originally based on software copyright (c) 2002, Sun Microsystems,
  54. * Inc., http://www.sun.com. For more
  55. * information on the Apache Software Foundation, please see
  56. * <http://www.apache.org/>.
  57. */
  58. package org.apache.xalan.res;
  59. import java.util.MissingResourceException;
  60. import java.util.Locale;
  61. import java.util.ResourceBundle;
  62. import java.util.ListResourceBundle;
  63. import java.text.DecimalFormat;
  64. import org.apache.xalan.templates.Constants;
  65. /**
  66. * Set up error messages.
  67. * We build a two dimensional array of message keys and
  68. * message strings. In order to add a new message here,
  69. * you need to first add a String constant. And
  70. * you need to enter key , value pair as part of contents
  71. * Array. You also need to update MAX_CODE for error strings
  72. * and MAX_WARNING for warnings ( Needed for only information
  73. * purpose )
  74. */
  75. public class XSLTErrorResources_ko extends ListResourceBundle//XSLTErrorResources
  76. {
  77. /** Maximum error messages, this is needed to keep track of the number of messages. */
  78. public static final int MAX_CODE = 253;
  79. /** Maximum warnings, this is needed to keep track of the number of warnings. */
  80. public static final int MAX_WARNING = 29;
  81. /** Maximum misc strings. */
  82. public static final int MAX_OTHERS = 55;
  83. /** Maximum total warnings and error messages. */
  84. public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
  85. /** The lookup table for error messages. */
  86. //\uc0bd\uc785 \uc2dc\uc791
  87. /*
  88. * Static variables
  89. */
  90. public static final String ER_NO_CURLYBRACE = "ER_NO_CURLYBRACE";;
  91. public static final String ER_ILLEGAL_ATTRIBUTE = "ER_ILLEGAL_ATTRIBUTE";
  92. public static final String ER_NULL_SOURCENODE_APPLYIMPORTS = "ER_NULL_SOURCENODE_APPLYIMPORTS";
  93. public static final String ER_CANNOT_ADD = "ER_CANNOT_ADD";
  94. public static final String ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES="ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES";
  95. public static final String ER_NO_NAME_ATTRIB = "ER_NO_NAME_ATTRIB";
  96. public static final String ER_TEMPLATE_NOT_FOUND = "ER_TEMPLATE_NOT_FOUND";
  97. public static final String ER_CANT_RESOLVE_NAME_AVT = "ER_CANT_RESOLVE_NAME_AVT";
  98. public static final String ER_REQUIRES_ATTRIB = "ER_REQUIRES_ATTRIB";
  99. public static final String ER_MUST_HAVE_TEST_ATTRIB = "ER_MUST_HAVE_TEST_ATTRIB";
  100. public static final String ER_BAD_VAL_ON_LEVEL_ATTRIB =
  101. "ER_BAD_VAL_ON_LEVEL_ATTRIB";
  102. public static final String ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML =
  103. "ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML";
  104. public static final String ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME =
  105. "ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME";
  106. public static final String ER_NEED_MATCH_ATTRIB = "ER_NEED_MATCH_ATTRIB";
  107. public static final String ER_NEED_NAME_OR_MATCH_ATTRIB =
  108. "ER_NEED_NAME_OR_MATCH_ATTRIB";
  109. public static final String ER_CANT_RESOLVE_NSPREFIX =
  110. "ER_CANT_RESOLVE_NSPREFIX";
  111. public static final String ER_ILLEGAL_VALUE = "ER_ILLEGAL_VALUE";
  112. public static final String ER_NO_OWNERDOC = "ER_NO_OWNERDOC";
  113. public static final String ER_ELEMTEMPLATEELEM_ERR ="ER_ELEMTEMPLATEELEM_ERR";
  114. public static final String ER_NULL_CHILD = "ER_NULL_CHILD";
  115. public static final String ER_NEED_SELECT_ATTRIB = "ER_NEED_SELECT_ATTRIB";
  116. public static final String ER_NEED_TEST_ATTRIB = "ER_NEED_TEST_ATTRIB";
  117. public static final String ER_NEED_NAME_ATTRIB = "ER_NEED_NAME_ATTRIB";
  118. public static final String ER_NO_CONTEXT_OWNERDOC = "ER_NO_CONTEXT_OWNERDOC";
  119. public static final String ER_COULD_NOT_CREATE_XML_PROC_LIAISON =
  120. "ER_COULD_NOT_CREATE_XML_PROC_LIAISON";
  121. public static final String ER_PROCESS_NOT_SUCCESSFUL =
  122. "ER_PROCESS_NOT_SUCCESSFUL";
  123. public static final String ER_NOT_SUCCESSFUL = "ER_NOT_SUCCESSFUL";
  124. public static final String ER_ENCODING_NOT_SUPPORTED =
  125. "ER_ENCODING_NOT_SUPPORTED";
  126. public static final String ER_COULD_NOT_CREATE_TRACELISTENER =
  127. "ER_COULD_NOT_CREATE_TRACELISTENER";
  128. public static final String ER_KEY_REQUIRES_NAME_ATTRIB =
  129. "ER_KEY_REQUIRES_NAME_ATTRIB";
  130. public static final String ER_KEY_REQUIRES_MATCH_ATTRIB =
  131. "ER_KEY_REQUIRES_MATCH_ATTRIB";
  132. public static final String ER_KEY_REQUIRES_USE_ATTRIB =
  133. "ER_KEY_REQUIRES_USE_ATTRIB";
  134. public static final String ER_REQUIRES_ELEMENTS_ATTRIB =
  135. "ER_REQUIRES_ELEMENTS_ATTRIB";
  136. public static final String ER_MISSING_PREFIX_ATTRIB =
  137. "ER_MISSING_PREFIX_ATTRIB";
  138. public static final String ER_BAD_STYLESHEET_URL = "ER_BAD_STYLESHEET_URL";
  139. public static final String ER_FILE_NOT_FOUND = "ER_FILE_NOT_FOUND";
  140. public static final String ER_IOEXCEPTION = "ER_IOEXCEPTION";
  141. public static final String ER_NO_HREF_ATTRIB = "ER_NO_HREF_ATTRIB";
  142. public static final String ER_STYLESHEET_INCLUDES_ITSELF =
  143. "ER_STYLESHEET_INCLUDES_ITSELF";
  144. public static final String ER_PROCESSINCLUDE_ERROR ="ER_PROCESSINCLUDE_ERROR";
  145. public static final String ER_MISSING_LANG_ATTRIB = "ER_MISSING_LANG_ATTRIB";
  146. public static final String ER_MISSING_CONTAINER_ELEMENT_COMPONENT =
  147. "ER_MISSING_CONTAINER_ELEMENT_COMPONENT";
  148. public static final String ER_CAN_ONLY_OUTPUT_TO_ELEMENT =
  149. "ER_CAN_ONLY_OUTPUT_TO_ELEMENT";
  150. public static final String ER_PROCESS_ERROR = "ER_PROCESS_ERROR";
  151. public static final String ER_UNIMPLNODE_ERROR = "ER_UNIMPLNODE_ERROR";
  152. public static final String ER_NO_SELECT_EXPRESSION ="ER_NO_SELECT_EXPRESSION";
  153. public static final String ER_CANNOT_SERIALIZE_XSLPROCESSOR =
  154. "ER_CANNOT_SERIALIZE_XSLPROCESSOR";
  155. public static final String ER_NO_INPUT_STYLESHEET = "ER_NO_INPUT_STYLESHEET";
  156. public static final String ER_FAILED_PROCESS_STYLESHEET =
  157. "ER_FAILED_PROCESS_STYLESHEET";
  158. public static final String ER_COULDNT_PARSE_DOC = "ER_COULDNT_PARSE_DOC";
  159. public static final String ER_COULDNT_FIND_FRAGMENT =
  160. "ER_COULDNT_FIND_FRAGMENT";
  161. public static final String ER_NODE_NOT_ELEMENT = "ER_NODE_NOT_ELEMENT";
  162. public static final String ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB =
  163. "ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB";
  164. public static final String ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB =
  165. "ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB";
  166. public static final String ER_NO_CLONE_OF_DOCUMENT_FRAG =
  167. "ER_NO_CLONE_OF_DOCUMENT_FRAG";
  168. public static final String ER_CANT_CREATE_ITEM = "ER_CANT_CREATE_ITEM";
  169. public static final String ER_XMLSPACE_ILLEGAL_VALUE =
  170. "ER_XMLSPACE_ILLEGAL_VALUE";
  171. public static final String ER_NO_XSLKEY_DECLARATION =
  172. "ER_NO_XSLKEY_DECLARATION";
  173. public static final String ER_CANT_CREATE_URL = "ER_CANT_CREATE_URL";
  174. public static final String ER_XSLFUNCTIONS_UNSUPPORTED =
  175. "ER_XSLFUNCTIONS_UNSUPPORTED";
  176. public static final String ER_PROCESSOR_ERROR = "ER_PROCESSOR_ERROR";
  177. public static final String ER_NOT_ALLOWED_INSIDE_STYLESHEET =
  178. "ER_NOT_ALLOWED_INSIDE_STYLESHEET";
  179. public static final String ER_RESULTNS_NOT_SUPPORTED =
  180. "ER_RESULTNS_NOT_SUPPORTED";
  181. public static final String ER_DEFAULTSPACE_NOT_SUPPORTED =
  182. "ER_DEFAULTSPACE_NOT_SUPPORTED";
  183. public static final String ER_INDENTRESULT_NOT_SUPPORTED =
  184. "ER_INDENTRESULT_NOT_SUPPORTED";
  185. public static final String ER_ILLEGAL_ATTRIB = "ER_ILLEGAL_ATTRIB";
  186. public static final String ER_UNKNOWN_XSL_ELEM = "ER_UNKNOWN_XSL_ELEM";
  187. public static final String ER_BAD_XSLSORT_USE = "ER_BAD_XSLSORT_USE";
  188. public static final String ER_MISPLACED_XSLWHEN = "ER_MISPLACED_XSLWHEN";
  189. public static final String ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE =
  190. "ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE";
  191. public static final String ER_MISPLACED_XSLOTHERWISE =
  192. "ER_MISPLACED_XSLOTHERWISE";
  193. public static final String ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE =
  194. "ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE";
  195. public static final String ER_NOT_ALLOWED_INSIDE_TEMPLATE =
  196. "ER_NOT_ALLOWED_INSIDE_TEMPLATE";
  197. public static final String ER_UNKNOWN_EXT_NS_PREFIX =
  198. "ER_UNKNOWN_EXT_NS_PREFIX";
  199. public static final String ER_IMPORTS_AS_FIRST_ELEM =
  200. "ER_IMPORTS_AS_FIRST_ELEM";
  201. public static final String ER_IMPORTING_ITSELF = "ER_IMPORTING_ITSELF";
  202. public static final String ER_XMLSPACE_ILLEGAL_VAL ="ER_XMLSPACE_ILLEGAL_VAL";
  203. public static final String ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL =
  204. "ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL";
  205. public static final String ER_SAX_EXCEPTION = "ER_SAX_EXCEPTION";
  206. public static final String ER_FUNCTION_NOT_SUPPORTED =
  207. "ER_FUNCTION_NOT_SUPPORTED";
  208. public static final String ER_XSLT_ERROR = "ER_XSLT_ERROR";
  209. public static final String ER_CURRENCY_SIGN_ILLEGAL=
  210. "ER_CURRENCY_SIGN_ILLEGAL";
  211. public static final String ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM =
  212. "ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM";
  213. public static final String ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER =
  214. "ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER";
  215. public static final String ER_REDIRECT_COULDNT_GET_FILENAME =
  216. "ER_REDIRECT_COULDNT_GET_FILENAME";
  217. public static final String ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT =
  218. "ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT";
  219. public static final String ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX =
  220. "ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX";
  221. public static final String ER_MISSING_NS_URI = "ER_MISSING_NS_URI";
  222. public static final String ER_MISSING_ARG_FOR_OPTION =
  223. "ER_MISSING_ARG_FOR_OPTION";
  224. public static final String ER_INVALID_OPTION = "ER_INVALID_OPTION";
  225. public static final String ER_MALFORMED_FORMAT_STRING =
  226. "ER_MALFORMED_FORMAT_STRING";
  227. public static final String ER_STYLESHEET_REQUIRES_VERSION_ATTRIB =
  228. "ER_STYLESHEET_REQUIRES_VERSION_ATTRIB";
  229. public static final String ER_ILLEGAL_ATTRIBUTE_VALUE =
  230. "ER_ILLEGAL_ATTRIBUTE_VALUE";
  231. public static final String ER_CHOOSE_REQUIRES_WHEN ="ER_CHOOSE_REQUIRES_WHEN";
  232. public static final String ER_NO_APPLY_IMPORT_IN_FOR_EACH =
  233. "ER_NO_APPLY_IMPORT_IN_FOR_EACH";
  234. public static final String ER_CANT_USE_DTM_FOR_OUTPUT =
  235. "ER_CANT_USE_DTM_FOR_OUTPUT";
  236. public static final String ER_CANT_USE_DTM_FOR_INPUT =
  237. "ER_CANT_USE_DTM_FOR_INPUT";
  238. public static final String ER_CALL_TO_EXT_FAILED = "ER_CALL_TO_EXT_FAILED";
  239. public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE";
  240. public static final String ER_INVALID_UTF16_SURROGATE =
  241. "ER_INVALID_UTF16_SURROGATE";
  242. public static final String ER_XSLATTRSET_USED_ITSELF =
  243. "ER_XSLATTRSET_USED_ITSELF";
  244. public static final String ER_CANNOT_MIX_XERCESDOM ="ER_CANNOT_MIX_XERCESDOM";
  245. public static final String ER_TOO_MANY_LISTENERS = "ER_TOO_MANY_LISTENERS";
  246. public static final String ER_IN_ELEMTEMPLATEELEM_READOBJECT =
  247. "ER_IN_ELEMTEMPLATEELEM_READOBJECT";
  248. public static final String ER_DUPLICATE_NAMED_TEMPLATE =
  249. "ER_DUPLICATE_NAMED_TEMPLATE";
  250. public static final String ER_INVALID_KEY_CALL = "ER_INVALID_KEY_CALL";
  251. public static final String ER_REFERENCING_ITSELF = "ER_REFERENCING_ITSELF";
  252. public static final String ER_ILLEGAL_DOMSOURCE_INPUT =
  253. "ER_ILLEGAL_DOMSOURCE_INPUT";
  254. public static final String ER_CLASS_NOT_FOUND_FOR_OPTION =
  255. "ER_CLASS_NOT_FOUND_FOR_OPTION";
  256. public static final String ER_REQUIRED_ELEM_NOT_FOUND =
  257. "ER_REQUIRED_ELEM_NOT_FOUND";
  258. public static final String ER_INPUT_CANNOT_BE_NULL ="ER_INPUT_CANNOT_BE_NULL";
  259. public static final String ER_URI_CANNOT_BE_NULL = "ER_URI_CANNOT_BE_NULL";
  260. public static final String ER_FILE_CANNOT_BE_NULL = "ER_FILE_CANNOT_BE_NULL";
  261. public static final String ER_SOURCE_CANNOT_BE_NULL =
  262. "ER_SOURCE_CANNOT_BE_NULL";
  263. public static final String ER_CANNOT_OVERWRITE_CAUSE =
  264. "ER_CANNOT_OVERWRITE_CAUSE";
  265. public static final String ER_CANNOT_INIT_BSFMGR = "ER_CANNOT_INIT_BSFMGR";
  266. public static final String ER_CANNOT_CMPL_EXTENSN = "ER_CANNOT_CMPL_EXTENSN";
  267. public static final String ER_CANNOT_CREATE_EXTENSN =
  268. "ER_CANNOT_CREATE_EXTENSN";
  269. public static final String ER_INSTANCE_MTHD_CALL_REQUIRES =
  270. "ER_INSTANCE_MTHD_CALL_REQUIRES";
  271. public static final String ER_INVALID_ELEMENT_NAME ="ER_INVALID_ELEMENT_NAME";
  272. public static final String ER_ELEMENT_NAME_METHOD_STATIC =
  273. "ER_ELEMENT_NAME_METHOD_STATIC";
  274. public static final String ER_EXTENSION_FUNC_UNKNOWN =
  275. "ER_EXTENSION_FUNC_UNKNOWN";
  276. public static final String ER_MORE_MATCH_CONSTRUCTOR =
  277. "ER_MORE_MATCH_CONSTRUCTOR";
  278. public static final String ER_MORE_MATCH_METHOD = "ER_MORE_MATCH_METHOD";
  279. public static final String ER_MORE_MATCH_ELEMENT = "ER_MORE_MATCH_ELEMENT";
  280. public static final String ER_INVALID_CONTEXT_PASSED =
  281. "ER_INVALID_CONTEXT_PASSED";
  282. public static final String ER_POOL_EXISTS = "ER_POOL_EXISTS";
  283. public static final String ER_NO_DRIVER_NAME = "ER_NO_DRIVER_NAME";
  284. public static final String ER_NO_URL = "ER_NO_URL";
  285. public static final String ER_POOL_SIZE_LESSTHAN_ONE =
  286. "ER_POOL_SIZE_LESSTHAN_ONE";
  287. public static final String ER_INVALID_DRIVER = "ER_INVALID_DRIVER";
  288. public static final String ER_NO_STYLESHEETROOT = "ER_NO_STYLESHEETROOT";
  289. public static final String ER_ILLEGAL_XMLSPACE_VALUE =
  290. "ER_ILLEGAL_XMLSPACE_VALUE";
  291. public static final String ER_PROCESSFROMNODE_FAILED =
  292. "ER_PROCESSFROMNODE_FAILED";
  293. public static final String ER_RESOURCE_COULD_NOT_LOAD =
  294. "ER_RESOURCE_COULD_NOT_LOAD";
  295. public static final String ER_BUFFER_SIZE_LESSTHAN_ZERO =
  296. "ER_BUFFER_SIZE_LESSTHAN_ZERO";
  297. public static final String ER_UNKNOWN_ERROR_CALLING_EXTENSION =
  298. "ER_UNKNOWN_ERROR_CALLING_EXTENSION";
  299. public static final String ER_NO_NAMESPACE_DECL = "ER_NO_NAMESPACE_DECL";
  300. public static final String ER_ELEM_CONTENT_NOT_ALLOWED =
  301. "ER_ELEM_CONTENT_NOT_ALLOWED";
  302. public static final String ER_STYLESHEET_DIRECTED_TERMINATION =
  303. "ER_STYLESHEET_DIRECTED_TERMINATION";
  304. public static final String ER_ONE_OR_TWO = "ER_ONE_OR_TWO";
  305. public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE";
  306. public static final String ER_COULD_NOT_LOAD_RESOURCE =
  307. "ER_COULD_NOT_LOAD_RESOURCE";
  308. public static final String ER_CANNOT_INIT_DEFAULT_TEMPLATES =
  309. "ER_CANNOT_INIT_DEFAULT_TEMPLATES";
  310. public static final String ER_RESULT_NULL = "ER_RESULT_NULL";
  311. public static final String ER_RESULT_COULD_NOT_BE_SET =
  312. "ER_RESULT_COULD_NOT_BE_SET";
  313. public static final String ER_NO_OUTPUT_SPECIFIED = "ER_NO_OUTPUT_SPECIFIED";
  314. public static final String ER_CANNOT_TRANSFORM_TO_RESULT_TYPE =
  315. "ER_CANNOT_TRANSFORM_TO_RESULT_TYPE";
  316. public static final String ER_CANNOT_TRANSFORM_SOURCE_TYPE =
  317. "ER_CANNOT_TRANSFORM_SOURCE_TYPE";
  318. public static final String ER_NULL_CONTENT_HANDLER ="ER_NULL_CONTENT_HANDLER";
  319. public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER";
  320. public static final String ER_CANNOT_CALL_PARSE = "ER_CANNOT_CALL_PARSE";
  321. public static final String ER_NO_PARENT_FOR_FILTER ="ER_NO_PARENT_FOR_FILTER";
  322. public static final String ER_NO_STYLESHEET_IN_MEDIA =
  323. "ER_NO_STYLESHEET_IN_MEDIA";
  324. public static final String ER_NO_STYLESHEET_PI = "ER_NO_STYLESHEET_PI";
  325. public static final String ER_NO_DEFAULT_IMPL = "ER_NO_DEFAULT_IMPL";
  326. public static final String ER_CHUNKEDINTARRAY_NOT_SUPPORTED =
  327. "ER_CHUNKEDINTARRAY_NOT_SUPPORTED";
  328. public static final String ER_OFFSET_BIGGER_THAN_SLOT =
  329. "ER_OFFSET_BIGGER_THAN_SLOT";
  330. public static final String ER_COROUTINE_NOT_AVAIL = "ER_COROUTINE_NOT_AVAIL";
  331. public static final String ER_COROUTINE_CO_EXIT = "ER_COROUTINE_CO_EXIT";
  332. public static final String ER_COJOINROUTINESET_FAILED =
  333. "ER_COJOINROUTINESET_FAILED";
  334. public static final String ER_COROUTINE_PARAM = "ER_COROUTINE_PARAM";
  335. public static final String ER_PARSER_DOTERMINATE_ANSWERS =
  336. "ER_PARSER_DOTERMINATE_ANSWERS";
  337. public static final String ER_NO_PARSE_CALL_WHILE_PARSING =
  338. "ER_NO_PARSE_CALL_WHILE_PARSING";
  339. public static final String ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED =
  340. "ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED";
  341. public static final String ER_ITERATOR_AXIS_NOT_IMPLEMENTED =
  342. "ER_ITERATOR_AXIS_NOT_IMPLEMENTED";
  343. public static final String ER_ITERATOR_CLONE_NOT_SUPPORTED =
  344. "ER_ITERATOR_CLONE_NOT_SUPPORTED";
  345. public static final String ER_UNKNOWN_AXIS_TYPE = "ER_UNKNOWN_AXIS_TYPE";
  346. public static final String ER_AXIS_NOT_SUPPORTED = "ER_AXIS_NOT_SUPPORTED";
  347. public static final String ER_NO_DTMIDS_AVAIL = "ER_NO_DTMIDS_AVAIL";
  348. public static final String ER_NOT_SUPPORTED = "ER_NOT_SUPPORTED";
  349. public static final String ER_NODE_NON_NULL = "ER_NODE_NON_NULL";
  350. public static final String ER_COULD_NOT_RESOLVE_NODE =
  351. "ER_COULD_NOT_RESOLVE_NODE";
  352. public static final String ER_STARTPARSE_WHILE_PARSING =
  353. "ER_STARTPARSE_WHILE_PARSING";
  354. public static final String ER_STARTPARSE_NEEDS_SAXPARSER =
  355. "ER_STARTPARSE_NEEDS_SAXPARSER";
  356. public static final String ER_COULD_NOT_INIT_PARSER =
  357. "ER_COULD_NOT_INIT_PARSER";
  358. public static final String ER_PROPERTY_VALUE_BOOLEAN =
  359. "ER_PROPERTY_VALUE_BOOLEAN";
  360. public static final String ER_EXCEPTION_CREATING_POOL =
  361. "ER_EXCEPTION_CREATING_POOL";
  362. public static final String ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE =
  363. "ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE";
  364. public static final String ER_SCHEME_REQUIRED = "ER_SCHEME_REQUIRED";
  365. public static final String ER_NO_SCHEME_IN_URI = "ER_NO_SCHEME_IN_URI";
  366. public static final String ER_NO_SCHEME_INURI = "ER_NO_SCHEME_INURI";
  367. public static final String ER_PATH_INVALID_CHAR = "ER_PATH_INVALID_CHAR";
  368. public static final String ER_SCHEME_FROM_NULL_STRING =
  369. "ER_SCHEME_FROM_NULL_STRING";
  370. public static final String ER_SCHEME_NOT_CONFORMANT =
  371. "ER_SCHEME_NOT_CONFORMANT";
  372. public static final String ER_HOST_ADDRESS_NOT_WELLFORMED =
  373. "ER_HOST_ADDRESS_NOT_WELLFORMED";
  374. public static final String ER_PORT_WHEN_HOST_NULL = "ER_PORT_WHEN_HOST_NULL";
  375. public static final String ER_INVALID_PORT = "ER_INVALID_PORT";
  376. public static final String ER_FRAG_FOR_GENERIC_URI ="ER_FRAG_FOR_GENERIC_URI";
  377. public static final String ER_FRAG_WHEN_PATH_NULL = "ER_FRAG_WHEN_PATH_NULL";
  378. public static final String ER_FRAG_INVALID_CHAR = "ER_FRAG_INVALID_CHAR";
  379. public static final String ER_PARSER_IN_USE = "ER_PARSER_IN_USE";
  380. public static final String ER_CANNOT_CHANGE_WHILE_PARSING =
  381. "ER_CANNOT_CHANGE_WHILE_PARSING";
  382. public static final String ER_SELF_CAUSATION_NOT_PERMITTED =
  383. "ER_SELF_CAUSATION_NOT_PERMITTED";
  384. public static final String ER_COULD_NOT_FIND_EXTERN_SCRIPT =
  385. "ER_COULD_NOT_FIND_EXTERN_SCRIPT";
  386. public static final String ER_RESOURCE_COULD_NOT_FIND =
  387. "ER_RESOURCE_COULD_NOT_FIND";
  388. public static final String ER_OUTPUT_PROPERTY_NOT_RECOGNIZED =
  389. "ER_OUTPUT_PROPERTY_NOT_RECOGNIZED";
  390. public static final String ER_NO_USERINFO_IF_NO_HOST =
  391. "ER_NO_USERINFO_IF_NO_HOST";
  392. public static final String ER_NO_PORT_IF_NO_HOST = "ER_NO_PORT_IF_NO_HOST";
  393. public static final String ER_NO_QUERY_STRING_IN_PATH =
  394. "ER_NO_QUERY_STRING_IN_PATH";
  395. public static final String ER_NO_FRAGMENT_STRING_IN_PATH =
  396. "ER_NO_FRAGMENT_STRING_IN_PATH";
  397. public static final String ER_CANNOT_INIT_URI_EMPTY_PARMS =
  398. "ER_CANNOT_INIT_URI_EMPTY_PARMS";
  399. public static final String ER_FAILED_CREATING_ELEMLITRSLT =
  400. "ER_FAILED_CREATING_ELEMLITRSLT";
  401. public static final String ER_VALUE_SHOULD_BE_NUMBER =
  402. "ER_VALUE_SHOULD_BE_NUMBER";
  403. public static final String ER_VALUE_SHOULD_EQUAL = "ER_VALUE_SHOULD_EQUAL";
  404. public static final String ER_FAILED_CALLING_METHOD =
  405. "ER_FAILED_CALLING_METHOD";
  406. public static final String ER_FAILED_CREATING_ELEMTMPL =
  407. "ER_FAILED_CREATING_ELEMTMPL";
  408. public static final String ER_CHARS_NOT_ALLOWED = "ER_CHARS_NOT_ALLOWED";
  409. public static final String ER_ATTR_NOT_ALLOWED = "ER_ATTR_NOT_ALLOWED";
  410. public static final String ER_METHOD_NOT_SUPPORTED ="ER_METHOD_NOT_SUPPORTED";
  411. public static final String ER_BAD_VALUE = "ER_BAD_VALUE";
  412. public static final String ER_ATTRIB_VALUE_NOT_FOUND =
  413. "ER_ATTRIB_VALUE_NOT_FOUND";
  414. public static final String ER_ATTRIB_VALUE_NOT_RECOGNIZED =
  415. "ER_ATTRIB_VALUE_NOT_RECOGNIZED";
  416. public static final String ER_INCRSAXSRCFILTER_NOT_RESTARTABLE =
  417. "ER_INCRSAXSRCFILTER_NOT_RESTARTABLE";
  418. public static final String ER_XMLRDR_NOT_BEFORE_STARTPARSE =
  419. "ER_XMLRDR_NOT_BEFORE_STARTPARSE";
  420. public static final String ER_NULL_URI_NAMESPACE = "ER_NULL_URI_NAMESPACE";
  421. public static final String ER_NUMBER_TOO_BIG = "ER_NUMBER_TOO_BIG";
  422. public static final String ER_CANNOT_FIND_SAX1_DRIVER =
  423. "ER_CANNOT_FIND_SAX1_DRIVER";
  424. public static final String ER_SAX1_DRIVER_NOT_LOADED =
  425. "ER_SAX1_DRIVER_NOT_LOADED";
  426. public static final String ER_SAX1_DRIVER_NOT_INSTANTIATED =
  427. "ER_SAX1_DRIVER_NOT_INSTANTIATED" ;
  428. public static final String ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER =
  429. "ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER";
  430. public static final String ER_PARSER_PROPERTY_NOT_SPECIFIED =
  431. "ER_PARSER_PROPERTY_NOT_SPECIFIED";
  432. public static final String ER_PARSER_ARG_CANNOT_BE_NULL =
  433. "ER_PARSER_ARG_CANNOT_BE_NULL" ;
  434. public static final String ER_FEATURE = "ER_FEATURE";
  435. public static final String ER_PROPERTY = "ER_PROPERTY" ;
  436. public static final String ER_NULL_ENTITY_RESOLVER ="ER_NULL_ENTITY_RESOLVER";
  437. public static final String ER_NULL_DTD_HANDLER = "ER_NULL_DTD_HANDLER" ;
  438. public static final String ER_NO_DRIVER_NAME_SPECIFIED =
  439. "ER_NO_DRIVER_NAME_SPECIFIED";
  440. public static final String ER_NO_URL_SPECIFIED = "ER_NO_URL_SPECIFIED";
  441. public static final String ER_POOLSIZE_LESS_THAN_ONE =
  442. "ER_POOLSIZE_LESS_THAN_ONE";
  443. public static final String ER_INVALID_DRIVER_NAME = "ER_INVALID_DRIVER_NAME";
  444. public static final String ER_ERRORLISTENER = "ER_ERRORLISTENER";
  445. public static final String ER_ASSERT_NO_TEMPLATE_PARENT =
  446. "ER_ASSERT_NO_TEMPLATE_PARENT";
  447. public static final String ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR =
  448. "ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR";
  449. public static final String ER_AXIS_TRAVERSER_NOT_SUPPORTED =
  450. "ER_AXIS_TRAVERSER_NOT_SUPPORTED";
  451. public static final String ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
  452. "ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER";
  453. public static final String ER_NOT_ALLOWED_IN_POSITION =
  454. "ER_NOT_ALLOWED_IN_POSITION";
  455. public static final String ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION =
  456. "ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION";
  457. public static final String INVALID_TCHAR = "INVALID_TCHAR";
  458. public static final String ER_SYSTEMID_UNKNOWN = "ER_SYSTEMID_UNKNOWN";
  459. public static final String ER_LOCATION_UNKNOWN = "ER_LOCATION_UNKNOWN";
  460. public static final String INVALID_QNAME = "INVALID_QNAME";
  461. public static final String INVALID_ENUM = "INVALID_ENUM";
  462. public static final String INVALID_NMTOKEN = "INVALID_NMTOKEN";
  463. public static final String INVALID_NCNAME = "INVALID_NCNAME";
  464. public static final String INVALID_BOOLEAN = "INVALID_BOOLEAN";
  465. public static final String INVALID_NUMBER = "INVALID_NUMBER";
  466. public static final String ER_ARG_LITERAL = "ER_ARG_LITERAL";
  467. public static final String ER_DUPLICATE_GLOBAL_VAR ="ER_DUPLICATE_GLOBAL_VAR";
  468. public static final String ER_DUPLICATE_VAR = "ER_DUPLICATE_VAR";
  469. public static final String ER_TEMPLATE_NAME_MATCH = "ER_TEMPLATE_NAME_MATCH";
  470. public static final String ER_INVALID_PREFIX = "ER_INVALID_PREFIX";
  471. public static final String ER_NO_ATTRIB_SET = "ER_NO_ATTRIB_SET";
  472. public static final String WG_FOUND_CURLYBRACE = "WG_FOUND_CURLYBRACE";
  473. public static final String WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR =
  474. "WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR";
  475. public static final String WG_EXPR_ATTRIB_CHANGED_TO_SELECT =
  476. "WG_EXPR_ATTRIB_CHANGED_TO_SELECT";
  477. public static final String WG_NO_LOCALE_IN_FORMATNUMBER =
  478. "WG_NO_LOCALE_IN_FORMATNUMBER";
  479. public static final String WG_LOCALE_NOT_FOUND = "WG_LOCALE_NOT_FOUND";
  480. public static final String WG_CANNOT_MAKE_URL_FROM ="WG_CANNOT_MAKE_URL_FROM";
  481. public static final String WG_CANNOT_LOAD_REQUESTED_DOC =
  482. "WG_CANNOT_LOAD_REQUESTED_DOC";
  483. public static final String WG_CANNOT_FIND_COLLATOR ="WG_CANNOT_FIND_COLLATOR";
  484. public static final String WG_FUNCTIONS_SHOULD_USE_URL =
  485. "WG_FUNCTIONS_SHOULD_USE_URL";
  486. public static final String WG_ENCODING_NOT_SUPPORTED_USING_UTF8 =
  487. "WG_ENCODING_NOT_SUPPORTED_USING_UTF8";
  488. public static final String WG_ENCODING_NOT_SUPPORTED_USING_JAVA =
  489. "WG_ENCODING_NOT_SUPPORTED_USING_JAVA";
  490. public static final String WG_SPECIFICITY_CONFLICTS =
  491. "WG_SPECIFICITY_CONFLICTS";
  492. public static final String WG_PARSING_AND_PREPARING =
  493. "WG_PARSING_AND_PREPARING";
  494. public static final String WG_ATTR_TEMPLATE = "WG_ATTR_TEMPLATE";
  495. public static final String WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = "WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESP";
  496. public static final String WG_ATTRIB_NOT_HANDLED = "WG_ATTRIB_NOT_HANDLED";
  497. public static final String WG_NO_DECIMALFORMAT_DECLARATION =
  498. "WG_NO_DECIMALFORMAT_DECLARATION";
  499. public static final String WG_OLD_XSLT_NS = "WG_OLD_XSLT_NS";
  500. public static final String WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED =
  501. "WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED";
  502. public static final String WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE =
  503. "WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE";
  504. public static final String WG_ILLEGAL_ATTRIBUTE = "WG_ILLEGAL_ATTRIBUTE";
  505. public static final String WG_COULD_NOT_RESOLVE_PREFIX =
  506. "WG_COULD_NOT_RESOLVE_PREFIX";
  507. public static final String WG_STYLESHEET_REQUIRES_VERSION_ATTRIB =
  508. "WG_STYLESHEET_REQUIRES_VERSION_ATTRIB";
  509. public static final String WG_ILLEGAL_ATTRIBUTE_NAME =
  510. "WG_ILLEGAL_ATTRIBUTE_NAME";
  511. public static final String WG_ILLEGAL_ATTRIBUTE_VALUE =
  512. "WG_ILLEGAL_ATTRIBUTE_VALUE";
  513. public static final String WG_EMPTY_SECOND_ARG = "WG_EMPTY_SECOND_ARG";
  514. public static final String WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML =
  515. "WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML";
  516. public static final String WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME =
  517. "WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME";
  518. public static final String WG_ILLEGAL_ATTRIBUTE_POSITION =
  519. "WG_ILLEGAL_ATTRIBUTE_POSITION";
  520. //\uc0bd\uc785 \ub05d
  521. public static final Object[][] contents = {
  522. /** Error message ID that has a null message, but takes in a single object. */
  523. //public static final int ERROR0000 = 0;
  524. {
  525. "ERROR0000", "{0}"},
  526. /** ER_NO_CURLYBRACE */
  527. //public static final int ER_NO_CURLYBRACE = 1;
  528. {
  529. ER_NO_CURLYBRACE,
  530. "\uc624\ub958: \ud45c\ud604\uc2dd \uc548\uc5d0 '{'\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  531. /** ER_ILLEGAL_ATTRIBUTE */
  532. //public static final int ER_ILLEGAL_ATTRIBUTE = 2;
  533. {
  534. ER_ILLEGAL_ATTRIBUTE, "{0}\uc5d0 \uc798\ubabb\ub41c \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4."},
  535. /** ER_NULL_SOURCENODE_APPLYIMPORTS */
  536. //public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
  537. {
  538. ER_NULL_SOURCENODE_APPLYIMPORTS,
  539. "sourceNode\ub294 xsl:apply-imports\uc5d0\uc11c \ub110\uc785\ub2c8\ub2e4!"},
  540. /** ER_CANNOT_ADD */
  541. //public static final int ER_CANNOT_ADD = 4;
  542. {
  543. ER_CANNOT_ADD, "{0}\uc744(\ub97c) {1}\uc5d0 \ucd94\uac00\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. "},
  544. /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES */
  545. //public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
  546. {
  547. ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES,
  548. "sourceNode\ub294 handleApplyTemplatesInstruction\uc5d0\uc11c \ub110\uc785\ub2c8\ub2e4!"},
  549. /** ER_NO_NAME_ATTRIB */
  550. //public static final int ER_NO_NAME_ATTRIB = 6;
  551. {
  552. ER_NO_NAME_ATTRIB, "{0}\uc5d0 \uc774\ub984 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  553. /** ER_TEMPLATE_NOT_FOUND */
  554. //public static final int ER_TEMPLATE_NOT_FOUND = 7;
  555. {
  556. ER_TEMPLATE_NOT_FOUND, "\ud15c\ud50c\ub9ac\ud2b8 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  557. /** ER_CANT_RESOLVE_NAME_AVT */
  558. //public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
  559. {
  560. ER_CANT_RESOLVE_NAME_AVT,
  561. "xsl:call-template\uc5d0\uc11c \uc774\ub984 AVT\ub97c \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  562. /** ER_REQUIRES_ATTRIB */
  563. //public static final int ER_REQUIRES_ATTRIB = 9;
  564. {
  565. ER_REQUIRES_ATTRIB, "{0}\uc5d0 \uc18d\uc131 {1}\uc774(\uac00) \ud544\uc694\ud569\ub2c8\ub2e4."},
  566. /** ER_MUST_HAVE_TEST_ATTRIB */
  567. //public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
  568. {
  569. ER_MUST_HAVE_TEST_ATTRIB,
  570. "{0}\uc5d0 ''test'' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  571. /** ER_BAD_VAL_ON_LEVEL_ATTRIB */
  572. //public static final int ER_BAD_VAL_ON_LEVEL_ATTRIB = 11;
  573. {
  574. ER_BAD_VAL_ON_LEVEL_ATTRIB,
  575. "\ub808\ubca8 \uc18d\uc131 {0}\uc5d0 \uc798\ubabb\ub41c \uac12\uc774 \uc788\uc2b5\ub2c8\ub2e4."},
  576. /** ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  577. //public static final int ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 12;
  578. {
  579. ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  580. "processing-instruction \uc774\ub984\uc774 'xml'\uc774\uc5b4\uc11c\ub294 \uc548\ub429\ub2c8\ub2e4."},
  581. /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  582. //public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
  583. {
  584. ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  585. "processing-instruction \uc774\ub984\uc740 \uc62c\ubc14\ub978 NCName {0}\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  586. /** ER_NEED_MATCH_ATTRIB */
  587. //public static final int ER_NEED_MATCH_ATTRIB = 14;
  588. {
  589. ER_NEED_MATCH_ATTRIB,
  590. "{0}\uc774(\uac00) \ubaa8\ub4dc\ub97c \uac00\uc9c0\uace0 \uc788\ub294 \uacbd\uc6b0 \uc77c\uce58 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  591. /** ER_NEED_NAME_OR_MATCH_ATTRIB */
  592. //public static final int ER_NEED_NAME_OR_MATCH_ATTRIB = 15;
  593. {
  594. ER_NEED_NAME_OR_MATCH_ATTRIB,
  595. "{0}\uc5d0 \uc774\ub984 \ub610\ub294 \uc77c\uce58 \uc18d\uc131 \uc911 \ud558\ub098\uac00 \ud544\uc694\ud569\ub2c8\ub2e4."},
  596. /** ER_CANT_RESOLVE_NSPREFIX */
  597. //public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
  598. {
  599. ER_CANT_RESOLVE_NSPREFIX,
  600. "\uc774\ub984 \uacf5\uac04 \uc811\ub450\uc5b4 {0}\uc744(\ub97c) \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  601. /** ER_ILLEGAL_VALUE */
  602. //public static final int ER_ILLEGAL_VALUE = 17;
  603. {
  604. ER_ILLEGAL_VALUE, "xml:space\uc5d0 \uc798\ubabb\ub41c \uac12 {0}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4."},
  605. /** ER_NO_OWNERDOC */
  606. //public static final int ER_NO_OWNERDOC = 18;
  607. {
  608. ER_NO_OWNERDOC,
  609. "\uc790\uc2dd \ub178\ub4dc\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  610. /** ER_ELEMTEMPLATEELEM_ERR */
  611. //public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
  612. {
  613. ER_ELEMTEMPLATEELEM_ERR, "ElemTemplateElement \uc624\ub958: {0}"},
  614. /** ER_NULL_CHILD */
  615. //public static final int ER_NULL_CHILD = 20;
  616. {
  617. ER_NULL_CHILD, "\ub110 \uc790\uc2dd\uc744 \ucd94\uac00\ud558\ub824\uace0 \uc2dc\ub3c4\ud558\ub294 \uc911\uc785\ub2c8\ub2e4!"},
  618. /** ER_NEED_SELECT_ATTRIB */
  619. //public static final int ER_NEED_SELECT_ATTRIB = 21;
  620. {
  621. ER_NEED_SELECT_ATTRIB, "{0}\uc5d0 \uc120\ud0dd \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."},
  622. /** ER_NEED_TEST_ATTRIB */
  623. //public static final int ER_NEED_TEST_ATTRIB = 22;
  624. {
  625. ER_NEED_TEST_ATTRIB,
  626. "xsl:when\uc5d0 'test' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  627. /** ER_NEED_NAME_ATTRIB */
  628. //public static final int ER_NEED_NAME_ATTRIB = 23;
  629. {
  630. ER_NEED_NAME_ATTRIB,
  631. "xsl:with-param\uc5d0 'name' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  632. /** ER_NO_CONTEXT_OWNERDOC */
  633. //public static final int ER_NO_CONTEXT_OWNERDOC = 24;
  634. {
  635. ER_NO_CONTEXT_OWNERDOC,
  636. "\ucee8\ud14d\uc2a4\ud2b8\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."},
  637. /** ER_COULD_NOT_CREATE_XML_PROC_LIAISON */
  638. //public static final int ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 25;
  639. {
  640. ER_COULD_NOT_CREATE_XML_PROC_LIAISON,
  641. "XML TransformerFactory Liaison {0}\uc744(\ub97c) \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  642. /** ER_PROCESS_NOT_SUCCESSFUL */
  643. //public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
  644. {
  645. ER_PROCESS_NOT_SUCCESSFUL,
  646. "Xalan: \ud504\ub85c\uc138\uc2a4\uc5d0 \uc131\uacf5\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4."},
  647. /** ER_NOT_SUCCESSFUL */
  648. //public static final int ER_NOT_SUCCESSFUL = 27;
  649. {
  650. ER_NOT_SUCCESSFUL, "Xalan:\uc5d0 \uc131\uacf5\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4."},
  651. /** ER_ENCODING_NOT_SUPPORTED */
  652. //public static final int ER_ENCODING_NOT_SUPPORTED = 28;
  653. {
  654. ER_ENCODING_NOT_SUPPORTED, "\ucf54\ub4dc\ud654\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"},
  655. /** ER_COULD_NOT_CREATE_TRACELISTENER */
  656. //public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
  657. {
  658. ER_COULD_NOT_CREATE_TRACELISTENER,
  659. "TraceListener {0}\uc744(\ub97c) \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  660. /** ER_KEY_REQUIRES_NAME_ATTRIB */
  661. //public static final int ER_KEY_REQUIRES_NAME_ATTRIB = 30;
  662. {
  663. ER_KEY_REQUIRES_NAME_ATTRIB,
  664. "xsl:key\uc5d0 'name' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!"},
  665. /** ER_KEY_REQUIRES_MATCH_ATTRIB */
  666. //public static final int ER_KEY_REQUIRES_MATCH_ATTRIB = 31;
  667. {
  668. ER_KEY_REQUIRES_MATCH_ATTRIB,
  669. "xsl:key\uc5d0 'match' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!"},
  670. /** ER_KEY_REQUIRES_USE_ATTRIB */
  671. //public static final int ER_KEY_REQUIRES_USE_ATTRIB = 32;
  672. {
  673. ER_KEY_REQUIRES_USE_ATTRIB,
  674. "xsl:key\uc5d0 'use' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!"},
  675. /** ER_REQUIRES_ELEMENTS_ATTRIB */
  676. //public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
  677. {
  678. ER_REQUIRES_ELEMENTS_ATTRIB,
  679. "(StylesheetHandler) {0}\uc5d0 ''elements'' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!"},
  680. /** ER_MISSING_PREFIX_ATTRIB */
  681. //public static final int ER_MISSING_PREFIX_ATTRIB = 34;
  682. {
  683. ER_MISSING_PREFIX_ATTRIB,
  684. "(StylesheetHandler) {0} \uc18d\uc131 ''prefix''\uac00 \ube60\uc84c\uc2b5\ub2c8\ub2e4."},
  685. /** ER_BAD_STYLESHEET_URL */
  686. //public static final int ER_BAD_STYLESHEET_URL = 35;
  687. {
  688. ER_BAD_STYLESHEET_URL, "Stylesheet URL\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}"},
  689. /** ER_FILE_NOT_FOUND */
  690. //public static final int ER_FILE_NOT_FOUND = 36;
  691. {
  692. ER_FILE_NOT_FOUND, "Stylesheet \ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"},
  693. /** ER_IOEXCEPTION */
  694. //public static final int ER_IOEXCEPTION = 37;
  695. {
  696. ER_IOEXCEPTION,
  697. "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ud30c\uc77c\ub85c IO \uc608\uc678\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4: {0}"},
  698. /** ER_NO_HREF_ATTRIB */
  699. //public static final int ER_NO_HREF_ATTRIB = 38;
  700. {
  701. ER_NO_HREF_ATTRIB,
  702. "(StylesheetHandler) {0}\uc5d0 \ub300\ud55c href \uc18d\uc131\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  703. /** ER_STYLESHEET_INCLUDES_ITSELF */
  704. //public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
  705. {
  706. ER_STYLESHEET_INCLUDES_ITSELF,
  707. "(StylesheetHandler) {0}\uc774(\uac00) \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc801\uc73c\ub85c \uc790\uc2e0\uc744 \ud3ec\ud568\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4."},
  708. /** ER_PROCESSINCLUDE_ERROR */
  709. //public static final int ER_PROCESSINCLUDE_ERROR = 40;
  710. {
  711. ER_PROCESSINCLUDE_ERROR,
  712. "StylesheetHandler.processInclude \uc624\ub958, {0}"},
  713. /** ER_MISSING_LANG_ATTRIB */
  714. //public static final int ER_MISSING_LANG_ATTRIB = 41;
  715. {
  716. ER_MISSING_LANG_ATTRIB,
  717. "(StylesheetHandler) {0} \uc18d\uc131 ''lang''\uc774 \ube60\uc84c\uc2b5\ub2c8\ub2e4."},
  718. /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT */
  719. //public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
  720. {
  721. ER_MISSING_CONTAINER_ELEMENT_COMPONENT,
  722. "(StylesheetHandler) {0} \uc694\uc18c\uc758 \uc704\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4?? container \uc694\uc18c ''component''\uac00 \ube60\uc84c\uc2b5\ub2c8\ub2e4."},
  723. /** ER_CAN_ONLY_OUTPUT_TO_ELEMENT */
  724. //public static final int ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 43;
  725. {
  726. ER_CAN_ONLY_OUTPUT_TO_ELEMENT,
  727. "Element, DocumentFragment, Document \ub610\ub294 PrintWriter\ub85c\ub9cc \ucd9c\ub825\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4."},
  728. /** ER_PROCESS_ERROR */
  729. //public static final int ER_PROCESS_ERROR = 44;
  730. {
  731. ER_PROCESS_ERROR, "StylesheetRoot.process \uc624\ub958"},
  732. /** ER_UNIMPLNODE_ERROR */
  733. //public static final int ER_UNIMPLNODE_ERROR = 45;
  734. {
  735. ER_UNIMPLNODE_ERROR, "UnImplNode \uc624\ub958: {0}"},
  736. /** ER_NO_SELECT_EXPRESSION */
  737. //public static final int ER_NO_SELECT_EXPRESSION = 46;
  738. {
  739. ER_NO_SELECT_EXPRESSION,
  740. "\uc624\ub958! xpath \uc120\ud0dd \ud45c\ud604\uc2dd(-select)\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  741. /** ER_CANNOT_SERIALIZE_XSLPROCESSOR */
  742. //public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
  743. {
  744. ER_CANNOT_SERIALIZE_XSLPROCESSOR,
  745. "XSLProcessor\ub97c \uc77c\ub828\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  746. /** ER_NO_INPUT_STYLESHEET */
  747. //public static final int ER_NO_INPUT_STYLESHEET = 48;
  748. {
  749. ER_NO_INPUT_STYLESHEET,
  750. "Stylesheet \uc785\ub825\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4!"},
  751. /** ER_FAILED_PROCESS_STYLESHEET */
  752. //public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
  753. {
  754. ER_FAILED_PROCESS_STYLESHEET,
  755. "stylesheet \ucc98\ub9ac\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4!"},
  756. /** ER_COULDNT_PARSE_DOC */
  757. //public static final int ER_COULDNT_PARSE_DOC = 50;
  758. {
  759. ER_COULDNT_PARSE_DOC, "{0} \ubb38\uc11c\ub97c \uad6c\ubb38 \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  760. /** ER_COULDNT_FIND_FRAGMENT */
  761. //public static final int ER_COULDNT_FIND_FRAGMENT = 51;
  762. {
  763. ER_COULDNT_FIND_FRAGMENT, "\ub2e8\ud3b8 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  764. /** ER_NODE_NOT_ELEMENT */
  765. //public static final int ER_NODE_NOT_ELEMENT = 52;
  766. {
  767. ER_NODE_NOT_ELEMENT,
  768. "\ub2e8\ud3b8 \uc2dd\ubcc4\uc790\uc5d0 \uc758\ud574 \uc9c0\uc815\ub41c \ub178\ub4dc\ub294 \uc694\uc18c\uac00 \uc544\ub2d9\ub2c8\ub2e4: {0}"},
  769. /** ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB */
  770. //public static final int ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 53;
  771. {
  772. ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB,
  773. "for-each\uc5d0 \uc77c\uce58 \ub610\ub294 \uc774\ub984 \uc18d\uc131 \uc911 \ud558\ub098\uac00 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  774. /** ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB */
  775. //public static final int ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 54;
  776. {
  777. ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB,
  778. "\ud15c\ud50c\ub9ac\ud2b8\uc5d0 \uc77c\uce58 \ub610\ub294 \uc774\ub984 \uc18d\uc131 \uc911 \ud558\ub098\uac00 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  779. /** ER_NO_CLONE_OF_DOCUMENT_FRAG */
  780. //public static final int ER_NO_CLONE_OF_DOCUMENT_FRAG = 55;
  781. {
  782. ER_NO_CLONE_OF_DOCUMENT_FRAG,
  783. "\ubb38\uc11c \ub2e8\ud3b8 \ubcf5\uc81c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  784. /** ER_CANT_CREATE_ITEM */
  785. //public static final int ER_CANT_CREATE_ITEM = 56;
  786. {
  787. ER_CANT_CREATE_ITEM,
  788. "\uacb0\uacfc \ud2b8\ub9ac {0}\uc5d0 \ud56d\ubaa9\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  789. /** ER_XMLSPACE_ILLEGAL_VALUE */
  790. //public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
  791. {
  792. ER_XMLSPACE_ILLEGAL_VALUE,
  793. "\uc18c\uc2a4 XML\uc758 xml:space\uc5d0 \uc798\ubabb\ub41c \uac12 {0}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4."},
  794. /** ER_NO_XSLKEY_DECLARATION */
  795. //public static final int ER_NO_XSLKEY_DECLARATION = 58;
  796. {
  797. ER_NO_XSLKEY_DECLARATION,
  798. "{0}\uc5d0 \ub300\ud558\uc5ec xsl:key \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  799. /** ER_CANT_CREATE_URL */
  800. //public static final int ER_CANT_CREATE_URL = 59;
  801. {
  802. ER_CANT_CREATE_URL, "\uc624\ub958! {0}\uc5d0 \ub300\ud558\uc5ec url\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  803. /** ER_XSLFUNCTIONS_UNSUPPORTED */
  804. //public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
  805. {
  806. ER_XSLFUNCTIONS_UNSUPPORTED, "xsl:functions\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  807. /** ER_PROCESSOR_ERROR */
  808. //public static final int ER_PROCESSOR_ERROR = 61;
  809. {
  810. ER_PROCESSOR_ERROR, "XSLT TransformerFactory \uc624\ub958"},
  811. /** ER_NOT_ALLOWED_INSIDE_STYLESHEET */
  812. //public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
  813. {
  814. ER_NOT_ALLOWED_INSIDE_STYLESHEET,
  815. "(StylesheetHandler) {0}\uc740(\ub294) \uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub0b4\ubd80\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!"},
  816. /** ER_RESULTNS_NOT_SUPPORTED */
  817. //public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
  818. {
  819. ER_RESULTNS_NOT_SUPPORTED,
  820. "result-ns\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! \ub300\uc2e0 xsl:output\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624."},
  821. /** ER_DEFAULTSPACE_NOT_SUPPORTED */
  822. //public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
  823. {
  824. ER_DEFAULTSPACE_NOT_SUPPORTED,
  825. "default-space\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! \ub300\uc2e0 xsl:preserve-space\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624."},
  826. /** ER_INDENTRESULT_NOT_SUPPORTED */
  827. //public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
  828. {
  829. ER_INDENTRESULT_NOT_SUPPORTED,
  830. "indent-result\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! \ub300\uc2e0 xsl:output\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624."},
  831. /** ER_ILLEGAL_ATTRIB */
  832. //public static final int ER_ILLEGAL_ATTRIB = 66;
  833. {
  834. ER_ILLEGAL_ATTRIB,
  835. "(StylesheetHandler) {0}\uc5d0 \uc798\ubabb\ub41c \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4."},
  836. /** ER_UNKNOWN_XSL_ELEM */
  837. //public static final int ER_UNKNOWN_XSL_ELEM = 67;
  838. {
  839. ER_UNKNOWN_XSL_ELEM, "\uc54c \uc218 \uc5c6\ub294 XSL \uc694\uc18c {0}"},
  840. /** ER_BAD_XSLSORT_USE */
  841. //public static final int ER_BAD_XSLSORT_USE = 68;
  842. {
  843. ER_BAD_XSLSORT_USE,
  844. "(StylesheetHandler) xsl:sort\ub294 xsl:apply-templates \ub610\ub294 xsl:for-each\uc640\ub9cc \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4."},
  845. /** ER_MISPLACED_XSLWHEN */
  846. //public static final int ER_MISPLACED_XSLWHEN = 69;
  847. {
  848. ER_MISPLACED_XSLWHEN,
  849. "(StylesheetHandler) xsl:when\uc758 \uc704\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4!"},
  850. /** ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE */
  851. //public static final int ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 70;
  852. {
  853. ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE,
  854. "(StylesheetHandler) xsl:when\uc758 \ubd80\ubaa8\ub294 xsl:choose\uac00 \uc544\ub2d9\ub2c8\ub2e4!"},
  855. /** ER_MISPLACED_XSLOTHERWISE */
  856. //public static final int ER_MISPLACED_XSLOTHERWISE = 71;
  857. {
  858. ER_MISPLACED_XSLOTHERWISE,
  859. "(StylesheetHandler) xsl:otherwise\uc758 \uc704\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4!"},
  860. /** ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE */
  861. //public static final int ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 72;
  862. {
  863. ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE,
  864. "(StylesheetHandler) xsl:otherwise\uc758 \ubd80\ubaa8\ub294 xsl:choose\uac00 \uc544\ub2d9\ub2c8\ub2e4!"},
  865. /** ER_NOT_ALLOWED_INSIDE_TEMPLATE */
  866. //public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
  867. {
  868. ER_NOT_ALLOWED_INSIDE_TEMPLATE,
  869. "(StylesheetHandler) {0}\uc740(\ub294) \ud15c\ud50c\ub9ac\ud2b8 \ub0b4\ubd80\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!"},
  870. /** ER_UNKNOWN_EXT_NS_PREFIX */
  871. //public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
  872. {
  873. ER_UNKNOWN_EXT_NS_PREFIX,
  874. "(StylesheetHandler) {0} \ud655\uc7a5 \uc774\ub984 \uacf5\uac04 \uc811\ub450\uc5b4 {1}\uc744(\ub97c) \uc54c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  875. /** ER_IMPORTS_AS_FIRST_ELEM */
  876. //public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
  877. {
  878. ER_IMPORTS_AS_FIRST_ELEM,
  879. "(StylesheetHandler) \uac00\uc838\uc624\uae30\ub294 \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc758 \uccab \ubc88\uc9f8 \uc694\uc18c\ub85c\ub9cc \ubc1c\uc0dd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4!"},
  880. /** ER_IMPORTING_ITSELF */
  881. //public static final int ER_IMPORTING_ITSELF = 76;
  882. {
  883. ER_IMPORTING_ITSELF,
  884. "(StylesheetHandler) {0}\uc774(\uac00) \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc801\uc73c\ub85c \uc790\uc2e0\uc744 \uac00\uc838\uc624\uace0 \uc788\uc2b5\ub2c8\ub2e4!"},
  885. /** ER_XMLSPACE_ILLEGAL_VAL */
  886. //public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
  887. {
  888. ER_XMLSPACE_ILLEGAL_VAL,
  889. "(StylesheetHandler) " + "xml:space\uc5d0 \uc798\ubabb\ub41c \uac12 {0}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4."},
  890. /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL */
  891. //public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
  892. {
  893. ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL,
  894. "processStylesheet\uac00 \uc131\uacf5\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4!"},
  895. /** ER_SAX_EXCEPTION */
  896. //public static final int ER_SAX_EXCEPTION = 79;
  897. {
  898. ER_SAX_EXCEPTION, "SAX \uc608\uc678"},
  899. /** ER_FUNCTION_NOT_SUPPORTED */
  900. //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
  901. {
  902. ER_FUNCTION_NOT_SUPPORTED, "\uae30\ub2a5\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!"},
  903. /** ER_XSLT_ERROR */
  904. //public static final int ER_XSLT_ERROR = 81;
  905. {
  906. ER_XSLT_ERROR, "XSLT \uc624\ub958"},
  907. /** ER_CURRENCY_SIGN_ILLEGAL */
  908. //public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
  909. {
  910. ER_CURRENCY_SIGN_ILLEGAL,
  911. "\ud615\uc2dd \ud328\ud134 \ubb38\uc790\uc5f4\uc5d0 \ud1b5\ud654 \ubd80\ud638\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  912. /** ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM */
  913. //public static final int ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 83;
  914. {
  915. ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM,
  916. "Stylesheet DOM\uc5d0\uc11c \ubb38\uc11c \uae30\ub2a5\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!"},
  917. /** ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER */
  918. //public static final int ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 84;
  919. {
  920. ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER,
  921. "\uc811\ub450\uc5b4\uac00 \uc5c6\ub294 \uacb0\uc815\uc790\uc758 \uc811\ub450\uc5b4\ub97c \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  922. /** ER_REDIRECT_COULDNT_GET_FILENAME */
  923. //public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
  924. {
  925. ER_REDIRECT_COULDNT_GET_FILENAME,
  926. "Redirect \ud655\uc7a5: \ud30c\uc77c \uc774\ub984\uc744 \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 - \ud30c\uc77c \ub610\ub294 \uc120\ud0dd \uc18d\uc131\uc774 \uc62c\ubc14\ub978 \ubb38\uc790\uc5f4\uc744 \ubc18\ud658\ud574\uc57c \ud569\ub2c8\ub2e4."},
  927. /** ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT */
  928. //public static final int ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 86;
  929. {
  930. ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT,
  931. "Redirect \ud655\uc7a5\uc5d0 FormatterListener\ub97c \uad6c\ucd95\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  932. /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX */
  933. //public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
  934. {
  935. ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX,
  936. "exclude-result-prefixes\uc758 \uc811\ub450\uc5b4\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"},
  937. /** ER_MISSING_NS_URI */
  938. //public static final int ER_MISSING_NS_URI = 88;
  939. {
  940. ER_MISSING_NS_URI,
  941. "\uc9c0\uc815\ub41c \uc811\ub450\uc5b4\uc5d0 \ub300\ud55c \uc774\ub984 \uacf5\uac04 URI\uac00 \ube60\uc84c\uc2b5\ub2c8\ub2e4."},
  942. /** ER_MISSING_ARG_FOR_OPTION */
  943. //public static final int ER_MISSING_ARG_FOR_OPTION = 89;
  944. {
  945. ER_MISSING_ARG_FOR_OPTION,
  946. "\uc635\uc158 {0}\uc5d0 \ub300\ud55c \uc778\uc790\uac00 \ube60\uc84c\uc2b5\ub2c8\ub2e4."},
  947. /** ER_INVALID_OPTION */
  948. //public static final int ER_INVALID_OPTION = 90;
  949. {
  950. ER_INVALID_OPTION, "\uc798\ubabb\ub41c \uc635\uc158: {0}"},
  951. /** ER_MALFORMED_FORMAT_STRING */
  952. //public static final int ER_MALFORMED_FORMAT_STRING = 91;
  953. {
  954. ER_MALFORMED_FORMAT_STRING, "\uc798\ubabb\ub41c \ud615\uc2dd \ubb38\uc790\uc5f4: {0}"},
  955. /** ER_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  956. //public static final int ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 92;
  957. {
  958. ER_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  959. "xsl:stylesheet\uc5d0 'version' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!"},
  960. /** ER_ILLEGAL_ATTRIBUTE_VALUE */
  961. //public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
  962. {
  963. ER_ILLEGAL_ATTRIBUTE_VALUE,
  964. "\uc18d\uc131: {0}\uc5d0 \uc798\ubabb\ub41c \uac12 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4."},
  965. /** ER_CHOOSE_REQUIRES_WHEN */
  966. //public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
  967. {
  968. ER_CHOOSE_REQUIRES_WHEN, "xsl:choose\uc5d0 xsl:when\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. "},
  969. /** ER_NO_APPLY_IMPORT_IN_FOR_EACH */
  970. //public static final int ER_NO_APPLY_IMPORT_IN_FOR_EACH = 95;
  971. {
  972. ER_NO_APPLY_IMPORT_IN_FOR_EACH,
  973. "xsl:apply-imports\ub294 xsl:for-each\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  974. /** ER_CANT_USE_DTM_FOR_OUTPUT */
  975. //public static final int ER_CANT_USE_DTM_FOR_OUTPUT = 96;
  976. {
  977. ER_CANT_USE_DTM_FOR_OUTPUT,
  978. "\ucd9c\ub825 DOM \ub178\ub4dc\ub85c DTMLiaison\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4... \ub300\uc2e0 org.apache.xpath.DOM2Helper\ub97c \uc804\ub2ec\ud558\uc2ed\uc2dc\uc624!"},
  979. /** ER_CANT_USE_DTM_FOR_INPUT */
  980. //public static final int ER_CANT_USE_DTM_FOR_INPUT = 97;
  981. {
  982. ER_CANT_USE_DTM_FOR_INPUT,
  983. "\uc785\ub825 DOM \ub178\ub4dc\ub85c DTMLiaison\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4... \ub300\uc2e0 org.apache.xpath.DOM2Helper\ub97c \uc804\ub2ec\ud558\uc2ed\uc2dc\uc624!"},
  984. /** ER_CALL_TO_EXT_FAILED */
  985. //public static final int ER_CALL_TO_EXT_FAILED = 98;
  986. {
  987. ER_CALL_TO_EXT_FAILED,
  988. "\ud655\uc7a5 \uc694\uc18c\uc5d0 \ub300\ud55c \ud638\ucd9c\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4: {0}"},
  989. /** ER_PREFIX_MUST_RESOLVE */
  990. //public static final int ER_PREFIX_MUST_RESOLVE = 99;
  991. {
  992. ER_PREFIX_MUST_RESOLVE,
  993. "\uc811\ub450\uc5b4\uac00 \uc774\ub984 \uacf5\uac04 {0}\uc73c\ub85c(\ub85c) \uacb0\uc815\ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  994. /** ER_INVALID_UTF16_SURROGATE */
  995. //public static final int ER_INVALID_UTF16_SURROGATE = 100;
  996. {
  997. ER_INVALID_UTF16_SURROGATE,
  998. "\uc798\ubabb\ub41c UTF-16 \ub300\ub9ac\uac00 \uac10\uc9c0\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0} ?"},
  999. /** ER_XSLATTRSET_USED_ITSELF */
  1000. //public static final int ER_XSLATTRSET_USED_ITSELF = 101;
  1001. {
  1002. ER_XSLATTRSET_USED_ITSELF,
  1003. "xsl:attribute-set {0}\uc774(\uac00) \uc790\uc2e0\uc744 \uc0ac\uc6a9\ud558\uc600\uba70, \uc774\ub85c \uc778\ud574 \ubb34\ud55c \ub8e8\ud504\uac00 \ubc1c\uc0dd\ud569\ub2c8\ub2e4."},
  1004. /** ER_CANNOT_MIX_XERCESDOM */
  1005. //public static final int ER_CANNOT_MIX_XERCESDOM = 102;
  1006. {
  1007. ER_CANNOT_MIX_XERCESDOM,
  1008. "Xerces-DOM\uc774 \uc544\ub2cc \uc785\ub825\uacfc Xerces-DOM \ucd9c\ub825\uc744 \ud568\uaed8 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  1009. /** ER_TOO_MANY_LISTENERS */
  1010. //public static final int ER_TOO_MANY_LISTENERS = 103;
  1011. {
  1012. ER_TOO_MANY_LISTENERS,
  1013. "addTraceListenersToStylesheet - TooManyListenersException"},
  1014. /** ER_IN_ELEMTEMPLATEELEM_READOBJECT */
  1015. //public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
  1016. {
  1017. ER_IN_ELEMTEMPLATEELEM_READOBJECT,
  1018. "ElemTemplateElement.readObject\uc5d0: {0}"},
  1019. /** ER_DUPLICATE_NAMED_TEMPLATE */
  1020. //public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
  1021. {
  1022. ER_DUPLICATE_NAMED_TEMPLATE,
  1023. "\uac19\uc740 \uc774\ub984 {0}\uc744(\ub97c) \uac00\uc9c4 \ub458 \uc774\uc0c1\uc758 \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucc3e\uc558\uc2b5\ub2c8\ub2e4."},
  1024. /** ER_INVALID_KEY_CALL */
  1025. //public static final int ER_INVALID_KEY_CALL = 106;
  1026. {
  1027. ER_INVALID_KEY_CALL,
  1028. "\uc798\ubabb\ub41c \ud568\uc218 \ud638\ucd9c: \uc21c\ud658\uc801 key() \ud638\ucd9c\uc740 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1029. /** Variable is referencing itself */
  1030. //public static final int ER_REFERENCING_ITSELF = 107;
  1031. {
  1032. ER_REFERENCING_ITSELF,
  1033. "{0} \ubcc0\uc218\uac00 \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc801\uc73c\ub85c \uc790\uc2e0\uc744 \ucc38\uc870\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4!"},
  1034. /** Illegal DOMSource input */
  1035. //public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
  1036. {
  1037. ER_ILLEGAL_DOMSOURCE_INPUT,
  1038. "newTemplates\uc758 DOMSource\uc5d0\uc11c \uc785\ub825 \ub178\ub4dc\uac00 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  1039. /** Class not found for option */
  1040. //public static final int ER_CLASS_NOT_FOUND_FOR_OPTION = 109;
  1041. {
  1042. ER_CLASS_NOT_FOUND_FOR_OPTION,
  1043. "\uc635\uc158 {0}\uc758 \ud074\ub798\uc2a4 \ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. "},
  1044. /** Required Element not found */
  1045. //public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
  1046. {
  1047. ER_REQUIRED_ELEM_NOT_FOUND,
  1048. "\ud544\uc218 \uc694\uc18c\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"},
  1049. /** InputStream cannot be null */
  1050. //public static final int ER_INPUT_CANNOT_BE_NULL = 111;
  1051. {
  1052. ER_INPUT_CANNOT_BE_NULL,
  1053. "InputStream\uc740 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1054. /** URI cannot be null */
  1055. //public static final int ER_URI_CANNOT_BE_NULL = 112;
  1056. {
  1057. ER_URI_CANNOT_BE_NULL,
  1058. "URI\ub294 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1059. /** File cannot be null */
  1060. //public static final int ER_FILE_CANNOT_BE_NULL = 113;
  1061. {
  1062. ER_FILE_CANNOT_BE_NULL,
  1063. "\ud30c\uc77c\uc740 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1064. /** InputSource cannot be null */
  1065. //public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
  1066. {
  1067. ER_SOURCE_CANNOT_BE_NULL,
  1068. "InputSource\ub294 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1069. /** Can't overwrite cause */
  1070. //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
  1071. {
  1072. ER_CANNOT_OVERWRITE_CAUSE,
  1073. "\uacb9\uccd0\uc4f8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1074. /** Could not initialize BSF Manager */
  1075. //public static final int ER_CANNOT_INIT_BSFMGR = 116;
  1076. {
  1077. ER_CANNOT_INIT_BSFMGR,
  1078. "BSF \uad00\ub9ac\uc790\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1079. /** Could not compile extension */
  1080. //public static final int ER_CANNOT_CMPL_EXTENSN = 117;
  1081. {
  1082. ER_CANNOT_CMPL_EXTENSN,
  1083. "\ud655\uc7a5\uc790\ub97c \ucef4\ud30c\uc77c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1084. /** Could not create extension */
  1085. //public static final int ER_CANNOT_CREATE_EXTENSN = 118;
  1086. {
  1087. ER_CANNOT_CREATE_EXTENSN,
  1088. "{1}\ub85c \uc778\ud574 \ud655\uc7a5\uc790 {0}\uc744(\ub97c) \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1089. /** Instance method call to method {0} requires an Object instance as first argument */
  1090. //public static final int ER_INSTANCE_MTHD_CALL_REQUIRES = 119;
  1091. {
  1092. ER_INSTANCE_MTHD_CALL_REQUIRES,
  1093. "\uba54\uc18c\ub4dc {0}\uc5d0 \ub300\ud55c \uc778\uc2a4\ud134\uc2a4 \uba54\uc18c\ub4dc \ud638\ucd9c\uc5d0\uc11c \uac1d\uccb4 \uc778\uc2a4\ud134\uc2a4\uac00 \uccab \ubc88\uc9f8 \uc778\uc790\uac00 \ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  1094. /** Invalid element name specified */
  1095. //public static final int ER_INVALID_ELEMENT_NAME = 120;
  1096. {
  1097. ER_INVALID_ELEMENT_NAME,
  1098. "\uc798\ubabb\ub41c \uc774\ub984 \uc694\uc18c {0}\uc774(\uac00) \uc9c0\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. "},
  1099. /** Element name method must be static */
  1100. //public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
  1101. {
  1102. ER_ELEMENT_NAME_METHOD_STATIC,
  1103. "\uc774\ub984 \uc694\uc18c \uba54\uc18c\ub4dc\ub294 \uc815\uc801 {0}\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  1104. /** Extension function {0} : {1} is unknown */
  1105. //public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
  1106. {
  1107. ER_EXTENSION_FUNC_UNKNOWN,
  1108. "\ud655\uc7a5 \uae30\ub2a5 {0} : {1}\uc744(\ub97c) \uc54c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1109. /** More than one best match for constructor for */
  1110. //public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
  1111. {
  1112. ER_MORE_MATCH_CONSTRUCTOR,
  1113. "{0}\uc758 \uad6c\uc131\uc790\uc640 \uc77c\uce58\ud558\ub294 \uac83\uc774 \ub450 \uac1c \uc774\uc0c1\uc785\ub2c8\ub2e4. "},
  1114. /** More than one best match for method */
  1115. //public static final int ER_MORE_MATCH_METHOD = 124;
  1116. {
  1117. ER_MORE_MATCH_METHOD,
  1118. "{0} \uba54\uc18c\ub4dc\uc640 \uc77c\uce58\ud558\ub294 \uac83\uc774 \ub450 \uac1c \uc774\uc0c1\uc785\ub2c8\ub2e4."},
  1119. /** More than one best match for element method */
  1120. //public static final int ER_MORE_MATCH_ELEMENT = 125;
  1121. {
  1122. ER_MORE_MATCH_ELEMENT,
  1123. "{0} \uc694\uc18c \uba54\uc18c\ub4dc\uc640 \uc77c\uce58\ud558\ub294 \uac83\uc774 \ub450 \uac1c \uc774\uc0c1\uc785\ub2c8\ub2e4."},
  1124. /** Invalid context passed to evaluate */
  1125. //public static final int ER_INVALID_CONTEXT_PASSED = 126;
  1126. {
  1127. ER_INVALID_CONTEXT_PASSED,
  1128. "{0} \ud3c9\uac00\ub97c \uc704\ud574 \uc804\ub2ec\ub41c \ucee8\ud14d\uc2a4\ud2b8\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4."},
  1129. /** Pool already exists */
  1130. //public static final int ER_POOL_EXISTS = 127;
  1131. {
  1132. ER_POOL_EXISTS,
  1133. "\ud480\uc774 \uc774\ubbf8 \uc788\uc2b5\ub2c8\ub2e4."},
  1134. /** No driver Name specified */
  1135. //public static final int ER_NO_DRIVER_NAME = 128;
  1136. {
  1137. ER_NO_DRIVER_NAME,
  1138. "\uc9c0\uc815\ub41c \ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1139. /** No URL specified */
  1140. //public static final int ER_NO_URL = 129;
  1141. {
  1142. ER_NO_URL,
  1143. "\uc9c0\uc815\ub41c URL\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1144. /** Pool size is less than one */
  1145. //public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
  1146. {
  1147. ER_POOL_SIZE_LESSTHAN_ONE,
  1148. "\ud480 \ud06c\uae30\uac00 1\ubcf4\ub2e4 \uc791\uc2b5\ub2c8\ub2e4!"},
  1149. /** Invalid driver name specified */
  1150. //public static final int ER_INVALID_DRIVER = 131;
  1151. {
  1152. ER_INVALID_DRIVER,
  1153. "\uc9c0\uc815\ub41c \ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4!"},
  1154. /** Did not find the stylesheet root */
  1155. //public static final int ER_NO_STYLESHEETROOT = 132;
  1156. {
  1157. ER_NO_STYLESHEETROOT,
  1158. "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub8e8\ud2b8\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  1159. /** Illegal value for xml:space */
  1160. //public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
  1161. {
  1162. ER_ILLEGAL_XMLSPACE_VALUE,
  1163. "xml:space\uc5d0 \ub300\ud55c \uac12\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4."},
  1164. /** processFromNode failed */
  1165. //public static final int ER_PROCESSFROMNODE_FAILED = 134;
  1166. {
  1167. ER_PROCESSFROMNODE_FAILED,
  1168. "processFromNode\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."},
  1169. /** The resource [] could not load: */
  1170. //public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
  1171. {
  1172. ER_RESOURCE_COULD_NOT_LOAD,
  1173. "[ {0} ] \uc790\uc6d0\uc774 \ub2e4\uc74c\uc744 \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {1} \n {2} \t {3}"},
  1174. /** Buffer size <=0 */
  1175. //public static final int ER_BUFFER_SIZE_LESSTHAN_ZERO = 136;
  1176. {
  1177. ER_BUFFER_SIZE_LESSTHAN_ZERO,
  1178. "\ubc84\ud37c \ud06c\uae30 <=0"},
  1179. /** Unknown error when calling extension */
  1180. //public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
  1181. {
  1182. ER_UNKNOWN_ERROR_CALLING_EXTENSION,
  1183. "\ud655\uc7a5\uc790 \ud638\ucd9c \uc911 \uc54c \uc218 \uc5c6\ub294 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4."},
  1184. /** Prefix {0} does not have a corresponding namespace declaration */
  1185. //public static final int ER_NO_NAMESPACE_DECL = 138;
  1186. {
  1187. ER_NO_NAMESPACE_DECL,
  1188. "{0} \uc811\ub450\uc5b4\uc5d0 \uad00\ub828 \uc774\ub984 \uacf5\uac04 \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1189. /** Element content not allowed for lang=javaclass */
  1190. //public static final int ER_ELEM_CONTENT_NOT_ALLOWED = 139;
  1191. {
  1192. ER_ELEM_CONTENT_NOT_ALLOWED,
  1193. "lang=javaclass {0}\uc5d0 \uc694\uc18c \ucee8\ud150\ud2b8\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1194. /** Stylesheet directed termination */
  1195. //public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
  1196. {
  1197. ER_STYLESHEET_DIRECTED_TERMINATION,
  1198. "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uac00 \uc885\ub8cc\ub85c \uc9c0\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4."},
  1199. /** 1 or 2 */
  1200. //public static final int ER_ONE_OR_TWO = 141;
  1201. {
  1202. ER_ONE_OR_TWO,
  1203. "1 \ub610\ub294 2"},
  1204. /** 2 or 3 */
  1205. //public static final int ER_TWO_OR_THREE = 142;
  1206. {
  1207. ER_TWO_OR_THREE,
  1208. "2 or 3"},
  1209. /** Could not load {0} (check CLASSPATH), now using just the defaults */
  1210. //public static final int ER_COULD_NOT_LOAD_RESOURCE = 143;
  1211. {
  1212. ER_COULD_NOT_LOAD_RESOURCE,
  1213. "\uae30\ubcf8\uac12\ub9cc\uc744 \uc0ac\uc6a9\ud558\uc5ec {0}\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4(CLASSPATH\ub97c \ud655\uc778\ud558\uc2ed\uc2dc\uc624)."},
  1214. /** Cannot initialize default templates */
  1215. //public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
  1216. {
  1217. ER_CANNOT_INIT_DEFAULT_TEMPLATES,
  1218. "\uae30\ubcf8 \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1219. /** Result should not be null */
  1220. //public static final int ER_RESULT_NULL = 145;
  1221. {
  1222. ER_RESULT_NULL,
  1223. "\uacb0\uacfc\ub294 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1224. /** Result could not be set */
  1225. //public static final int ER_RESULT_COULD_NOT_BE_SET = 146;
  1226. {
  1227. ER_RESULT_COULD_NOT_BE_SET,
  1228. "\uacb0\uacfc\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1229. /** No output specified */
  1230. //public static final int ER_NO_OUTPUT_SPECIFIED = 147;
  1231. {
  1232. ER_NO_OUTPUT_SPECIFIED,
  1233. "\uc9c0\uc815\ub41c \ucd9c\ub825\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1234. /** Can't transform to a Result of type */
  1235. //public static final int ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 148;
  1236. {
  1237. ER_CANNOT_TRANSFORM_TO_RESULT_TYPE,
  1238. "\uc720\ud615\uc774 {0}\uc778 \uacb0\uacfc\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1239. /** Can't transform to a Source of type */
  1240. //public static final int ER_CANNOT_TRANSFORM_SOURCE_TYPE = 149;
  1241. {
  1242. ER_CANNOT_TRANSFORM_SOURCE_TYPE,
  1243. "\uc720\ud615\uc774 {0}\uc778 \uc18c\uc2a4\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. "},
  1244. /** Null content handler */
  1245. //public static final int ER_NULL_CONTENT_HANDLER = 150;
  1246. {
  1247. ER_NULL_CONTENT_HANDLER,
  1248. "\ucee8\ud150\ud2b8 \ucc98\ub9ac\uae30\uac00 \ub110\uc785\ub2c8\ub2e4."},
  1249. /** Null error handler */
  1250. //public static final int ER_NULL_ERROR_HANDLER = 151;
  1251. {
  1252. ER_NULL_ERROR_HANDLER,
  1253. "\uc624\ub958 \ucc98\ub9ac\uae30\uac00 \ub110\uc785\ub2c8\ub2e4."},
  1254. /** parse can not be called if the ContentHandler has not been set */
  1255. //public static final int ER_CANNOT_CALL_PARSE = 152;
  1256. {
  1257. ER_CANNOT_CALL_PARSE,
  1258. "ContentHandler\ub97c \uc124\uc815\ud558\uc9c0 \uc54a\uc73c\uba74 \uad6c\ubb38 \ubd84\uc11d\uc774 \ud638\ucd9c\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1259. /** No parent for filter */
  1260. //public static final int ER_NO_PARENT_FOR_FILTER = 153;
  1261. {
  1262. ER_NO_PARENT_FOR_FILTER,
  1263. "\ud544\ud130\uc5d0 \ub300\ud55c \ubd80\ubaa8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1264. /** No stylesheet found in: {0}, media */
  1265. //public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
  1266. {
  1267. ER_NO_STYLESHEET_IN_MEDIA,
  1268. "{0}\uc5d0 \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub9e4\uccb4= {1}"},
  1269. /** No xml-stylesheet PI found in */
  1270. //public static final int ER_NO_STYLESHEET_PI = 155;
  1271. {
  1272. ER_NO_STYLESHEET_PI,
  1273. "{0}\uc5d0 xml-stylesheet PI\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. "},
  1274. /** No default implementation found */
  1275. //public static final int ER_NO_DEFAULT_IMPL = 156;
  1276. {
  1277. ER_NO_DEFAULT_IMPL,
  1278. "\uae30\ubcf8 \uad6c\ud604\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1279. /** ChunkedIntArray({0}) not currently supported */
  1280. //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
  1281. {
  1282. ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
  1283. "ChunkedIntArray({0})\ub294 \ud604\uc7ac \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1284. /** Offset bigger than slot */
  1285. //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
  1286. {
  1287. ER_OFFSET_BIGGER_THAN_SLOT,
  1288. "\uc624\ud504\uc14b\uc774 \uc2ac\ub86f\ubcf4\ub2e4 \ud07d\ub2c8\ub2e4."},
  1289. /** Coroutine not available, id= */
  1290. //public static final int ER_COROUTINE_NOT_AVAIL = 159;
  1291. {
  1292. ER_COROUTINE_NOT_AVAIL,
  1293. "Coroutine\uc740 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4, ID={0}"},
  1294. /** CoroutineManager recieved co_exit() request */
  1295. //public static final int ER_COROUTINE_CO_EXIT = 160;
  1296. {
  1297. ER_COROUTINE_CO_EXIT,
  1298. "CoroutineManager\uac00 co_exit() \uc694\uccad\uc744 \uc218\uc2e0\ud588\uc2b5\ub2c8\ub2e4."},
  1299. /** co_joinCoroutineSet() failed */
  1300. //public static final int ER_COJOINROUTINESET_FAILED = 161;
  1301. {
  1302. ER_COJOINROUTINESET_FAILED,
  1303. "co_joinCoroutineSet()\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."},
  1304. /** Coroutine parameter error () */
  1305. //public static final int ER_COROUTINE_PARAM = 162;
  1306. {
  1307. ER_COROUTINE_PARAM,
  1308. "Coroutine \ub9e4\uac1c\ubcc0\uc218 \uc624\ub958({0})"},
  1309. /** UNEXPECTED: Parser doTerminate answers */
  1310. //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
  1311. {
  1312. ER_PARSER_DOTERMINATE_ANSWERS,
  1313. "\n\uc608\uc0c1\uce58 \ubabb\ud55c \ubb38\uc81c: doTerminate \uad6c\ubb38 \ubd84\uc11d\uae30\uac00 {0}\uc5d0 \uc751\ub2f5\ud588\uc2b5\ub2c8\ub2e4. "},
  1314. /** parse may not be called while parsing */
  1315. //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
  1316. {
  1317. ER_NO_PARSE_CALL_WHILE_PARSING,
  1318. "\uad6c\ubb38 \ubd84\uc11d\ud558\ub294 \ub3d9\uc548\uc5d0\ub294 \uad6c\ubb38 \ubd84\uc11d\uc744 \ud638\ucd9c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1319. /** Error: typed iterator for axis {0} not implemented */
  1320. //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
  1321. {
  1322. ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
  1323. "\uc624\ub958: {0} \ucd95\uc5d0 \ub300\ud574 \uc785\ub825\ub41c \ubc18\ubcf5\uae30\uac00 \uad6c\ud604\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1324. /** Error: iterator for axis {0} not implemented */
  1325. //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
  1326. {
  1327. ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
  1328. "\uc624\ub958: {0} \ucd95\uc5d0 \ub300\ud55c \ubc18\ubcf5\uae30\uac00 \uad6c\ud604\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. "},
  1329. /** Iterator clone not supported */
  1330. //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
  1331. {
  1332. ER_ITERATOR_CLONE_NOT_SUPPORTED,
  1333. "\ubc18\ubcf5\uae30 \ubcf5\uc81c\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1334. /** Unknown axis traversal type */
  1335. //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
  1336. {
  1337. ER_UNKNOWN_AXIS_TYPE,
  1338. "\uc54c \uc218 \uc5c6\ub294 \ucd95 \uc21c\ud68c \uc720\ud615: {0}"},
  1339. /** Axis traverser not supported */
  1340. //public static final int ER_AXIS_NOT_SUPPORTED = 169;
  1341. {
  1342. ER_AXIS_NOT_SUPPORTED,
  1343. "\ucd95 \uc21c\ud68c\uae30\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"},
  1344. /** No more DTM IDs are available */
  1345. //public static final int ER_NO_DTMIDS_AVAIL = 170;
  1346. {
  1347. ER_NO_DTMIDS_AVAIL,
  1348. "\ub354 \uc774\uc0c1 DTM ID\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1349. /** Not supported */
  1350. //public static final int ER_NOT_SUPPORTED = 171;
  1351. {
  1352. ER_NOT_SUPPORTED,
  1353. "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"},
  1354. /** node must be non-null for getDTMHandleFromNode */
  1355. //public static final int ER_NODE_NON_NULL = 172;
  1356. {
  1357. ER_NODE_NON_NULL,
  1358. "\ub178\ub4dc\ub294 getDTMHandleFromNode\uc5d0 \ub300\ud574 \ub110\uc774 \uc544\ub2c8\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  1359. /** Could not resolve the node to a handle */
  1360. //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
  1361. {
  1362. ER_COULD_NOT_RESOLVE_NODE,
  1363. "\ub178\ub4dc\ub97c \ud578\ub4e4\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1364. /** startParse may not be called while parsing */
  1365. //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
  1366. {
  1367. ER_STARTPARSE_WHILE_PARSING,
  1368. "startParse\ub294 \uad6c\ubb38 \ubd84\uc11d \uc911\uc5d0 \ud638\ucd9c\ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1369. /** startParse needs a non-null SAXParser */
  1370. //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
  1371. {
  1372. ER_STARTPARSE_NEEDS_SAXPARSER,
  1373. "startParse\uc5d0\ub294 \ub110\uc774 \uc544\ub2cc SAXParser\uac00 \ud544\uc694\ud569\ub2c8\ub2e4."},
  1374. /** could not initialize parser with */
  1375. //public static final int ER_COULD_NOT_INIT_PARSER = 176;
  1376. {
  1377. ER_COULD_NOT_INIT_PARSER,
  1378. "\ub2e4\uc74c\uc73c\ub85c \uad6c\ubb38 \ubd84\uc11d\uae30\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: "},
  1379. /** Value for property {0} should be a Boolean instance */
  1380. //public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
  1381. {
  1382. ER_PROPERTY_VALUE_BOOLEAN,
  1383. "{0} \ud2b9\uc131\uc5d0 \ub300\ud55c \uac12\uc774 \ubd80\uc6b8 \uc778\uc2a4\ud134\uc2a4\uc5ec\uc57c \ud569\ub2c8\ub2e4."},
  1384. /** exception creating new instance for pool */
  1385. //public static final int ER_EXCEPTION_CREATING_POOL = 178;
  1386. {
  1387. ER_EXCEPTION_CREATING_POOL,
  1388. "\ud480\uc5d0 \ub300\ud55c \uc0c8 \uc778\uc2a4\ud134\uc2a4 \uc791\uc131 \uc911 \uc608\uc678\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4."},
  1389. /** Path contains invalid escape sequence */
  1390. //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
  1391. {
  1392. ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
  1393. "\uacbd\ub85c\uc5d0 \uc798\ubabb\ub41c \uc81c\uc5b4 \ubb38\uc790\uc5f4\uc774 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4."},
  1394. /** Scheme is required! */
  1395. //public static final int ER_SCHEME_REQUIRED = 180;
  1396. {
  1397. ER_SCHEME_REQUIRED,
  1398. "\uccb4\uacc4\uac00 \ud544\uc694\ud569\ub2c8\ub2e4!"},
  1399. /** No scheme found in URI */
  1400. //public static final int ER_NO_SCHEME_IN_URI = 181;
  1401. {
  1402. ER_NO_SCHEME_IN_URI,
  1403. "URI\uc5d0 \uccb4\uacc4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"},
  1404. /** No scheme found in URI */
  1405. //public static final int ER_NO_SCHEME_INURI = 182;
  1406. {
  1407. ER_NO_SCHEME_INURI,
  1408. "URI\uc5d0 \uccb4\uacc4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1409. /** Path contains invalid character: */
  1410. //public static final int ER_PATH_INVALID_CHAR = 183;
  1411. {
  1412. ER_PATH_INVALID_CHAR,
  1413. "\uacbd\ub85c\uc5d0 \uc798\ubabb\ub41c \ubb38\uc790 {0}\uc774(\uac00) \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4."},
  1414. /** Cannot set scheme from null string */
  1415. //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
  1416. {
  1417. ER_SCHEME_FROM_NULL_STRING,
  1418. "\ub110 \ubb38\uc790\uc5f4\uc5d0\uc11c \uccb4\uacc4\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1419. /** The scheme is not conformant. */
  1420. //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
  1421. {
  1422. ER_SCHEME_NOT_CONFORMANT,
  1423. "\uccb4\uacc4\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1424. /** Host is not a well formed address */
  1425. //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
  1426. {
  1427. ER_HOST_ADDRESS_NOT_WELLFORMED,
  1428. "\ud638\uc2a4\ud2b8 \uc8fc\uc18c\uac00 \uc62c\ubc14\ub978 \ud615\uc2dd\uc774 \uc544\ub2d9\ub2c8\ub2e4."},
  1429. /** Port cannot be set when host is null */
  1430. //public static final int ER_PORT_WHEN_HOST_NULL = 187;
  1431. {
  1432. ER_PORT_WHEN_HOST_NULL,
  1433. "\ud638\uc2a4\ud2b8\uac00 \ub110\uc774\uba74 \ud3ec\ud2b8\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1434. /** Invalid port number */
  1435. //public static final int ER_INVALID_PORT = 188;
  1436. {
  1437. ER_INVALID_PORT,
  1438. "\uc798\ubabb\ub41c \ud3ec\ud2b8 \ubc88\ud638\uc785\ub2c8\ub2e4."},
  1439. /** Fragment can only be set for a generic URI */
  1440. //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
  1441. {
  1442. ER_FRAG_FOR_GENERIC_URI,
  1443. "\ub2e8\ud3b8\uc740 \uc77c\ubc18 URI\uc5d0 \ub300\ud574\uc11c\ub9cc \uc124\uc815\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4."},
  1444. /** Fragment cannot be set when path is null */
  1445. //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
  1446. {
  1447. ER_FRAG_WHEN_PATH_NULL,
  1448. "\uacbd\ub85c\uac00 \ub110\uc774\uba74 \ub2e8\ud3b8\uc744 \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1449. /** Fragment contains invalid character */
  1450. //public static final int ER_FRAG_INVALID_CHAR = 191;
  1451. {
  1452. ER_FRAG_INVALID_CHAR,
  1453. "\ub2e8\ud3b8\uc5d0 \uc798\ubabb\ub41c \ubb38\uc790\uac00 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4."},
  1454. /** Parser is already in use */
  1455. //public static final int ER_PARSER_IN_USE = 192;
  1456. {
  1457. ER_PARSER_IN_USE,
  1458. "\uad6c\ubb38 \ubd84\uc11d\uae30\uac00 \uc774\ubbf8 \uc0ac\uc6a9 \uc911\uc785\ub2c8\ub2e4."},
  1459. /** Parser is already in use */
  1460. //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
  1461. {
  1462. ER_CANNOT_CHANGE_WHILE_PARSING,
  1463. "\uad6c\ubb38 \ubd84\uc11d \uc911\uc5d0\ub294 {0} {1}\uc744(\ub97c) \ubcc0\uacbd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1464. /** Self-causation not permitted */
  1465. //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
  1466. {
  1467. ER_SELF_CAUSATION_NOT_PERMITTED,
  1468. "\uc790\uccb4 \uc6d0\uc778 \uc81c\uacf5\uc740 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1469. /* This key/message changed ,NEED ER_COULD_NOT_FIND_EXTERN_SCRIPT: Pending,Ramesh */
  1470. /** src attribute not yet supported for */
  1471. //public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
  1472. {
  1473. "ER_COULD_NOT_FIND_EXTERN_SCRIPT",
  1474. "{0}\uc5d0\uc11c \uc678\ubd80 \uc2a4\ud06c\ub9bd\ud2b8\ub97c \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1475. /** The resource [] could not be found */
  1476. //public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
  1477. {
  1478. ER_RESOURCE_COULD_NOT_FIND,
  1479. "[ {0} ] \uc790\uc6d0\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n {1}"},
  1480. /** output property not recognized: */
  1481. //public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
  1482. {
  1483. ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
  1484. "\ucd9c\ub825 \ud2b9\uc131\uc744 \uc778\uc2dd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"},
  1485. /** Userinfo may not be specified if host is not specified */
  1486. //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
  1487. {
  1488. ER_NO_USERINFO_IF_NO_HOST,
  1489. "\ud638\uc2a4\ud2b8\uac00 \uc9c0\uc815\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc73c\uba74 Userinfo\ub97c \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1490. /** Port may not be specified if host is not specified */
  1491. //public static final int ER_NO_PORT_IF_NO_HOST = 199;
  1492. {
  1493. ER_NO_PORT_IF_NO_HOST,
  1494. "\ud638\uc2a4\ud2b8\uac00 \uc9c0\uc815\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc73c\uba74 \ud3ec\ud2b8\ub97c \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1495. /** Query string cannot be specified in path and query string */
  1496. //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
  1497. {
  1498. ER_NO_QUERY_STRING_IN_PATH,
  1499. "\uc9c8\uc758 \ubb38\uc790\uc5f4\uc744 \uacbd\ub85c \ub610\ub294 \uc9c8\uc758 \ubb38\uc790\uc5f4 \ub0b4\uc5d0 \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1500. /** Fragment cannot be specified in both the path and fragment */
  1501. //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
  1502. {
  1503. ER_NO_FRAGMENT_STRING_IN_PATH,
  1504. "\ub2e8\ud3b8\uc744 \uacbd\ub85c\uc640 \ub2e8\ud3b8 \ubaa8\ub450\uc5d0 \uc9c0\uc815\ud560 \uc218\ub294 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1505. /** Cannot initialize URI with empty parameters */
  1506. //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
  1507. {
  1508. ER_CANNOT_INIT_URI_EMPTY_PARMS,
  1509. "\ube48 \ub9e4\uac1c\ubcc0\uc218\ub85c\ub294 URI\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1510. /** Failed creating ElemLiteralResult instance */
  1511. //public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
  1512. {
  1513. ER_FAILED_CREATING_ELEMLITRSLT,
  1514. "ElemLiteralResult \uc778\uc2a4\ud134\uc2a4 \uc791\uc131\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."},
  1515. // Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
  1516. // In latest Xalan code base key name is ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
  1517. //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
  1518. //NOTE: Not only the key name but message has also been changed. - nb.
  1519. /** Priority value does not contain a parsable number */
  1520. //public static final int ER_VALUE_SHOULD_BE_NUMBER = 204;
  1521. {
  1522. ER_VALUE_SHOULD_BE_NUMBER,
  1523. "{0}\uc5d0 \ub300\ud55c \uac12\uc740 \uad6c\ubd84 \ubd84\uc11d\ud560 \uc218 \uc788\ub294 \uc22b\uc790\ub97c \ud3ec\ud568\ud574\uc57c \ud569\ub2c8\ub2e4."},
  1524. /** Value for {0} should equal 'yes' or 'no' */
  1525. //public static final int ER_VALUE_SHOULD_EQUAL = 205;
  1526. {
  1527. ER_VALUE_SHOULD_EQUAL,
  1528. "{0}\uc5d0 \ub300\ud55c \uac12\uc740 \uc608 \ub610\ub294 \uc544\ub2c8\uc624\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  1529. /** Failed calling {0} method */
  1530. //public static final int ER_FAILED_CALLING_METHOD = 206;
  1531. {
  1532. ER_FAILED_CALLING_METHOD,
  1533. "{0} \uba54\uc18c\ub4dc \ud638\ucd9c\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."},
  1534. /** Failed creating ElemLiteralResult instance */
  1535. //public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
  1536. {
  1537. ER_FAILED_CREATING_ELEMTMPL,
  1538. "ElemTemplateElement \uc778\uc2a4\ud134\uc2a4 \uc791\uc131\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."},
  1539. /** Characters are not allowed at this point in the document */
  1540. //public static final int ER_CHARS_NOT_ALLOWED = 208;
  1541. {
  1542. ER_CHARS_NOT_ALLOWED,
  1543. "\uc774 \ubb38\uc11c\uc5d0\uc11c \ubb38\uc790\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1544. /** attribute is not allowed on the element */
  1545. //public static final int ER_ATTR_NOT_ALLOWED = 209;
  1546. {
  1547. ER_ATTR_NOT_ALLOWED,
  1548. "\"{0}\" \uc18d\uc131\uc774 {1} \uc694\uc18c\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!"},
  1549. /** Method not yet supported */
  1550. //public static final int ER_METHOD_NOT_SUPPORTED = 210;
  1551. {
  1552. ER_METHOD_NOT_SUPPORTED,
  1553. "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\ub294 \uba54\uc18c\ub4dc\uc785\ub2c8\ub2e4 "},
  1554. /** Bad value */
  1555. //public static final int ER_BAD_VALUE = 211;
  1556. {
  1557. ER_BAD_VALUE,
  1558. "{0} \uc798\ubabb\ub41c \uac12 {1} "},
  1559. /** attribute value not found */
  1560. //public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
  1561. {
  1562. ER_ATTRIB_VALUE_NOT_FOUND,
  1563. "{0} \uc18d\uc131 \uac12\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 "},
  1564. /** attribute value not recognized */
  1565. //public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
  1566. {
  1567. ER_ATTRIB_VALUE_NOT_RECOGNIZED,
  1568. "{0} \uc18d\uc131 \uac12\uc744 \uc778\uc2dd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 "},
  1569. /** IncrementalSAXSource_Filter not currently restartable */
  1570. //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
  1571. {
  1572. ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
  1573. "IncrementalSAXSource_Filter\ub97c \ub2e4\uc2dc \uc2dc\uc791\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1574. /** IncrementalSAXSource_Filter not currently restartable */
  1575. //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
  1576. {
  1577. ER_XMLRDR_NOT_BEFORE_STARTPARSE,
  1578. "startParse \uc694\uccad \uc804\uc5d0 XMLReader\ub97c \uc218\ud589\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1579. /** Attempting to generate a namespace prefix with a null URI */
  1580. //public static final int ER_NULL_URI_NAMESPACE = 216;
  1581. {
  1582. ER_NULL_URI_NAMESPACE,
  1583. "\ub110 URI\ub85c \uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80\ub97c \uc0dd\uc131\ud558\ub824\uace0 \uc2dc\ub3c4 \uc911\uc785\ub2c8\ub2e4."},
  1584. // Following are the new ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1585. /** Attempting to generate a namespace prefix with a null URI */
  1586. //public static final int ER_NUMBER_TOO_BIG = 217;
  1587. {
  1588. ER_NUMBER_TOO_BIG,
  1589. "\uac00\uc7a5 \ud070 Long \uc815\uc218\ubcf4\ub2e4 \ud070 \uc22b\uc790 \uc11c\uc2dd\uc744 \uc9c0\uc815\ud558\ub824\uace0 \uc2dc\ub3c4 \uc911\uc785\ub2c8\ub2e4."},
  1590. //ER_CANNOT_FIND_SAX1_DRIVER
  1591. //public static final int ER_CANNOT_FIND_SAX1_DRIVER = 218;
  1592. {
  1593. ER_CANNOT_FIND_SAX1_DRIVER,
  1594. "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1595. //ER_SAX1_DRIVER_NOT_LOADED
  1596. //public static final int ER_SAX1_DRIVER_NOT_LOADED = 219;
  1597. {
  1598. ER_SAX1_DRIVER_NOT_LOADED,
  1599. "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc744(\ub97c) \ucc3e\uc558\uc9c0\ub9cc \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1600. //ER_SAX1_DRIVER_NOT_INSTANTIATED
  1601. //public static final int ER_SAX1_DRIVER_NOT_INSTANTIATED = 220 ;
  1602. {
  1603. ER_SAX1_DRIVER_NOT_INSTANTIATED,
  1604. "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc744(\ub97c) \ub85c\ub4dc\ud588\uc9c0\ub9cc \uc778\uc2a4\ud134\uc2a4\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1605. // ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER
  1606. //public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 221;
  1607. {
  1608. ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER,
  1609. "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc740(\ub294) org.xml.sax.Parser\ub97c \uad6c\ud604\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1610. // ER_PARSER_PROPERTY_NOT_SPECIFIED
  1611. //public static final int ER_PARSER_PROPERTY_NOT_SPECIFIED = 222;
  1612. {
  1613. ER_PARSER_PROPERTY_NOT_SPECIFIED,
  1614. "org.xml.sax.parser \uc2dc\uc2a4\ud15c \ud2b9\uc131\uc774 \uc9c0\uc815\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1615. //ER_PARSER_ARG_CANNOT_BE_NULL
  1616. //public static final int ER_PARSER_ARG_CANNOT_BE_NULL = 223 ;
  1617. {
  1618. ER_PARSER_ARG_CANNOT_BE_NULL,
  1619. "Parser \uc778\uc790\ub294 \ub110\uc774 \uc544\ub2c8\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  1620. // ER_FEATURE
  1621. //public static final int ER_FEATURE = 224;
  1622. {
  1623. ER_FEATURE,
  1624. "\uae30\ub2a5: {0}"},
  1625. // ER_PROPERTY
  1626. //public static final int ER_PROPERTY = 225 ;
  1627. {
  1628. ER_PROPERTY,
  1629. "\ud2b9\uc131: {0}"},
  1630. // ER_NULL_ENTITY_RESOLVER
  1631. //public static final int ER_NULL_ENTITY_RESOLVER = 226;
  1632. {
  1633. ER_NULL_ENTITY_RESOLVER,
  1634. "\ub110 \uc5d4\ud2f0\ud2f0 \uacb0\uc815\uc790"},
  1635. // ER_NULL_DTD_HANDLER
  1636. //public static final int ER_NULL_DTD_HANDLER = 227 ;
  1637. {
  1638. ER_NULL_DTD_HANDLER,
  1639. "\ub110 DTD \ucc98\ub9ac\uae30"},
  1640. // No Driver Name Specified!
  1641. //public static final int ER_NO_DRIVER_NAME_SPECIFIED = 228;
  1642. {
  1643. ER_NO_DRIVER_NAME_SPECIFIED,
  1644. "\ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc774 \uc9c0\uc815\ub418\uc9c0 \uc54a\uc74c!"},
  1645. // No URL Specified!
  1646. //public static final int ER_NO_URL_SPECIFIED = 229;
  1647. {
  1648. ER_NO_URL_SPECIFIED,
  1649. "URL\uc774 \uc9c0\uc815\ub418\uc9c0 \uc54a\uc74c!"},
  1650. // Pool size is less than 1!
  1651. //public static final int ER_POOLSIZE_LESS_THAN_ONE = 230;
  1652. {
  1653. ER_POOLSIZE_LESS_THAN_ONE,
  1654. "\ud480 \ud06c\uae30\uac00 1\ubcf4\ub2e4 \uc791\uc74c!"},
  1655. // Invalid Driver Name Specified!
  1656. //public static final int ER_INVALID_DRIVER_NAME = 231;
  1657. {
  1658. ER_INVALID_DRIVER_NAME,
  1659. "\uc798\ubabb\ub41c \ub4dc\ub77c\uc774\ube0c \uc774\ub984\uc774 \uc9c0\uc815\ub428!"},
  1660. // ErrorListener
  1661. //public static final int ER_ERRORLISTENER = 232;
  1662. {
  1663. ER_ERRORLISTENER,
  1664. "\uc624\ub958 \uc218\uc2e0\uae30"},
  1665. // Programmer's error! expr has no ElemTemplateElement parent!
  1666. //public static final int ER_ASSERT_NO_TEMPLATE_PARENT = 233;
  1667. {
  1668. ER_ASSERT_NO_TEMPLATE_PARENT,
  1669. "\ud504\ub85c\uadf8\ub798\uba38 \uc624\ub958! \uc2dd\uc5d0 ElemTemplateElement \ubd80\ubaa8\uac00 \uc5c6\uc74c!"},
  1670. // Programmer's assertion in RundundentExprEliminator: {0}
  1671. //public static final int ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 234;
  1672. {
  1673. ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
  1674. "RundundentExprEliminator\uc758 \ud504\ub85c\uadf8\ub798\uba38 \uba85\uc81c: {0}"},
  1675. // Axis traverser not supported: {0}
  1676. //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
  1677. {
  1678. ER_AXIS_TRAVERSER_NOT_SUPPORTED,
  1679. "\ucd95 \ud2b8\ub798\ubc84\uc11c\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc74c: {0}"},
  1680. // ListingErrorHandler created with null PrintWriter!
  1681. //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = 236;
  1682. {
  1683. ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
  1684. "ListingErrorHandler\uac00 \ub110 PrintWriter\ub85c \uc791\uc131\ub428!"},
  1685. // {0}is not allowed in this position in the stylesheet!
  1686. //public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
  1687. {
  1688. ER_NOT_ALLOWED_IN_POSITION,
  1689. "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc758 \uc774 \uc704\uce58\uc5d0\ub294 {0}\uc744(\ub97c) \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  1690. // Non-whitespace text is not allowed in this position in the stylesheet!
  1691. //public static final int ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 238;
  1692. {
  1693. ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION,
  1694. "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc758 \uc774 \uc704\uce58\uc5d0\ub294 \uacf5\ubc31\uc774 \uc544\ub2cc \ud14d\uc2a4\ud2b8\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  1695. // This code is shared with warning codes.
  1696. // Illegal value: {1} used for CHAR attribute: {0}. An attribute of type CHAR must be only 1 character!
  1697. //public static final int INVALID_TCHAR = 239;
  1698. // SystemId Unknown
  1699. {
  1700. INVALID_TCHAR,
  1701. "\uc798\ubabb\ub41c \uac12: CHAR \uc18d\uc131 {0}\uc5d0 \uc0ac\uc6a9\ub41c {1}. CHAR \uc720\ud615\uc758 \uc18d\uc131\uc740 1\uc790\uc5ec\uc57c \ud569\ub2c8\ub2e4!"},
  1702. //public static final int ER_SYSTEMID_UNKNOWN = 240;
  1703. {
  1704. ER_SYSTEMID_UNKNOWN,
  1705. "\uc2dc\uc2a4\ud15c ID\ub97c \uc54c \uc218 \uc5c6\uc74c"},
  1706. // Location of error unknown
  1707. //public static final int ER_LOCATION_UNKNOWN = 241;
  1708. {
  1709. ER_LOCATION_UNKNOWN,
  1710. "\uc624\ub958 \uc704\uce58\ub97c \uc54c \uc218 \uc5c6\uc74c"},
  1711. // Note to translators: The following message is used if the value of
  1712. // an attribute in a stylesheet is invalid. "QNAME" is the XML data-type of
  1713. // the attribute, and should not be translated. The substitution text {1} is
  1714. // the attribute value and {0} is the attribute name.
  1715. // INVALID_QNAME
  1716. //The following codes are shared with the warning codes...
  1717. // Illegal value: {1} used for QNAME attribute: {0}
  1718. //public static final int INVALID_QNAME = 242;
  1719. {
  1720. INVALID_QNAME,
  1721. "\uc798\ubabb\ub41c \uac12: QNAME \uc18d\uc131 {0}\uc5d0 \uc0ac\uc6a9\ub41c {1}"},
  1722. // Note to translators: The following message is used if the value of
  1723. // an attribute in a stylesheet is invalid. "ENUM" is the XML data-type of
  1724. // the attribute, and should not be translated. The substitution text {1} is
  1725. // the attribute value, {0} is the attribute name, and {2} is a list of valid
  1726. // values.
  1727. // INVALID_ENUM
  1728. // Illegal value:a {1} used for ENUM attribute:a {0}. Valid values are:a {2}.
  1729. //public static final int INVALID_ENUM = 243;
  1730. {
  1731. INVALID_ENUM,
  1732. "\uc798\ubabb\ub41c \uac12: ENUM \uc18d\uc131 {0}\uc5d0 \uc0ac\uc6a9\ub41c {1}. \uc720\ud6a8\ud55c \uac12: {2}."},
  1733. // Note to translators: The following message is used if the value of
  1734. // an attribute in a stylesheet is invalid. "NMTOKEN" is the XML data-type
  1735. // of the attribute, and should not be translated. The substitution text {1} is
  1736. // the attribute value and {0} is the attribute name.
  1737. // INVALID_NMTOKEN
  1738. // Illegal value:a {1} used for NMTOKEN attribute:a {0}.
  1739. //public static final int INVALID_NMTOKEN = 244;
  1740. {
  1741. INVALID_NMTOKEN,
  1742. "\uc798\ubabb\ub41c \uac12: NMTOKEN \uc18d\uc131 {0}\uc5d0 \uc0ac\uc6a9\ub41c {1} "},
  1743. // Note to translators: The following message is used if the value of
  1744. // an attribute in a stylesheet is invalid. "NCNAME" is the XML data-type
  1745. // of the attribute, and should not be translated. The substitution text {1} is
  1746. // the attribute value and {0} is the attribute name.
  1747. // INVALID_NCNAME
  1748. // Illegal value:a {1} used for NCNAME attribute:a {0}.
  1749. //public static final int INVALID_NCNAME = 245;
  1750. {
  1751. INVALID_NCNAME,
  1752. "\uc798\ubabb\ub41c \uac12: NCNAME \uc18d\uc131 {0}\uc5d0 \uc0ac\uc6a9\ub41c {1} "},
  1753. // Note to translators: The following message is used if the value of
  1754. // an attribute in a stylesheet is invalid. "boolean" is the XSLT data-type
  1755. // of the attribute, and should not be translated. The substitution text {1} is
  1756. // the attribute value and {0} is the attribute name.
  1757. // INVALID_BOOLEAN
  1758. // Illegal value:a {1} used for boolean attribute:a {0}.
  1759. //public static final int INVALID_BOOLEAN = 246;
  1760. {
  1761. INVALID_BOOLEAN,
  1762. "\uc798\ubabb\ub41c \uac12: boolean \uc18d\uc131 {0}\uc5d0 \uc0ac\uc6a9\ub41c {1} "},
  1763. // Note to translators: The following message is used if the value of
  1764. // an attribute in a stylesheet is invalid. "number" is the XSLT data-type
  1765. // of the attribute, and should not be translated. The substitution text {1} is
  1766. // the attribute value and {0} is the attribute name.
  1767. // INVALID_NUMBER
  1768. // Illegal value:a {1} used for number attribute:a {0}.
  1769. //public static final int INVALID_NUMBER = 247;
  1770. {
  1771. INVALID_NUMBER,
  1772. "\uc798\ubabb\ub41c \uac12: number \uc18d\uc131 {0}\uc5d0 \uc0ac\uc6a9\ub41c {1} "},
  1773. // End of shared codes...
  1774. // Note to translators: A "match pattern" is a special form of XPath expression
  1775. // that is used for matching patterns. The substitution text is the name of
  1776. // a function. The message indicates that when this function is referenced in
  1777. // a match pattern, its argument must be a string literal (or constant.)
  1778. // ER_ARG_LITERAL - new error message for bugzilla //5202
  1779. // Argument to {0} in match pattern must be a literal.
  1780. //public static final int ER_ARG_LITERAL = 248;
  1781. {
  1782. ER_ARG_LITERAL,
  1783. "\uc77c\uce58 \ud328\ud134\uc5d0\uc11c {0}\uc5d0 \ub300\ud55c \uc778\uc790\ub294 \ub9ac\ud130\ub7f4\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4."},
  1784. // Note to translators: The following message indicates that two definitions of
  1785. // a variable. A "global variable" is a variable that is accessible everywher
  1786. // in the stylesheet.
  1787. // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
  1788. // Duplicate global variable declaration.
  1789. //public static final int ER_DUPLICATE_GLOBAL_VAR = 249;
  1790. {
  1791. ER_DUPLICATE_GLOBAL_VAR,
  1792. "\uc911\ubcf5\ub418\ub294 \uc804\uc5ed \ubcc0\uc218 \uc120\uc5b8"},
  1793. // Note to translators: The following message indicates that two definitions of
  1794. // a variable were encountered.
  1795. // ER_DUPLICATE_VAR - new error message for bugzilla #790
  1796. // Duplicate variable declaration.
  1797. //public static final int ER_DUPLICATE_VAR = 250;
  1798. {
  1799. ER_DUPLICATE_VAR,
  1800. "\uc911\ubcf5\ub418\ub294 \ubcc0\uc218 \uc120\uc5b8"},
  1801. // Note to translators: "xsl:template, "name" and "match" are XSLT keywords
  1802. // which must not be translated.
  1803. // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
  1804. // xsl:template must have a name or match attribute (or both)
  1805. //public static final int ER_TEMPLATE_NAME_MATCH = 251;
  1806. {
  1807. ER_TEMPLATE_NAME_MATCH,
  1808. "xsl:template\uc740 name \ub610\ub294 match \uc18d\uc131(\ub610\ub294 \ubaa8\ub450)\uc744 \uac00\uc838\uc57c \ud569\ub2c8\ub2e4."},
  1809. // Note to translators: "exclude-result-prefixes" is an XSLT keyword which
  1810. // should not be translated. The message indicates that a namespace prefix
  1811. // encountered as part of the value of the exclude-result-prefixes attribute
  1812. // was in error.
  1813. // ER_INVALID_PREFIX - new error message for bugzilla #788
  1814. // Prefix in exclude-result-prefixes is not valid:a {0}
  1815. //public static final int ER_INVALID_PREFIX = 252;
  1816. {
  1817. ER_INVALID_PREFIX,
  1818. "exclude-result-prefixes\uc758 \uc811\ub450\uc5b4\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}"},
  1819. // Note to translators: An "attribute set" is a set of attributes that can be
  1820. // added to an element in the output document as a group. The message indicates
  1821. // that there was a reference to an attribute set named {0} that was never
  1822. // defined.
  1823. // ER_NO_ATTRIB_SET - new error message for bugzilla #782
  1824. // attribute-set named {0} does not exist
  1825. //public static final int ER_NO_ATTRIB_SET = 253;
  1826. {
  1827. ER_NO_ATTRIB_SET,
  1828. "\uc774\ub984\uc774 {0}\uc778 \uc18d\uc131 \uc9d1\ud569\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1829. // Warnings...
  1830. /** WG_FOUND_CURLYBRACE */
  1831. //public static final int WG_FOUND_CURLYBRACE = 1;
  1832. {
  1833. WG_FOUND_CURLYBRACE,
  1834. "'}'\ub97c \ucc3e\uc558\uc73c\ub098 \uc18d\uc131 \ud15c\ud50c\ub9ac\ud2b8\ub97c \uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"},
  1835. /** WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR */
  1836. //public static final int WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 2;
  1837. {
  1838. WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR,
  1839. "\uacbd\uace0: \uce74\uc6b4\ud2b8 \uc18d\uc131\uc774 xsl:number\uc758 \uc0c1\uc704\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! \ub300\uc0c1 = {0}"},
  1840. /** WG_EXPR_ATTRIB_CHANGED_TO_SELECT */
  1841. //public static final int WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 3;
  1842. {
  1843. WG_EXPR_ATTRIB_CHANGED_TO_SELECT,
  1844. "\uc774\uc804 \uad6c\ubb38: 'expr' \uc18d\uc131\uc758 \uc774\ub984\uc774 'select'\ub85c \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4."},
  1845. /** WG_NO_LOCALE_IN_FORMATNUMBER */
  1846. //public static final int WG_NO_LOCALE_IN_FORMATNUMBER = 4;
  1847. {
  1848. WG_NO_LOCALE_IN_FORMATNUMBER,
  1849. "Xalan\uc774 format-number \uae30\ub2a5\uc5d0\uc11c \ub85c\ucf08 \uc774\ub984\uc744 \uc544\uc9c1 \ucc98\ub9ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  1850. /** WG_LOCALE_NOT_FOUND */
  1851. //public static final int WG_LOCALE_NOT_FOUND = 5;
  1852. {
  1853. WG_LOCALE_NOT_FOUND,
  1854. "\uacbd\uace0: xml:lang={0}\uc5d0 \ub300\ud55c \ub85c\ucf08\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1855. /** WG_CANNOT_MAKE_URL_FROM */
  1856. //public static final int WG_CANNOT_MAKE_URL_FROM = 6;
  1857. {
  1858. WG_CANNOT_MAKE_URL_FROM,
  1859. "{0}\uc5d0\uc11c URL\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1860. /** WG_CANNOT_LOAD_REQUESTED_DOC */
  1861. //public static final int WG_CANNOT_LOAD_REQUESTED_DOC = 7;
  1862. {
  1863. WG_CANNOT_LOAD_REQUESTED_DOC,
  1864. "\uc694\uccad\ud55c \ubb38\uc11c {0}\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1865. /** WG_CANNOT_FIND_COLLATOR */
  1866. //public static final int WG_CANNOT_FIND_COLLATOR = 8;
  1867. {
  1868. WG_CANNOT_FIND_COLLATOR,
  1869. "<sort xml:lang={0}\uc5d0 \ub300\ud55c \uc870\ud569\uae30\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1870. /** WG_FUNCTIONS_SHOULD_USE_URL */
  1871. //public static final int WG_FUNCTIONS_SHOULD_USE_URL = 9;
  1872. {
  1873. WG_FUNCTIONS_SHOULD_USE_URL,
  1874. "\uc774\uc804 \uad6c\ubb38: \ud568\uc218 \uc9c0\uc2dc\uc0ac\ud56d\uc740 {0} url\uc744 \uc0ac\uc6a9\ud574\uc57c \ud569\ub2c8\ub2e4."},
  1875. /** WG_ENCODING_NOT_SUPPORTED_USING_UTF8 */
  1876. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 10;
  1877. {
  1878. WG_ENCODING_NOT_SUPPORTED_USING_UTF8,
  1879. "UTF-8\uc744 \uc0ac\uc6a9\ud558\uc5ec \ucf54\ub4dc\ud654\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"},
  1880. /** WG_ENCODING_NOT_SUPPORTED_USING_JAVA */
  1881. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 11;
  1882. {
  1883. WG_ENCODING_NOT_SUPPORTED_USING_JAVA,
  1884. "Java {1}\uc744(\ub97c) \uc0ac\uc6a9\ud558\uc5ec \ucf54\ub4dc\ud654\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0} "},
  1885. /** WG_SPECIFICITY_CONFLICTS */
  1886. //public static final int WG_SPECIFICITY_CONFLICTS = 12;
  1887. {
  1888. WG_SPECIFICITY_CONFLICTS,
  1889. "\ud2b9\uc774\uc131 \ucda9\ub3cc\uc774 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4: \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc5d0\uc11c \ub9c8\uc9c0\ub9c9\uc73c\ub85c \ubc1c\uacac\ub41c {0}\uc774(\uac00) \uc0ac\uc6a9\ub429\ub2c8\ub2e4."},
  1890. /** WG_PARSING_AND_PREPARING */
  1891. //public static final int WG_PARSING_AND_PREPARING = 13;
  1892. {
  1893. WG_PARSING_AND_PREPARING,
  1894. "========= {0}\uc744(\ub97c) \uad6c\ubb38 \ubd84\uc11d \ubc0f \uc900\ube44 \uc911 =========="},
  1895. /** WG_ATTR_TEMPLATE */
  1896. //public static final int WG_ATTR_TEMPLATE = 14;
  1897. {
  1898. WG_ATTR_TEMPLATE, "Attr \ud15c\ud50c\ub9ac\ud2b8, {0}"},
  1899. /** WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE */
  1900. //public static final int WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = 15;
  1901. {
  1902. WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE,
  1903. "xsl:strip-space \ubc0f xsl:preserve-space \uac04\uc758 \uc77c\uce58 \ucda9\ub3cc"},
  1904. /** WG_ATTRIB_NOT_HANDLED */
  1905. //public static final int WG_ATTRIB_NOT_HANDLED = 16;
  1906. {
  1907. WG_ATTRIB_NOT_HANDLED,
  1908. "Xalan\uc774 \uc544\uc9c1 {0} \uc18d\uc131\uc744 \ucc98\ub9ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!"},
  1909. /** WG_NO_DECIMALFORMAT_DECLARATION */
  1910. //public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
  1911. {
  1912. WG_NO_DECIMALFORMAT_DECLARATION,
  1913. "\uc2ed\uc9c4\uc218 \ud615\uc2dd {0}\uc5d0 \ub300\ud55c \uc120\uc5b8\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."},
  1914. /** WG_OLD_XSLT_NS */
  1915. //public static final int WG_OLD_XSLT_NS = 18;
  1916. {
  1917. WG_OLD_XSLT_NS, "XSLT \uc774\ub984 \uacf5\uac04\uc774 \ube60\uc84c\uac70\ub098 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4. "},
  1918. /** WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED */
  1919. //public static final int WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 19;
  1920. {
  1921. WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED,
  1922. "\ud558\ub098\uc758 \uae30\ubcf8 xsl:decimal-format \uc120\uc5b8\ub9cc \ud5c8\uc6a9\ub429\ub2c8\ub2e4."},
  1923. /** WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE */
  1924. //public static final int WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 20;
  1925. {
  1926. WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE,
  1927. "xsl:decimal-format \uc774\ub984\uc740 \uace0\uc720\ud574\uc57c \ud569\ub2c8\ub2e4. \"{0}\"\uc740(\ub294) \uc911\ubcf5\ub429\ub2c8\ub2e4."},
  1928. /** WG_ILLEGAL_ATTRIBUTE */
  1929. //public static final int WG_ILLEGAL_ATTRIBUTE = 21;
  1930. {
  1931. WG_ILLEGAL_ATTRIBUTE,
  1932. "{0}\uc5d0 \uc798\ubabb\ub41c \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4."},
  1933. /** WG_COULD_NOT_RESOLVE_PREFIX */
  1934. //public static final int WG_COULD_NOT_RESOLVE_PREFIX = 22;
  1935. {
  1936. WG_COULD_NOT_RESOLVE_PREFIX,
  1937. "\uc774\ub984 \uacf5\uac04 \uc811\ub450\uc5b4 {0}\uc744(\ub97c) \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc774 \ub178\ub4dc\ub294 \ubb34\uc2dc\ub429\ub2c8\ub2e4."},
  1938. /** WG_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  1939. //public static final int WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 23;
  1940. {
  1941. WG_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  1942. "xsl:stylesheet\uc5d0 'version' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!"},
  1943. /** WG_ILLEGAL_ATTRIBUTE_NAME */
  1944. //public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
  1945. {
  1946. WG_ILLEGAL_ATTRIBUTE_NAME,
  1947. "\uc798\ubabb\ub41c \uc18d\uc131 \uc774\ub984: {0}"},
  1948. /** WG_ILLEGAL_ATTRIBUTE_VALUE */
  1949. //public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
  1950. {
  1951. WG_ILLEGAL_ATTRIBUTE_VALUE,
  1952. "{0} \uc18d\uc131\uc5d0 \uc798\ubabb\ub41c \uac12 {1}\uc774(\uac00) \uc0ac\uc6a9\ub418\uc5c8\uc2b5\ub2c8\ub2e4."},
  1953. /** WG_EMPTY_SECOND_ARG */
  1954. //public static final int WG_EMPTY_SECOND_ARG = 26;
  1955. {
  1956. WG_EMPTY_SECOND_ARG,
  1957. "\ubb38\uc11c \uae30\ub2a5\uc758 \ub450 \ubc88\uc9f8 \uc778\uc790\uc758 \uacb0\uacfc\ub85c \ubc1c\uc0dd\ud55c \ub178\ub4dc \uc138\ud2b8\uac00 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \uccab \ubc88\uc9f8 \uc778\uc790\uac00 \uc0ac\uc6a9\ub429\ub2c8\ub2e4."},
  1958. // Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1959. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1960. // and must not be translated.
  1961. // WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML
  1962. /** WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  1963. //public static final int WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 27;
  1964. {
  1965. WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  1966. "xsl:processing-instruction \uc774\ub984\uc758 'name' \uc18d\uc131 \uac12\uc740 'xml'\uc774\uc5b4\uc11c\ub294 \uc548\ub429\ub2c8\ub2e4."},
  1967. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1968. // and must not be translated. "NCName" is an XML data-type and must not be
  1969. // translated.
  1970. // WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME
  1971. /** WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  1972. //public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;
  1973. {
  1974. WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  1975. "xsl:processing-instruction\uc758 'name' \uc18d\uc131 \uac12\uc740 \uc720\ud6a8\ud55c NCName\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4: {0}"},
  1976. // Note to translators: This message is reported if the stylesheet that is
  1977. // being processed attempted to construct an XML document with an attribute in a
  1978. // place other than on an element. The substitution text specifies the name of
  1979. // the attribute.
  1980. // WG_ILLEGAL_ATTRIBUTE_POSITION
  1981. /** WG_ILLEGAL_ATTRIBUTE_POSITION */
  1982. //public static final int WG_ILLEGAL_ATTRIBUTE_POSITION = 29;
  1983. {
  1984. WG_ILLEGAL_ATTRIBUTE_POSITION,
  1985. "\ud558\uc704 \ub178\ub4dc \ub2e4\uc74c\uc774\ub098 \ub610\ub294 \uc694\uc18c\uac00 \ub9cc\ub4e4\uc5b4\uc9c0\uae30 \uc804\uc5d0 \uc18d\uc131 {0}\uc744(\ub97c) \ucd94\uac00\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc18d\uc131\uc774 \ubb34\uc2dc\ub429\ub2c8\ub2e4."},
  1986. // WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
  1987. // Other miscellaneous text used inside the code...
  1988. { "ui_language", "ko"},
  1989. { "help_language", "ko"},
  1990. { "language", "ko"},
  1991. { "BAD_CODE",
  1992. "createMessage\uc758 \ub9e4\uac1c\ubcc0\uc218\uac00 \ubc14\uc6b4\ub4dc\ub97c \ubc97\uc5b4\ub0ac\uc2b5\ub2c8\ub2e4."},
  1993. { "FORMAT_FAILED",
  1994. "messageFormat \ud638\ucd9c \uc2dc \uc608\uc678 \ubc1c\uc0dd"},
  1995. { "version", ">>>>>>> Xalan \ubc84\uc804 "},
  1996. { "version2", "<<<<<<<"},
  1997. { "yes", "\uc608"},
  1998. { "line", "\ud589 #"},
  1999. { "column", "\uc5f4 #"},
  2000. { "xsldone", "XSLProcessor: \uc644\ub8cc"},
  2001. { "xslProc_option",
  2002. "Xalan-J \uba85\ub839\uc904 \ud504\ub85c\uc138\uc2a4 \ud074\ub798\uc2a4 \uc635\uc158:"},
  2003. { "xslProc_invalid_xsltc_option", "\uc635\uc158 {0}\uc740(\ub294) XSLTC \ubaa8\ub4dc\uc5d0\uc11c \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
  2004. { "xslProc_invalid_xalan_option", "\uc635\uc158{0}\uc740(\ub294) -XSLTC\uc5d0\ub9cc \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4."},
  2005. { "xslProc_no_input", "\uc624\ub958: \uc2a4\ud0c0\uc77c\uc2dc\ud2b8\ub098 \uc785\ub825 xml\uc774 \uc9c0\uc815\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \uc0ac\uc6a9 \uc9c0\uce68\uc5d0 \ub300\ud55c \uc635\uc158\uc744 \uc0ac\uc6a9\ud558\uc9c0 \uc54a\uace0 \uc774 \uba85\ub839\uc744 \uc2e4\ud589\ud558\uc2ed\uc2dc\uc624."},
  2006. { "xslProc_common_options", "-\uc77c\ubc18 \uc635\uc158-"},
  2007. { "xslProc_xalan_options", "-Xalan\uc6a9 \uc635\uc158-"},
  2008. { "xslProc_xsltc_options", "-XSLTC\uc6a9 \uc635\uc158-"},
  2009. { "xslProc_return_to_continue", "(\uacc4\uc18d\ud558\ub824\uba74 <return>\uc744 \ub204\ub974\uc2ed\uc2dc\uc624.)"},
  2010. { "optionXSLTC", " [-XSLTC (\ubcc0\ud658\uc5d0 XSLTC\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624)]"},
  2011. { "optionIN", " -IN inputXMLURL"},
  2012. { "optionXSL", " [-XSL XSLTransformationURL]"},
  2013. { "optionOUT", " [-OUT outputFileName]"},
  2014. { "optionLXCIN",
  2015. " [-LXCIN compiledStylesheetFileNameIn]"},
  2016. { "optionLXCOUT",
  2017. " [-LXCOUT compiledStylesheetFileNameOutOut]"},
  2018. { "optionPARSER",
  2019. " [-PARSER \uad6c\ubb38 \ubd84\uc11d\uae30 liaison\uc758 \uc644\uc804\ud55c \ud074\ub798\uc2a4 \uc774\ub984]"},
  2020. { "optionE",
  2021. " [-E (\uc5d4\ud2f0\ud2f0 refs\ub97c \ud655\uc7a5\ud558\uc9c0 \ub9c8\uc2ed\uc2dc\uc624.)]"},
  2022. { "optionV",
  2023. " [-E (\uc5d4\ud2f0\ud2f0 refs\ub97c \ud655\uc7a5\ud558\uc9c0 \ub9c8\uc2ed\uc2dc\uc624.)]"},
  2024. { "optionQC",
  2025. " [-QC (\ubb34\uc74c \ud328\ud134 \ucda9\ub3cc \uacbd\uace0)]"},
  2026. { "optionQ", " [-Q (\ubb34\uc74c \ubaa8\ub4dc)]"},
  2027. { "optionLF",
  2028. " [-LF (\ucd9c\ub825\uc5d0\uc11c\ub9cc \uc904 \ubc14\uafc8\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. {\uae30\ubcf8\uac12\uc740 CR/LF\uc785\ub2c8\ub2e4.})]"},
  2029. { "optionCR",
  2030. " [-CR (\ucd9c\ub825\uc5d0\uc11c\ub9cc \uce90\ub9ac\uc9c0 \ub9ac\ud134\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. {\uae30\ubcf8\uac12\uc740 CR/LF\uc785\ub2c8\ub2e4.})]"},
  2031. { "optionESCAPE",
  2032. " [-ESCAPE (\uc81c\uc5b4\ud560 \ubb38\uc790 {\uae30\ubcf8\uac12\uc740 <>&\"\'\\r\\n}]"},
  2033. { "optionINDENT",
  2034. " [-INDENT (\ub4e4\uc5ec\uc4f0\uae30\ud560 \uacf5\ubc31 \uc218\ub97c \uc81c\uc5b4\ud569\ub2c8\ub2e4. {\uae30\ubcf8\uac12\uc740 0\uc785\ub2c8\ub2e4.})]"},
  2035. { "optionTT",
  2036. " [-TT (\ud638\ucd9c\ub420 \ub54c \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucd94\uc801\ud569\ub2c8\ub2e4.)]"},
  2037. { "optionTG",
  2038. " [-TG (\uac01 \uc0dd\uc131 \uc774\ubca4\ud2b8\ub97c \ucd94\uc801\ud569\ub2c8\ub2e4.)]"},
  2039. { "optionTS",
  2040. " [-TS (\uac01 \uc120\ud0dd \uc774\ubca4\ud2b8\ub97c \ucd94\uc801\ud569\ub2c8\ub2e4.)]"},
  2041. { "optionTTC",
  2042. " [-TTC (\ucc98\ub9ac\ub420 \ub54c \ud15c\ud50c\ub9ac\ud2b8 \uc790\uc2dd\uc744 \ucd94\uc801\ud569\ub2c8\ub2e4.)]"},
  2043. { "optionTCLASS",
  2044. " [-TCLASS (\ucd94\uc801 \ud655\uc7a5\uc5d0 \ub300\ud55c TraceListener \ud074\ub798\uc2a4\uc785\ub2c8\ub2e4.)]"},
  2045. { "optionVALIDATE",
  2046. " [-VALIDATE (\uac80\uc99d \uc5ec\ubd80\ub97c \uc124\uc815\ud569\ub2c8\ub2e4. \uae30\ubcf8\uac12\uc740 \uac80\uc99d\uc774 \ubc1c\uc0dd\ud558\uc9c0 \uc54a\ub294 \uac83\uc785\ub2c8\ub2e4.)]"},
  2047. { "optionEDUMP",
  2048. " [-EDUMP {\uc120\ud0dd\uc801 \ud30c\uc77c \uc774\ub984} (\uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uba74 \uc2a4\ud0dd\ub364\ud504 \ud558\uc2ed\uc2dc\uc624.)]"},
  2049. { "optionXML",
  2050. " [-XML (XML \ud3ec\ub9e4\ud130\ub97c \uc0ac\uc6a9\ud558\uc5ec XML \ud5e4\ub354\ub97c \ucd94\uac00\ud558\uc2ed\uc2dc\uc624.)]"},
  2051. { "optionTEXT",
  2052. " [-TEXT (\ub2e8\uc21c \ud14d\uc2a4\ud2b8 \ud3ec\ub9e4\ud130\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624.)]"},
  2053. { "optionHTML",
  2054. " [-HTML (HTML \ud3ec\ub9e4\ud130\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624.)]"},
  2055. { "optionPARAM",
  2056. " [-PARAM \uc774\ub984 \ud45c\ud604\uc2dd (\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub9e4\uac1c\ubcc0\uc218\ub97c \uc124\uc815\ud558\uc2ed\uc2dc\uc624.)]"},
  2057. { "noParsermsg1",
  2058. "XSL \ud504\ub85c\uc138\uc2a4\uac00 \uc131\uacf5\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4."},
  2059. { "noParsermsg2",
  2060. "** \uad6c\ubb38 \ubd84\uc11d\uae30\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 **"},
  2061. { "noParsermsg3",
  2062. "\ud074\ub798\uc2a4 \uacbd\ub85c\ub97c \ud655\uc778\ud558\uc2ed\uc2dc\uc624."},
  2063. { "noParsermsg4",
  2064. "Java\uc6a9 IBM XML \uad6c\ubb38 \ubd84\uc11d\uae30\uac00 \uc5c6\ub294 \uacbd\uc6b0 \ub2e4\uc74c\uc5d0\uc11c \ub2e4\uc6b4\ub85c\ub4dc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4."},
  2065. { "noParsermsg5",
  2066. "IBM AlphaWorks: http://www.alphaworks.ibm.com/formula/xml"},
  2067. { "optionURIRESOLVER",
  2068. " [-URIRESOLVER \uc804\uccb4 \ud074\ub798\uc2a4 \uc774\ub984(URI\ub97c \uacb0\uc815\ud558\ub294 \ub370 \uc0ac\uc6a9\ub418\ub294 URIResolver)]"},
  2069. { "optionENTITYRESOLVER",
  2070. " [-ENTITYRESOLVER \uc804\uccb4 \ud074\ub798\uc2a4 \uc774\ub984(\uc5d4\ud2f0\ud2f0\ub97c \uacb0\uc815\ud558\ub294 \ub370 \uc0ac\uc6a9\ub418\ub294 EntityResolver)]"},
  2071. { "optionCONTENTHANDLER",
  2072. " [-CONTENTHANDLER \uc804\uccb4 \ud074\ub798\uc2a4 \uc774\ub984(\ucd9c\ub825\uc744 \uc77c\ub828\ud654\ud558\ub294 \ub370 \uc0ac\uc6a9\ub418\ub294 ContentHandler)]"},
  2073. { "optionLINENUMBERS",
  2074. " [-L \uc18c\uc2a4 \ubb38\uc11c\uc758 \uc904 \ubc88\ud638 \uc0ac\uc6a9]"},
  2075. // Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
  2076. { "optionMEDIA",
  2077. " [-MEDIA mediaType(media \uc18d\uc131\uc744 \uc0ac\uc6a9\ud558\uc5ec \ubb38\uc11c\uc640 \uad00\ub828\ub41c \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\ub97c \ucc3e\uc2b5\ub2c8\ub2e4.)]"},
  2078. { "optionFLAVOR",
  2079. " [-FLAVOR flavorName(\ubcc0\ud658\ud558\ub824\uba74 \uba85\uc2dc\uc801\uc73c\ub85c s2s=SAX \ub610\ub294 d2d=DOM\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624.)] "}, // Added by sboag/scurcuru; experimental
  2080. { "optionDIAG",
  2081. " [-DIAG(\ubcc0\ud658\uc5d0 \uac78\ub9b0 \uc804\uccb4 \uc2dc\uac04(\ubc00\ub9ac\ucd08)\ub97c \uc778\uc1c4\ud569\ub2c8\ub2e4.)]"},
  2082. { "optionINCREMENTAL",
  2083. " [-INCREMENTAL (http://xml.apache.org/xalan/features/incremental\uc744 true\ub85c \uc124\uc815\ud558\uc5ec \uc99d\ubd84 DTP \uc0dd\uc131\uc744 \uc694\uccad\ud569\ub2c8\ub2e4.)]"},
  2084. { "optionNOOPTIMIMIZE",
  2085. " [-NOOPTIMIMIZE (http://xml.apache.org/xalan/features/optimize\ub97c false\ub85c \uc124\uc815\ud558\uc5ec \uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ucd5c\uc801\ud654 \ucc98\ub9ac\ub97c \uc694\uccad\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.)]"},
  2086. { "optionRL",
  2087. " [-RL recursionlimit(\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \uc7ac\uadc0 \uae4a\uc774\uc5d0 \ub300\ud574 \uc22b\uc790 \uc81c\ud55c\uc744 \uc9c0\uc815\ud569\ub2c8\ub2e4.)]"},
  2088. { "optionXO",
  2089. " [-XO [transletName] (\uc0dd\uc131\ub41c translet\uc5d0 \uc774\ub984\uc744 \ud560\ub2f9\ud569\ub2c8\ub2e4.)]"},
  2090. { "optionXD",
  2091. " [-XD destinationDirectory(translet\uc5d0 \ub300\ud55c \ub300\uc0c1 \ub514\ub809\ud1a0\ub9ac\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4.)]"},
  2092. { "optionXJ",
  2093. " [-XJ jarfile(translet \ud074\ub798\uc2a4\ub97c \uc774\ub984\uc774 <jarfile>\uc778 jar \ud30c\uc77c\ub85c \ud328\ud0a4\uc9c0\ud654\ud569\ub2c8\ub2e4.)]"},
  2094. { "optionXP",
  2095. " [-XP package(\uc0dd\uc131\ub41c \ubaa8\ub4e0 translet \ud074\ub798\uc2a4\uc5d0 \ub300\ud574 \ud328\ud0a4\uc9c0 \uc774\ub984 \uc811\ub450\uc5b4\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4.)]"},
  2096. //AddITIONAL STRINGS that need L10n
  2097. // Note to translators: The following message describes usage of a particular
  2098. // command-line option that is used to enable the "template inlining"
  2099. // optimization. The optimization involves making a copy of the code
  2100. // generated for a template in another template that refers to it.
  2101. { "optionXN", " [-XN (template inlining \uc0ac\uc6a9 \uac00\ub2a5)]" },
  2102. { "optionXX", " [-XX (\ucd94\uac00 \ub514\ubc84\uae45 \uba54\uc2dc\uc9c0 \ucd9c\ub825 \ud45c\uc2dc)]"},
  2103. { "optionXT" , " [-XT (\uac00\ub2a5\ud55c \uacbd\uc6b0 translet\uc744 \uc0ac\uc6a9\ud574\uc11c \ubcc0\ud658)]"},
  2104. { "diagTiming"," --------- {1}\uc744 \ud1b5\ud574 {0}\uc744 \ubcc0\ud658\ud558\ub294 \ub370 {2}ms \uc18c\uc694" },
  2105. { "recursionTooDeep","\ud15c\ud50c\ub9bf \uc911\ucca9 \uacfc\ub3c4. \uc911\ucca9 = {0}, \ud15c\ud50c\ub9bf {1} {2}" },
  2106. { "nameIs", "\uc774\ub984" },
  2107. { "matchPatternIs", "\uc77c\uce58\ud558\ub294 \ud328\ud134" }
  2108. };
  2109. // ================= INFRASTRUCTURE ======================
  2110. /** String for use when a bad error code was encountered. */
  2111. public static final String BAD_CODE = "BAD_CODE";
  2112. /** String for use when formatting of the error string failed. */
  2113. public static final String FORMAT_FAILED = "FORMAT_FAILED";
  2114. /** General error string. */
  2115. public static final String ERROR_STRING = "#error";
  2116. /** String to prepend to error messages. */
  2117. public static final String ERROR_HEADER = "\uc624\ub958: ";
  2118. /** String to prepend to warning messages. */
  2119. public static final String WARNING_HEADER = "\uacbd\uace0: ";
  2120. /** String to specify the XSLT module. */
  2121. public static final String XSL_HEADER = "XSLT ";
  2122. /** String to specify the XML parser module. */
  2123. public static final String XML_HEADER = "XML ";
  2124. /** I don't think this is used any more.
  2125. * @deprecated */
  2126. public static final String QUERY_HEADER = "PATTERN ";
  2127. /**
  2128. * Get the lookup table.
  2129. *
  2130. * @return The int to message lookup table.
  2131. */
  2132. public Object[][] getContents()
  2133. {
  2134. return contents;
  2135. }
  2136. }