src/share/classes/com/sun/tools/doclint/resources/doclint.properties

changeset 1796
242bcad5be74
parent 1793
391f97e270c2
child 1885
d6158f8d7235
equal deleted inserted replaced
1795:7a4fd1076b15 1796:242bcad5be74
65 dc.tag.p.in.pre= unexpected use of <p> inside <pre> element 65 dc.tag.p.in.pre= unexpected use of <p> inside <pre> element
66 dc.tag.self.closing = self-closing element not allowed 66 dc.tag.self.closing = self-closing element not allowed
67 dc.tag.start.unmatched = end tag missing: </{0}> 67 dc.tag.start.unmatched = end tag missing: </{0}>
68 dc.tag.unknown = unknown tag: {0} 68 dc.tag.unknown = unknown tag: {0}
69 dc.text.not.allowed = text not allowed in <{0}> element 69 dc.text.not.allowed = text not allowed in <{0}> element
70
71 dc.main.ioerror=IO error: {0}
72 dc.main.no.files.given=No files given
73 dc.main.usage=\
74 Usage:\n\
75 \ doclint [options] source-files...\n\
76 \n\
77 Options:\n\
78 \ -Xmsgs \n\
79 \ Same as -Xmsgs:all\n\
80 \ -Xmsgs:values\n\
81 \ Specify categories of issues to be checked, where ''values''\n\
82 \ is a comma-separated list of any of the following:\n\
83 \ reference show places where comments contain incorrect\n\
84 \ references to Java source code elements\n\
85 \ syntax show basic syntax errors within comments\n\
86 \ html show issues with HTML tags and attributes\n\
87 \ accessibility show issues for accessibility\n\
88 \ missing show issues with missing documentation\n\
89 \ all all of the above\n\
90 \ Precede a value with ''-'' to negate it\n\
91 \ Categories may be qualified by one of:\n\
92 \ /public /protected /package /private\n\
93 \ For positive categories (not beginning with ''-'')\n\
94 \ the qualifier applies to that access level and above.\n\
95 \ For negative categories (beginning with ''-'')\n\
96 \ the qualifier applies to that access level and below.\n\
97 \ If a qualifier is missing, the category applies to\n\
98 \ all access levels.\n\
99 \ For example, -Xmsgs:all,-syntax/private\n\
100 \ This will enable all messages, except syntax errors\n\
101 \ in the doc comments of private methods.\n\
102 \ If no -Xmsgs options are provided, the default is\n\
103 \ equivalent to -Xmsgs:all/protected, meaning that\n\
104 \ all messages are reported for protected and public\n\
105 \ declarations only. \n\
106 \ -stats\n\
107 \ Report statistics on the reported issues.\n\
108 \ -h -help --help -usage -?\n\
109 \ Show this message.\n\
110 \n\
111 The following javac options are also supported\n\
112 \ -bootclasspath, -classpath, -sourcepath, -Xmaxerrs, -Xmaxwarns\n\
113 \n\
114 To run doclint on part of a project, put the compiled classes for your\n\
115 project on the classpath (or bootclasspath), then specify the source files\n\
116 to be checked on the command line.

mercurial