You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: build.gradle
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
group 'info.picocli'
2
2
description 'Annotation-based Java command line parser. Usage help with ANSI styles and colors. Easily included as source to avoid adding a dependency.'
<dt><ahref="picocli/CommandLine.Help.Ansi.Text.html" title="class in picocli"><spanclass="typeNameLink">CommandLine.Help.Ansi.Text</span></a> - Class in <ahref="picocli/package-summary.html">picocli</a></dt>
233
233
<dd>
234
-
<divclass="block">Encapsulates rich text with styles and colors in a way that other components like <ahref="picocli/CommandLine.Help.TextTable.html" title="class in picocli"><code>CommandLine.Help.TextTable</code></a>
235
-
are unaware of the embedded ANSI escape codes.</div>
234
+
<divclass="block">Encapsulates rich text with styles and colors.</div>
236
235
</dd>
237
236
<dt><ahref="picocli/CommandLine.Help.ColorScheme.html" title="class in picocli"><spanclass="typeNameLink">CommandLine.Help.ColorScheme</span></a> - Class in <ahref="picocli/package-summary.html">picocli</a></dt>
238
237
<dd>
@@ -450,6 +449,12 @@ <h2 class="title">D</h2>
450
449
</dd>
451
450
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.Help.html#detailedSynopsis-java.util.Comparator-boolean-">detailedSynopsis(Comparator<Field>, boolean)</a></span> - Method in class picocli.<ahref="picocli/CommandLine.Help.html" title="class in picocli">CommandLine.Help</a></dt>
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.Help.html#detailedSynopsis-int-java.util.Comparator-boolean-">detailedSynopsis(int, Comparator<Field>, boolean)</a></span> - Method in class picocli.<ahref="picocli/CommandLine.Help.html" title="class in picocli">CommandLine.Help</a></dt>
457
+
<dd>
453
458
<divclass="block">Generates a detailed synopsis message showing all options and parameters.</div>
454
459
</dd>
455
460
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.DuplicateOptionAnnotationsException.html#DuplicateOptionAnnotationsException-java.lang.String-">DuplicateOptionAnnotationsException(String)</a></span> - Constructor for exception picocli.<ahref="picocli/CommandLine.DuplicateOptionAnnotationsException.html" title="class in picocli">CommandLine.DuplicateOptionAnnotationsException</a></dt>
@@ -504,6 +509,10 @@ <h2 class="title">G</h2>
504
509
<dd>
505
510
<divclass="block">Returns the annotated object that this <code>CommandLine</code> instance was constructed with.</div>
506
511
</dd>
512
+
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.html#getParent--">getParent()</a></span> - Method in class picocli.<ahref="picocli/CommandLine.html" title="class in picocli">CommandLine</a></dt>
513
+
<dd>
514
+
<divclass="block">Returns the command that this is a subcommand of, or <code>null</code> if this is a top-level command.</div>
515
+
</dd>
507
516
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.html#getSeparator--">getSeparator()</a></span> - Method in class picocli.<ahref="picocli/CommandLine.html" title="class in picocli">CommandLine</a></dt>
508
517
<dd>
509
518
<divclass="block">Returns the String that separates option names from option values when parsing command line options.</div>
@@ -583,8 +592,16 @@ <h2 class="title">I</h2>
583
592
<dd>
584
593
<divclass="block">Returns whether the end user may specify arguments on the command line that are not matched to any option or parameter fields.</div>
585
594
</dd>
595
+
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.html#isUsageHelpRequested--">isUsageHelpRequested()</a></span> - Method in class picocli.<ahref="picocli/CommandLine.html" title="class in picocli">CommandLine</a></dt>
596
+
<dd>
597
+
<divclass="block">Returns <code>true</code> if an option annotated with <ahref="picocli/CommandLine.Option.html#usageHelp--"><code>CommandLine.Option.usageHelp()</code></a> was specified on the command line.</div>
598
+
</dd>
586
599
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.Range.html#isVariable">isVariable</a></span> - Variable in class picocli.<ahref="picocli/CommandLine.Range.html" title="class in picocli">CommandLine.Range</a></dt>
587
600
<dd> </dd>
601
+
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.html#isVersionHelpRequested--">isVersionHelpRequested()</a></span> - Method in class picocli.<ahref="picocli/CommandLine.html" title="class in picocli">CommandLine</a></dt>
602
+
<dd>
603
+
<divclass="block">Returns <code>true</code> if an option annotated with <ahref="picocli/CommandLine.Option.html#versionHelp--"><code>CommandLine.Option.versionHelp()</code></a> was specified on the command line.</div>
604
+
</dd>
588
605
</dl>
589
606
<aname="I:J">
590
607
<!-- -->
@@ -811,6 +828,14 @@ <h2 class="title">P</h2>
811
828
<dd>
812
829
<divclass="block">Immutable list of fields annotated with <ahref="picocli/CommandLine.Parameters.html" title="annotation in picocli"><code>CommandLine.Parameters</code></a>, or an empty list if no such field exists.</div>
813
830
</dd>
831
+
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.html#printVersionHelp-java.io.PrintStream-">printVersionHelp(PrintStream)</a></span> - Method in class picocli.<ahref="picocli/CommandLine.html" title="class in picocli">CommandLine</a></dt>
832
+
<dd>
833
+
<divclass="block">Delegates to <ahref="picocli/CommandLine.html#printVersionHelp-java.io.PrintStream-picocli.CommandLine.Help.Ansi-"><code>CommandLine.printVersionHelp(PrintStream, Help.Ansi)</code></a> with the <ahref="picocli/CommandLine.Help.Ansi.html#AUTO">platform default</a>.</div>
834
+
</dd>
835
+
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.html#printVersionHelp-java.io.PrintStream-picocli.CommandLine.Help.Ansi-">printVersionHelp(PrintStream, CommandLine.Help.Ansi)</a></span> - Method in class picocli.<ahref="picocli/CommandLine.html" title="class in picocli">CommandLine</a></dt>
836
+
<dd>
837
+
<divclass="block">Prints version information from the <ahref="picocli/CommandLine.Command.html#version--"><code>CommandLine.Command.version()</code></a> annotation to the specified <code>PrintStream</code>.</div>
838
+
</dd>
814
839
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.Help.TextTable.html#putValue-int-int-picocli.CommandLine.Help.Ansi.Text-">putValue(int, int, CommandLine.Help.Ansi.Text)</a></span> - Method in class picocli.<ahref="picocli/CommandLine.Help.TextTable.html" title="class in picocli">CommandLine.Help.TextTable</a></dt>
815
840
<dd>
816
841
<divclass="block">Writes the specified value into the cell at the specified row and column and returns the last row and
@@ -907,7 +932,13 @@ <h2 class="title">S</h2>
907
932
</dd>
908
933
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.Help.html#synopsis--">synopsis()</a></span> - Method in class picocli.<ahref="picocli/CommandLine.Help.html" title="class in picocli">CommandLine.Help</a></dt>
909
934
<dd>
910
-
<divclass="block">Returns a synopsis for the command.</div>
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.Help.html#synopsis-int-">synopsis(int)</a></span> - Method in class picocli.<ahref="picocli/CommandLine.Help.html" title="class in picocli">CommandLine.Help</a></dt>
940
+
<dd>
941
+
<divclass="block">Returns a synopsis for the command, reserving the specified space for the synopsis heading.</div>
911
942
</dd>
912
943
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.Help.html#synopsisHeading">synopsisHeading</a></span> - Variable in class picocli.<ahref="picocli/CommandLine.Help.html" title="class in picocli">CommandLine.Help</a></dt>
913
944
<dd>
@@ -917,6 +948,10 @@ <h2 class="title">S</h2>
917
948
<dd>
918
949
<divclass="block">Returns the text displayed before the synopsis text; the result of <code>String.format(synopsisHeading, params)</code>.</div>
919
950
</dd>
951
+
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.Help.html#synopsisHeadingLength--">synopsisHeadingLength()</a></span> - Method in class picocli.<ahref="picocli/CommandLine.Help.html" title="class in picocli">CommandLine.Help</a></dt>
952
+
<dd>
953
+
<divclass="block">Returns the number of characters the synopsis heading will take on the same line as the synopsis.</div>
954
+
</dd>
920
955
</dl>
921
956
<aname="I:T">
922
957
<!-- -->
@@ -1003,7 +1038,7 @@ <h2 class="title">U</h2>
1003
1038
</dd>
1004
1039
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.html#usage-java.io.PrintStream-picocli.CommandLine.Help.ColorScheme-">usage(PrintStream, CommandLine.Help.ColorScheme)</a></span> - Method in class picocli.<ahref="picocli/CommandLine.html" title="class in picocli">CommandLine</a></dt>
1005
1040
<dd>
1006
-
<divclass="block">Prints a usage help message for the specified annotated class to the specified <code>PrintStream</code>.</div>
1041
+
<divclass="block">Prints a usage help message for the annotated command class to the specified <code>PrintStream</code>.</div>
1007
1042
</dd>
1008
1043
</dl>
1009
1044
<aname="I:V">
@@ -1044,7 +1079,7 @@ <h2 class="title">V</h2>
1044
1079
</dd>
1045
1080
<dt><spanclass="memberNameLink"><ahref="picocli/CommandLine.html#VERSION">VERSION</a></span> - Static variable in class picocli.<ahref="picocli/CommandLine.html" title="class in picocli">CommandLine</a></dt>
1046
1081
<dd>
1047
-
<divclass="block">This is picocli version "0.9.7".</div>
1082
+
<divclass="block">This is picocli version "0.9.8".</div>
0 commit comments