1
1
/*
2
- * Copyright (c) 1997, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1997, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -196,7 +196,7 @@ private void showUsage() {
196
196
}
197
197
198
198
private void showUsage (String headerKey , ToolOption .Kind kind , String footerKey ) {
199
- log . noticeUsingKey (headerKey );
199
+ showLinesUsingKey (headerKey );
200
200
showToolOptions (kind );
201
201
202
202
// let doclet print usage information
@@ -205,12 +205,13 @@ private void showUsage(String headerKey, ToolOption.Kind kind, String footerKey)
205
205
? Option .Kind .EXTENDED
206
206
: Option .Kind .STANDARD );
207
207
}
208
- if (footerKey != null )
209
- log .noticeUsingKey (footerKey );
208
+ if (footerKey != null ) {
209
+ showLinesUsingKey (footerKey );
210
+ }
210
211
}
211
212
212
213
private void showVersion (String labelKey , String value ) {
213
- log . noticeUsingKey (labelKey , log .programName , value );
214
+ showLinesUsingKey (labelKey , log .programName , value );
214
215
}
215
216
216
217
private void showToolOptions (ToolOption .Kind kind ) {
@@ -253,7 +254,7 @@ private void showDocletOptions(Option.Kind kind) {
253
254
if (options .isEmpty ()) {
254
255
return ;
255
256
}
256
- log . noticeUsingKey ("main.doclet.usage.header" , name );
257
+ showLinesUsingKey ("main.doclet.usage.header" , name );
257
258
258
259
Comparator <Doclet .Option > comp = new Comparator <Doclet .Option >() {
259
260
final Collator collator = Collator .getInstance (Locale .US );
@@ -308,22 +309,30 @@ void showOption(List<String> names, String parameters, String description) {
308
309
if (synopses .length () < DEFAULT_SYNOPSIS_WIDTH
309
310
&& !description .contains ("\n " )
310
311
&& (SMALL_INDENT .length () + DEFAULT_SYNOPSIS_WIDTH + 1 + description .length () <= DEFAULT_MAX_LINE_LENGTH )) {
311
- log . notice (String .format (COMPACT_FORMAT , synopses , description ));
312
+ showLines (String .format (COMPACT_FORMAT , synopses , description ));
312
313
return ;
313
314
}
314
315
315
316
// If option synopses fit on a single line of reasonable length, show that;
316
317
// otherwise, show 1 per line
317
318
if (synopses .length () <= DEFAULT_MAX_LINE_LENGTH ) {
318
- log . notice (SMALL_INDENT + synopses );
319
+ showLines (SMALL_INDENT + synopses );
319
320
} else {
320
321
for (String name : names ) {
321
- log . notice (SMALL_INDENT + name + parameters );
322
+ showLines (SMALL_INDENT + name + parameters );
322
323
}
323
324
}
324
325
325
326
// Finally, show the description
326
- log .notice (LARGE_INDENT + description .replace ("\n " , "\n " + LARGE_INDENT ));
327
+ showLines (LARGE_INDENT + description .replace ("\n " , "\n " + LARGE_INDENT ));
328
+ }
329
+
330
+ private void showLinesUsingKey (String key , Object ... args ) {
331
+ showLines (log .getText (key , args ));
332
+ }
333
+
334
+ private void showLines (String message ) {
335
+ log .printRawLines (Log .WriterKind .STDOUT , message );
327
336
}
328
337
329
338
0 commit comments