KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > util > XDocletUtilMessages


1 /*
2  * Copyright (c) 2001, 2002 The XDoclet team
3  * All rights reserved.
4  */

5 package xdoclet.util;
6
7 /**
8  * @author Ara Abrahamian (ara_e_w@yahoo.com)
9  * @created May 31, 2002
10  * @version $Revision: 1.5 $
11  */

12 public final class XDocletUtilMessages
13 {
14     /**
15      * @msg.bundle msg="Initializing XML parser failed."
16      */

17     public final static String JavaDoc INIT_FAILED = "INIT_FAILED";
18
19     /**
20      * @msg.bundle msg="Generated file [{0}:line {1}] Message=[{2}] is not valid according to its DTD or XML Schema.
21      * This might be due to some missing tags in your source."
22      */

23     public final static String JavaDoc GENERATED_XML_INVALID = "GENERATED_XML_INVALID";
24
25     /**
26      * @msg.bundle msg="The validateion for the generated file [{0}] failed. Message=[{2}] ."
27      */

28     public final static String JavaDoc PARSING_FAILED = "PARSING_FAILED";
29
30     /**
31      * @msg.bundle msg="Exception reading merge file. {0}"
32      */

33     public final static String JavaDoc EXCEPTION_READING_MERGE_FILE = "EXCEPTION_READING_MERGE_FILE";
34
35     /**
36      * @msg.bundle msg="WARNING: Can't validate against the XML Schema because the SAX Parser does not support JAXP
37      * 1.2 XML Schema validation. Please make sure that a JAXP 1.2 SAX Parser is available in the classpath (i.e.
38      * Xerces-J)."
39      */

40     public final static String JavaDoc PARSER_DOES_NOT_SUPPORT_XSD_VALIDATION = "PARSER_DOES_NOT_SUPPORT_XSD_VALIDATION";
41
42     /**
43      * @msg.bundle msg="WARNING: Can't validate against the XML Schema because no namespace-aware SAX Parser could be
44      * found. Please make sure that a JAXP 1.2 SAX Parser is available in the classpath (i.e. Xerces-J)."
45      */

46     public final static String JavaDoc NO_NAMESPACE_AWARE_SAX_PARSER = "NO_NAMESPACE_AWARE_SAX_PARSER";
47 }
48
Popular Tags