From e2a63190551228c2e69a20072dac8194065deb4f Mon Sep 17 00:00:00 2001 From: Christos Houtouridis Date: Tue, 27 Nov 2018 01:06:41 +0200 Subject: [PATCH] Init commit with echo and a kind of log --- .gitignore | 4 + bin/net/hoo2/auth/vmodem/Com.class | Bin 0 -> 3042 bytes bin/net/hoo2/auth/vmodem/Echo.class | Bin 0 -> 2830 bytes bin/net/hoo2/auth/vmodem/Transaction.class | Bin 0 -> 479 bytes bin/net/hoo2/auth/vmodem/VirtualModem.class | Bin 0 -> 4514 bytes echo.log | 483 +++++ ithakimodem/Modem$terminal.class | Bin 0 -> 2210 bytes ithakimodem/Modem.class | Bin 0 -> 6593 bytes libs/commons-cli-1.4/CONTRIBUTING.md | 97 + libs/commons-cli-1.4/LICENSE.txt | 202 ++ libs/commons-cli-1.4/NOTICE.txt | 5 + libs/commons-cli-1.4/README.md | 98 + libs/commons-cli-1.4/RELEASE-NOTES.txt | 251 +++ .../apidocs/allclasses-frame.html | 40 + .../apidocs/allclasses-noframe.html | 40 + .../apidocs/constant-values.html | 227 +++ .../apidocs/deprecated-list.html | 265 +++ libs/commons-cli-1.4/apidocs/help-doc.html | 224 +++ libs/commons-cli-1.4/apidocs/index-all.html | 1448 ++++++++++++++ libs/commons-cli-1.4/apidocs/index.html | 73 + .../commons/cli/AlreadySelectedException.html | 370 ++++ .../commons/cli/AmbiguousOptionException.html | 334 ++++ .../org/apache/commons/cli/BasicParser.html | 339 ++++ .../commons/cli/CommandLine.Builder.html | 324 ++++ .../org/apache/commons/cli/CommandLine.html | 721 +++++++ .../apache/commons/cli/CommandLineParser.html | 282 +++ .../org/apache/commons/cli/DefaultParser.html | 591 ++++++ .../org/apache/commons/cli/GnuParser.html | 348 ++++ .../org/apache/commons/cli/HelpFormatter.html | 1685 +++++++++++++++++ .../commons/cli/MissingArgumentException.html | 347 ++++ .../commons/cli/MissingOptionException.html | 345 ++++ .../apache/commons/cli/Option.Builder.html | 558 ++++++ .../org/apache/commons/cli/Option.html | 1237 ++++++++++++ .../org/apache/commons/cli/OptionBuilder.html | 737 +++++++ .../org/apache/commons/cli/OptionGroup.html | 426 +++++ .../org/apache/commons/cli/Options.html | 668 +++++++ .../apache/commons/cli/ParseException.html | 277 +++ .../org/apache/commons/cli/Parser.html | 673 +++++++ .../commons/cli/PatternOptionBuilder.html | 523 +++++ .../org/apache/commons/cli/PosixParser.html | 413 ++++ .../org/apache/commons/cli/TypeHandler.html | 505 +++++ .../cli/UnrecognizedOptionException.html | 352 ++++ .../class-use/AlreadySelectedException.html | 150 ++ .../class-use/AmbiguousOptionException.html | 123 ++ .../commons/cli/class-use/BasicParser.html | 123 ++ .../cli/class-use/CommandLine.Builder.html | 156 ++ .../commons/cli/class-use/CommandLine.html | 252 +++ .../cli/class-use/CommandLineParser.html | 182 ++ .../commons/cli/class-use/DefaultParser.html | 123 ++ .../commons/cli/class-use/GnuParser.html | 123 ++ .../commons/cli/class-use/HelpFormatter.html | 123 ++ .../class-use/MissingArgumentException.html | 123 ++ .../cli/class-use/MissingOptionException.html | 152 ++ .../commons/cli/class-use/Option.Builder.html | 237 +++ .../apache/commons/cli/class-use/Option.html | 352 ++++ .../commons/cli/class-use/OptionBuilder.html | 262 +++ .../commons/cli/class-use/OptionGroup.html | 192 ++ .../apache/commons/cli/class-use/Options.html | 479 +++++ .../commons/cli/class-use/ParseException.html | 367 ++++ .../apache/commons/cli/class-use/Parser.html | 168 ++ .../cli/class-use/PatternOptionBuilder.html | 123 ++ .../commons/cli/class-use/PosixParser.html | 123 ++ .../commons/cli/class-use/TypeHandler.html | 123 ++ .../UnrecognizedOptionException.html | 150 ++ .../org/apache/commons/cli/package-frame.html | 47 + .../apache/commons/cli/package-summary.html | 311 +++ .../org/apache/commons/cli/package-tree.html | 173 ++ .../org/apache/commons/cli/package-use.html | 213 +++ .../apidocs/overview-tree.html | 177 ++ libs/commons-cli-1.4/apidocs/package-list | 1 + libs/commons-cli-1.4/apidocs/script.js | 30 + .../apidocs/serialized-form.html | 409 ++++ libs/commons-cli-1.4/apidocs/stylesheet.css | 574 ++++++ .../commons-cli-1.4-javadoc.jar | Bin 0 -> 179154 bytes .../commons-cli-1.4-sources.jar | Bin 0 -> 63104 bytes .../commons-cli-1.4-test-sources.jar | Bin 0 -> 57339 bytes .../commons-cli-1.4/commons-cli-1.4-tests.jar | Bin 0 -> 80020 bytes libs/commons-cli-1.4/commons-cli-1.4.jar | Bin 0 -> 53820 bytes libs/ithakimodem.jar | Bin 0 -> 10774 bytes src/net/hoo2/auth/vmodem/Com.java | 113 ++ src/net/hoo2/auth/vmodem/Echo.java | 78 + src/net/hoo2/auth/vmodem/VirtualModem.java | 148 ++ 82 files changed, 21992 insertions(+) create mode 100644 .gitignore create mode 100755 bin/net/hoo2/auth/vmodem/Com.class create mode 100755 bin/net/hoo2/auth/vmodem/Echo.class create mode 100755 bin/net/hoo2/auth/vmodem/Transaction.class create mode 100755 bin/net/hoo2/auth/vmodem/VirtualModem.class create mode 100755 echo.log create mode 100755 ithakimodem/Modem$terminal.class create mode 100755 ithakimodem/Modem.class create mode 100755 libs/commons-cli-1.4/CONTRIBUTING.md create mode 100755 libs/commons-cli-1.4/LICENSE.txt create mode 100755 libs/commons-cli-1.4/NOTICE.txt create mode 100755 libs/commons-cli-1.4/README.md create mode 100755 libs/commons-cli-1.4/RELEASE-NOTES.txt create mode 100755 libs/commons-cli-1.4/apidocs/allclasses-frame.html create mode 100755 libs/commons-cli-1.4/apidocs/allclasses-noframe.html create mode 100755 libs/commons-cli-1.4/apidocs/constant-values.html create mode 100755 libs/commons-cli-1.4/apidocs/deprecated-list.html create mode 100755 libs/commons-cli-1.4/apidocs/help-doc.html create mode 100755 libs/commons-cli-1.4/apidocs/index-all.html create mode 100755 libs/commons-cli-1.4/apidocs/index.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/AlreadySelectedException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/AmbiguousOptionException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/BasicParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLine.Builder.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLine.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLineParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/DefaultParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/GnuParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/HelpFormatter.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/MissingArgumentException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/MissingOptionException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Option.Builder.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Option.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/OptionBuilder.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/OptionGroup.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Options.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/ParseException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Parser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/PatternOptionBuilder.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/PosixParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/TypeHandler.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/UnrecognizedOptionException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/AlreadySelectedException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/AmbiguousOptionException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/BasicParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLine.Builder.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLine.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLineParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/DefaultParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/GnuParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/HelpFormatter.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/MissingArgumentException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/MissingOptionException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Option.Builder.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Option.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/OptionBuilder.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/OptionGroup.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Options.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/ParseException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Parser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/PatternOptionBuilder.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/PosixParser.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/TypeHandler.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/UnrecognizedOptionException.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-frame.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-summary.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-tree.html create mode 100755 libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-use.html create mode 100755 libs/commons-cli-1.4/apidocs/overview-tree.html create mode 100755 libs/commons-cli-1.4/apidocs/package-list create mode 100755 libs/commons-cli-1.4/apidocs/script.js create mode 100755 libs/commons-cli-1.4/apidocs/serialized-form.html create mode 100755 libs/commons-cli-1.4/apidocs/stylesheet.css create mode 100755 libs/commons-cli-1.4/commons-cli-1.4-javadoc.jar create mode 100755 libs/commons-cli-1.4/commons-cli-1.4-sources.jar create mode 100755 libs/commons-cli-1.4/commons-cli-1.4-test-sources.jar create mode 100755 libs/commons-cli-1.4/commons-cli-1.4-tests.jar create mode 100755 libs/commons-cli-1.4/commons-cli-1.4.jar create mode 100755 libs/ithakimodem.jar create mode 100755 src/net/hoo2/auth/vmodem/Com.java create mode 100755 src/net/hoo2/auth/vmodem/Echo.java create mode 100755 src/net/hoo2/auth/vmodem/VirtualModem.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3da1fa2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*/bin/* +*.project +*.classpath +*.pdf diff --git a/bin/net/hoo2/auth/vmodem/Com.class b/bin/net/hoo2/auth/vmodem/Com.class new file mode 100755 index 0000000000000000000000000000000000000000..c85d2416abe3d622ba455cb19cd1fb3ca25d4ab2 GIT binary patch literal 3042 zcma)8TUQ*#7XE6cdv0kG7?^}aCczkV7%-CnCK?hXT%r&z5hg^5=a6Qm15M_FJw1sz zH*=2Bc#rzx(iioK7azO?qOul`KKSIXa4r9U4=y!+RXt1y!R28M(^Xxy_x`?b?_D+D z|NiY7fG)frgioNcV7aOJVzDD-mfiW(<$N(~qNiFzGsWVXixb?E(SYoi{Jp94J6D0`()_D-YnPgxSsI(xPQ$xg2usyj3i_ z90rct1>5Zr@F!ZQ1hjtcjlhpx2I|oe#BPDQ`+P;vh+Sa_G#S`|S~=Qlpbh~!YBmr> zKyKM@;2|7fxRT{g%Fy(m7;2r8YY!WE1POr%*U}yuZ*`htjMxQhtel^`EbjxFbvmzq0omjw2V{8?5=Sx*cxAfJl5K(NAG@ntdulcW_Ft%5)-algE+(-P}r z20GA5ld_XjhQz36a>WvrYQ!-EkK-s^JJt(jt3-!GiLD`}9kWm}Gp=1MbWfk}YyIn8 zVf3Ikh$pG)mLxZLG;k7q)Y`F1i!3mT<~!dPVLk>74B`|sJ(I~?!H`X#+#j zNXw|KH{!H`5sY%n6~}hzLTyzVjLVfo1kYeHh>3fOee!C_wekkiILl(mlpV(^sGN@4 zxtz=pOKUjLd$X6F1jxA08JNa-fpFGZG#$6>Fq9aUV*bs*-*JeD9Lvmx8SR1r6SMTe za%GOZ6xqep8J54xCa}zWcLZ5n41!MT?>5Nbiy3QCN^M{c^DMME%N?~!C3BAZ8WOGd zCp&@#WfMGB1Qn|&uTHnBv}~}NN!QF= z8Z{RyO&MG?U0PG0kcUxry;xxR&6Y1-lx`!F#j=yJPT8`tLp(eW%A}#0rOHze0ak&| zZ?fdfhY;uC4Rcu~+hA1JYq*DJklM==NIiM}@M-X$XBcD;WeR{j8yM+Thbe~hjK{cJx{D@B zVO_pWnr&BbnwZu&FNwX%<4(`2>M=@aUc`f20*h}3*1RRKgH>Ro6<~D|SbRfX@8;6O zwV${iV&)EPz*SepRacdcS3rgHiHhs6^xC$9uFcpU+2AT%brr^uN@;Z9XvI|*T}hcE z(p9u(3tx#1JR?4XuuTL;x~$yZd%KD)z3NGKqzdk~XH@~(% zkE!{iYAqboe4pHTx9xLMIfZdd@E-81E*)cIfL-TT**nDkJj{0KVC{9XQ@gnPaqfSD z7RPvPbz=r6Xxqb+_etD9FFxR9x`aM_g?@a)>r;01)1FLK30LtyysV^O#dW-*>UkBf z(n|LD*Yp!$lLoMi*Z8e7&NjS`H#mNi-nK*kjkmHm9YogH(?e^X>|RRn6Yb>zHqibZ zPWpS6(5b21EK$ICOux|C9@9HNMwl5}LXFf-Z(sZL&W|zeL+ILP*Zm^iw${Fu{q)ZF zepwElCLQWP93rM+ru;N#Bh+LR`!I(6RHKFS6cy>hBnx$zJf;-y9uG^E_W-r&Q@jW8 z7Dqm=A6Fdx^qIul)I#IY)QoqyqARw$5c(Bi@f$)yM18*?zz-iG8uPbFh4z9Hj>o0{ z#1bNHP5$(CpJ-|$v!7+pdMu*!4gPx2ah@!u$>4c~(mV3%t0?PnQ=#;+v!(t%g@eE1 Pe}yjOLGv!%`0(BzNgXBz literal 0 HcmV?d00001 diff --git a/bin/net/hoo2/auth/vmodem/Echo.class b/bin/net/hoo2/auth/vmodem/Echo.class new file mode 100755 index 0000000000000000000000000000000000000000..9ff02c58f71cce9889c3d8b655b0532c1c43ea85 GIT binary patch literal 2830 zcmZ`*TXR#_8C~0wI7i|@u#%7{kRaoPNJ@eLb7>@SK=yHvu`Sm!PQj(_v9yr|(mBe} z5r!mf(zI!krn!+Tx%A%BnLd#LIa4y7KINeged!7(G67WHy_dS{OCQjvSwu6%bj04I_?S_bl6+vnmbgqn(2S8(Rt^ zxlwZ=pFL@+-2jnWyP4x-W9H22K0y#}?a!F`>D*L)O=EBsXVjd?PG)D#8H!G3PfHf6W>mYrP_qE4{baIKDl zUU5pN%N0r8bqC9K*&7zv6YGtlEY4@Lx3iAVk?aUPAA%3}8;IZm0beXW7oq|Hd@@k-Pjz$BX~^1qXK>N83Q|!q}K`+ z$Cd(j#o}EI+fh#k3Afw89;HIJ7Nz2|*TB8lByh(>*_Km{>Y{XKt;Gs4!V^xxs?1q# zS*<&pes8H<7ueFrctgGrK{tJ zz@0M<+h#^YC2^z6Wp61J4Ph7~$|s}D;#k)uJISMP$G(yC?Sl|Z994SE@Bn=opHoQ3 z3`}5>VYg~EX%__^>jin6l@7_Yg2)+|#?^wpMnM)2s%M+S01h(h1CKI7z3pJoe3F1K(Bt&}vGfVr%%`t#VJfWly>x zoWh9u%qupF1_~{^(xtx{@y$6pA<9@qRW(FUTl^N4%S$M0Sn9&e=FIa2SyT06;EcL{ zs3g5fS+83q7C;^q16456{e_0>O52+)SLI~6Qc=mnq8JaM23Nz=0{8Z;0+yM9I_MA0 zl}|ThowMx!Dao#iNuOk7d*^1il&XYt29{MN=&r2S*zri)#03M-;8||+Hkk{aBwK$h zKA%x%KQQn^JWoRBRA0=U7TD39ES)0juDed;b^M4ms{Cl;#|D0am)L&ljm3Ja-O=r_ zY__M`%WTHc=nVPo^yt4sQN{aJ13$xSq+z*knN-+s$JPGp2HsHn!J@2LuGesRp<%qG z68vp}t+DajO{}J|j(3O`ov+qq;gm{`_YAzR+Lvl4b*bUQ)zG&dk(;4czL4%BMM#3F z=~umzT6{fRjy~I2W@#TwFPs|B!*D~+o@=v)W8)*-IfcdbY$gRFrt{InjV{f(;g^Y;M90lp+j^4v$e z`zf`zZ4n3XEv{%Ak5famW^DSrf!a%vwerw@q{-XQ*+Cp?v+ny75ki1CCQ{mU44()e zUP0zM%oB>_RqR^9lTC~_F_qFk!%ReP;yXMU`Vt4OGka13rw0DIcRo9OK+A@|~A_-b)PjSxPv3!C$}-USz;8 z66t-0@)r#GuNm4VgZg&{^dAiAe~9#7zOe#_#X6+LdOoQUWW+--MS^eS0qhcKK8J@f zE=(K~OZOo7!j;_MPWVuFyJXw)zdST19{d6R zDC4wv_pmc>W@q1fv)@0TUjS}!WC$s!2HmAe25r)3C@C*mNfA+P&b$>@aiR#bM+So{<*#|bP`vYnAKz1} zJLymQy)khNh@*@GY8EP}GZebLu?dETg)I~_v}eKCpr(Z~%&gb4P=d)&8~Va~O2Vn9 zMtmBOVq+*>9*nv2v-+>8#|uAVI3NDE>McY0MJCGi9{h~0G?3v{wmCYaTA*Lk>5wss z$ZX}AtmK)@QD$^1uqba6n$t}7u5EvyYG0(-u`g5X+P3+cVn4;fJ6&pMQ*073@J12= j5rwEipaqFT>UK6HIKnYiM3|KP literal 0 HcmV?d00001 diff --git a/bin/net/hoo2/auth/vmodem/VirtualModem.class b/bin/net/hoo2/auth/vmodem/VirtualModem.class new file mode 100755 index 0000000000000000000000000000000000000000..a6707952393237a59ff96cac7304b7c0a44d3013 GIT binary patch literal 4514 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 DP67Er literal 0 HcmV?d00001 diff --git a/ithakimodem/Modem.class b/ithakimodem/Modem.class new file mode 100755 index 0000000000000000000000000000000000000000..7334ce293f2beeac79805fefa3b6604048e4ccfd GIT binary patch literal 6593 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 t7^b*DAC(0XE?-zY!9pp-`;W>zV7-?*NSPEMouw literal 0 HcmV?d00001 diff --git a/libs/commons-cli-1.4/CONTRIBUTING.md b/libs/commons-cli-1.4/CONTRIBUTING.md new file mode 100755 index 0000000..9d05cf6 --- /dev/null +++ b/libs/commons-cli-1.4/CONTRIBUTING.md @@ -0,0 +1,97 @@ + + +Contributing to Apache Commons CLI +====================== + +You have found a bug or you have an idea for a cool new feature? Contributing code is a great way to give something back to +the open source community. Before you dig right into the code there are a few guidelines that we need contributors to +follow so that we can have a chance of keeping on top of things. + +Getting Started +--------------- + ++ Make sure you have a [JIRA account](https://issues.apache.org/jira/). ++ Make sure you have a [GitHub account](https://github.com/signup/free). ++ If you're planning to implement a new feature it makes sense to discuss you're changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons CLI's scope. ++ Submit a ticket for your issue, assuming one does not already exist. + + Clearly describe the issue including steps to reproduce when it is a bug. + + Make sure you fill in the earliest version that you know has the issue. ++ Fork the repository on GitHub. + +Making Changes +-------------- + ++ Create a topic branch from where you want to base your work (this is usually the master/trunk branch). ++ Make commits of logical units. ++ Respect the original code style: + + Only use spaces for indentation. + + Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change. + + Check for unnecessary whitespace with git diff --check before committing. ++ Make sure your commit messages are in the proper format. Your commit message should contain the key of the JIRA issue. ++ Make sure you have added the necessary tests for your changes. ++ Run all the tests with `mvn clean verify` to assure nothing else was accidentally broken. + +Making Trivial Changes +---------------------- + +For changes of a trivial nature to comments and documentation, it is not always necessary to create a new ticket in JIRA. +In this case, it is appropriate to start the first line of a commit with '(doc)' instead of a ticket number. + +Submitting Changes +------------------ + ++ Sign the [Contributor License Agreement][cla] if you haven't already. ++ Push your changes to a topic branch in your fork of the repository. ++ Submit a pull request to the repository in the apache organization. ++ Update your JIRA ticket and include a link to the pull request in the ticket. + +Additional Resources +-------------------- + ++ [Contributing patches](https://commons.apache.org/patches.html) ++ [Apache Commons CLI JIRA project page](https://issues.apache.org/jira/browse/CLI) ++ [Contributor License Agreement][cla] ++ [General GitHub documentation](https://help.github.com/) ++ [GitHub pull request documentation](https://help.github.com/send-pull-requests/) ++ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) ++ #apachecommons IRC channel on freenode.org + +[cla]:https://www.apache.org/licenses/#clas diff --git a/libs/commons-cli-1.4/LICENSE.txt b/libs/commons-cli-1.4/LICENSE.txt new file mode 100755 index 0000000..57bc88a --- /dev/null +++ b/libs/commons-cli-1.4/LICENSE.txt @@ -0,0 +1,202 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + diff --git a/libs/commons-cli-1.4/NOTICE.txt b/libs/commons-cli-1.4/NOTICE.txt new file mode 100755 index 0000000..02e26d0 --- /dev/null +++ b/libs/commons-cli-1.4/NOTICE.txt @@ -0,0 +1,5 @@ +Apache Commons CLI +Copyright 2001-2017 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). diff --git a/libs/commons-cli-1.4/README.md b/libs/commons-cli-1.4/README.md new file mode 100755 index 0000000..671172a --- /dev/null +++ b/libs/commons-cli-1.4/README.md @@ -0,0 +1,98 @@ + + +Apache Commons CLI +=================== + +Apache Commons CLI provides a simple API for presenting, processing and validating a command line interface. + +Documentation +------------- + +More information can be found on the [homepage](https://commons.apache.org/proper/commons-cli). +The [JavaDoc](https://commons.apache.org/proper/commons-cli/javadocs/api-release) can be browsed. +Questions related to the usage of Apache Commons CLI should be posted to the [user mailing list][ml]. + +Where can I get the latest release? +----------------------------------- +You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-cli/download_cli.cgi). + +Alternatively you can pull it from the central Maven repositories: + +```xml + + commons-cli + commons-cli + 1.3.1 + +``` + +Contributing +------------ + +We accept PRs via github. The [developer mailing list][ml] is the main channel of communication for contributors. +There are some guidelines which will make applying PRs easier for us: ++ No tabs! Please use spaces for indentation. ++ Respect the code style. ++ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change. ++ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn clean test```. + +If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas). +You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md). + +License +------- +Code is under the [Apache Licence v2](https://www.apache.org/licenses/LICENSE-2.0.txt). + +Donations +--------- +You like Apache Commons CLI? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development. + +Additional Resources +-------------------- + ++ [Apache Commons Homepage](https://commons.apache.org/) ++ [Apache Bugtracker (JIRA)](https://issues.apache.org/jira/) ++ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) ++ #apachecommons IRC channel on freenode.org + +[ml]:https://commons.apache.org/mail-lists.html diff --git a/libs/commons-cli-1.4/RELEASE-NOTES.txt b/libs/commons-cli-1.4/RELEASE-NOTES.txt new file mode 100755 index 0000000..c77e73b --- /dev/null +++ b/libs/commons-cli-1.4/RELEASE-NOTES.txt @@ -0,0 +1,251 @@ + Apache Commons CLI + Version 1.4 + Release Notes + + +INTRODUCTION: + +This document contains the release notes for this version of the Commons CLI +package. Commons CLI provides a simple API for working with the command line +arguments and options. + +Commons CLI 1.4 is a feature release and binary compatible with the +previous versions, except for the OptionValidator class that is no longer public +(change introduced in v1.2). Commons CLI 1.4 at least requires Java 5.0. + +More information can be found on the project site at +http://commons.apache.org/cli. + + +NEW FEATURES +============ + +o CLI-269: Introduce CommandLine.Builder +o CLI-267: Add an addRequiredOption method to Options. + Thanks to Ricardo Ribeiro. + + +BUG FIXES +========= + +o CLI-265: Optional argument picking up next regular option as its argument. + Thanks to Martin Sandiford. +o CLI-266: HelpFormatter.setOptionComparator(null) doesn't display the values + in inserted order. Thanks to Ravi Teja. + + + Release Notes for version 1.3.1 + +BUG FIXES +========= + +o CLI-252: LongOpt falsely detected as ambiguous. Thanks to Simon Harrer. + + + Release Notes for version 1.3 + +NOTES +===== + +A new parser is available: DefaultParser. It combines the features of the +GnuParser and the PosixParser. It also provides additional features like +partial matching for the long options, and long options without +separator (i.e like the JVM memory settings: -Xmx512m). This new parser +deprecates the previous ones. + +DEPRECATIONS +============ + +o org.apache.commons.cli.BasicParser + replaced by org.apache.commons.cli.DefaultParser + +o org.apache.commons.cli.GnuParser + replaced by org.apache.commons.cli.DefaultParser + +o org.apache.commons.cli.OptionBuilder + replaced by org.apache.commons.cli.Option.builder() + org.apache.commons.cli.Option.builder(String) + org.apache.commons.cli.Option.Builder + +o org.apache.commons.cli.Parser + replaced by org.apache.commons.cli.DefaultParser + +o org.apache.commons.cli.PosixParser + replaced by org.apache.commons.cli.DefaultParser + + +NEW FEATURES +============ + +o CLI-161: PosixParser doesn't stop the parsing on "--" tokens following an + option with an argument +o CLI-167: Support options like Java memory settings (-Xmx512M) +o CLI-181: Unified Parser +o CLI-224: Added new fluent API to create Option instances via builder class + Option.Builder. This replaces the now deprecated OptionBuilder. + Thanks to Duncan Jones, Brian Blount. +o CLI-160: PosixParser now supports partial long options (--ver instead of + --version). +o CLI-169: HelpFormatter now supports setting the displayed separator of long + options. Thanks to J. Lewis Muir. +o CLI-214: Added new method Options.addOption(String, String). Thanks to + Alexandru Mocanu. + + +BUG FIXES +========= + +o CLI-248: Dead links on doc page. +o CLI-234: Fixed code example in javadoc of + "Option#Builder#valueSeparator(char)". Thanks to Greg Thomas. +o CLI-241: Clarified behavior of "OptionValidator#validateOption(String)" + in case of null input. Thanks to Beluga Behr. +o CLI-202: Default options will now work correctly with required options that + are missing. +o CLI-203: Default options will now work correctly together with option groups. +o CLI-205: HelpFormatter.setArgName(String) now correctly sets the argument + name. +o CLI-204: Passing default values for not defined options to a parser will now + trigger a ParseException instead of a NullPointerException. +o CLI-201: Default properties provided as input to the Parser.parse() methods + are now correctly processed. +o CLI-215: CommandLine.getParsedOptionValue() now returns a String object if no + option type has been explicitly set. Thanks to Manuel Müller. +o CLI-212: HelpFormatter now prints command-line options in the same order as + they have been added. Thanks to Per Cederberg. +o CLI-186: Standard help text now shows mandatory arguments also for the first + option. Thanks to Kristoff Kiefer. +o CLI-207: HelpFormatter does not strip anymore leading whitespace in the + footer text. Thanks to Uri Moszkowicz. +o CLI-185: Strip quotes contained in argument values only if there is exactly + one at the beginning and one at the end. Thanks to + Einar M. R. Rosenvinge. +o CLI-184: Negative numerical arguments take precedence over numerical options. +o CLI-193: Fix possible StringIndexOutOfBoundsException in HelpFormatter. + Thanks to Travis McLeskey. +o CLI-183: OptionGroups no longer throw an AlreadySelectedException when reused + for several parsings. +o CLI-182: OptionGroup now selects properly an option with no short name. + + +CHANGES +======= + +o CLI-240: Small cleanup of Option class. Thanks to Beluga Behr. +o CLI-230: Options.getRequiredOptions() now returns an unmodifiable list. +o CLI-218: Clarify javadoc for CommandLine.getOptionValue() that the first + specified argument will be returned. Thanks to Sven. +o CLI-227: Changed unit tests to junit 4 annotation style. Thanks to + Duncan Jones. +o CLI-209: The javadoc of OptionBuilder now states that the class is not + thread-safe. Thanks to Thomas Herre. +o CLI-200: Fixed typo in javadoc of class CommandLine. Thanks to + Gerard Weatherby. +o CLI-223: Source code now uses generic types instead of raw types where + possible. Thanks to Gerard Weatherby. +o CLI-220 Corrected javadoc for return type of + MissingOptionException.getMissingOptions(). Thanks to Joe Casadonte. +o CLI-197: Improve description of parameter "stopAtNonOption" in method + CommandLine.parse(Options, String[], boolean). Thanks to + Anders Larsson. +o CLI-231: Removed DoubleCheckedLocking test from checkstyle configuration. + Thanks to Duncan Jones. + + + Release Notes for version 1.2 + +NEW FEATURES +============ + +o -- : The method getOptionProperties() in the CommandLine class was added + to retrieve easily the key/value pairs specified with options like + -Dkey1=value1 -Dkey2=value2. +o CLI-157: GnuParser now supports long options with an '=' sign + (ie. --foo=bar and -foo=bar) +o CLI-155: The ordering of options can be defined in help messages. + + +BUG FIXES +========= + +o CLI-137: The number of arguments defined for an option specifies the + arguments per occurence of the option and not for all occurences. +o CLI-164: PosixParser no longer ignores unrecognized short options. +o CLI-163: PosixParser no longer stops the bursting process of a token if + stopAtNonOption is enabled and a non option character is + encountered. +o CLI-165: PosixParser no longer keeps processing the tokens after an + unrecognized long option when stopAtNonOption is enabled. +o CLI-156: Required options are properly checked if an Options instance is used + twice to parse a command line. +o CLI-151: The line wrapping in HelpFormatter now works properly. + + +CHANGES +======= + +o CLI-149: The message of MissingOptionException has been improved. +o CLI-86: The exceptions have been enhanced with methods to retrieve easily + the related options. +o CLI-141: Option.toString() now reports arguments properly. +o CLI-142: The Parser class has been changed to be more easily extendable. +o CLI-140: The following classes are now serializable: Option, OptionGroup, + CommandLine and Options. +o -- : OptionValidator is no longer public, its methods were all private. + + + Release Notes for version 1.1 + +NEW FEATURES +============ + +o CLI-78: Setting description of a Option. + +CHANGES +======= + +o CLI-2: Wrong usage summary. +o CLI-5: Dependecy on commons-lang-2.0 but commons-lang-1.0 is obtained. +o CLI-8: Line separator as first char for helpformatter (footer) throws + exception. +o CLI-13: CommandLine.getOptionValue() behaves contrary to docs. +o CLI-21: clone method in Option should use super.clone(). +o CLI-23: Passing properties in Parser does not work for options with a single + argument. +o CLI-26: Only long options without short option seems to be noticed. +o CLI-28: Infinite Loop in Command-Line processing. +o CLI-29: Options should not be able to be added more than once. +o CLI-35: HelpFormatter doesn't sort options properly. +o CLI-38: HelpFormatter doesn't function correctly for options with only + LongOpt. +o CLI-44: Document enhancement. +o CLI-45: Documentation errors. +o CLI-51: Parameter value "-something" misinterpreted as a parameter. +o CLI-56: clone() method doesn't fully clone contents. +o CLI-59: No Javadoc for HelpFormatter!. +o CLI-65: Parser breaks up command line parms into single characters. +o CLI-67: Missing arguments in HelpFormatter.renderOptions(..). +o CLI-69: Error parsing option arguments. +o CLI-71: A weakness of parser. +o CLI-129: CLI_1_BRANCH build.xml doesn't work. +o CLI-130: Remove the Commons Lang dependency. +o CLI-131: Options class returns options in random order. +o CLI-132: MissingOptionException should contain a useful error message. +o CLI-133: NullPointerException in Util.stripLeadingHyphens when passed a null + argument. +o CLI-134: 1.1 is not backwards compatible because it adds methods to the + CommandLineParser interface. +o CLI-135: Backwards compatibility between 1.1 and 1.0 broken due to + Option.addValue removal. + + +Historical list of changes: http://commons.apache.org/cli/changes-report.html + +For complete information on Commons CLI, including instructions on how to +submit bug reports, patches, or suggestions for improvement, see the +Apache Commons CLI website: + +http://commons.apache.org/cli/ + +Have fun! +-Apache Commons CLI team diff --git a/libs/commons-cli-1.4/apidocs/allclasses-frame.html b/libs/commons-cli-1.4/apidocs/allclasses-frame.html new file mode 100755 index 0000000..0fafb9c --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/allclasses-frame.html @@ -0,0 +1,40 @@ + + + + + + +All Classes (Apache Commons CLI 1.4 API) + + + + +

All Classes

+ + + diff --git a/libs/commons-cli-1.4/apidocs/allclasses-noframe.html b/libs/commons-cli-1.4/apidocs/allclasses-noframe.html new file mode 100755 index 0000000..1809f47 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/allclasses-noframe.html @@ -0,0 +1,40 @@ + + + + + + +All Classes (Apache Commons CLI 1.4 API) + + + + +

All Classes

+ + + diff --git a/libs/commons-cli-1.4/apidocs/constant-values.html b/libs/commons-cli-1.4/apidocs/constant-values.html new file mode 100755 index 0000000..5b0543f --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/constant-values.html @@ -0,0 +1,227 @@ + + + + + + +Constant Field Values (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

org.apache.*

+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/deprecated-list.html b/libs/commons-cli-1.4/apidocs/deprecated-list.html new file mode 100755 index 0000000..c0d05b1 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/deprecated-list.html @@ -0,0 +1,265 @@ + + + + + + +Deprecated List (Apache Commons CLI 1.4 API) + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+ +
+
+ + + + + + + + + + + +
+ +
+ + + + + + + +
+ + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/help-doc.html b/libs/commons-cli-1.4/apidocs/help-doc.html new file mode 100755 index 0000000..c6a073c --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/help-doc.html @@ -0,0 +1,224 @@ + + + + + + +API Help (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+
    +
  • +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    +
      +
    • Interfaces (italic)
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
  • +
  • +

    Class/Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
      +
    • Class inheritance diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class/interface declaration
    • +
    • Class/interface description
    • +
    +
      +
    • Nested Class Summary
    • +
    • Field Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    +
      +
    • Field Detail
    • +
    • Constructor Detail
    • +
    • Method Detail
    • +
    +

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
  • +
  • +

    Annotation Type

    +

    Each annotation type has its own separate page with the following sections:

    +
      +
    • Annotation Type declaration
    • +
    • Annotation Type description
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    • Element Detail
    • +
    +
  • +
  • +

    Enum

    +

    Each enum has its own separate page with the following sections:

    +
      +
    • Enum declaration
    • +
    • Enum description
    • +
    • Enum Constant Summary
    • +
    • Enum Constant Detail
    • +
    +
  • +
  • +

    Use

    +

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    +
  • +
  • +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • +
    +
  • +
  • +

    Deprecated API

    +

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    +
  • +
  • +

    Index

    +

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    +
  • +
  • +

    Prev/Next

    +

    These links take you to the next or previous class, interface, package, or related page.

    +
  • +
  • +

    Frames/No Frames

    +

    These links show and hide the HTML frames. All pages are available with or without frames.

    +
  • +
  • +

    All Classes

    +

    The All Classes link shows all classes and interfaces except non-static nested types.

    +
  • +
  • +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    +
  • +
  • +

    Constant Field Values

    +

    The Constant Field Values page lists the static final fields and their values.

    +
  • +
+This help file applies to API documentation generated using the standard doclet.
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/index-all.html b/libs/commons-cli-1.4/apidocs/index-all.html new file mode 100755 index 0000000..1ace2d2 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/index-all.html @@ -0,0 +1,1448 @@ + + + + + + +Index (Apache Commons CLI 1.4 API) + + + + + + + +
+ + + + + + + +
+ + +
A B C D E F G H I L M N O P R S T U V W  + + +

A

+
+
addArg(String) - Method in class org.apache.commons.cli.CommandLine
+
+
Add left-over unrecognized option/argument.
+
+
addArg(String) - Method in class org.apache.commons.cli.CommandLine.Builder
+
+
Add left-over unrecognized option/argument.
+
+
addOption(Option) - Method in class org.apache.commons.cli.CommandLine
+
+
Add an option to the command line.
+
+
addOption(Option) - Method in class org.apache.commons.cli.CommandLine.Builder
+
+
Add an option to the command line.
+
+
addOption(Option) - Method in class org.apache.commons.cli.OptionGroup
+
+
Add the specified Option to this group.
+
+
addOption(String, String) - Method in class org.apache.commons.cli.Options
+
+
Add an option that only contains a short name.
+
+
addOption(String, boolean, String) - Method in class org.apache.commons.cli.Options
+
+
Add an option that only contains a short-name.
+
+
addOption(String, String, boolean, String) - Method in class org.apache.commons.cli.Options
+
+
Add an option that contains a short-name and a long-name.
+
+
addOption(Option) - Method in class org.apache.commons.cli.Options
+
+
Adds an option instance
+
+
addOptionGroup(OptionGroup) - Method in class org.apache.commons.cli.Options
+
+
Add the specified option group.
+
+
addRequiredOption(String, String, boolean, String) - Method in class org.apache.commons.cli.Options
+
+
Add an option that contains a short-name and a long-name.
+
+
addValue(String) - Method in class org.apache.commons.cli.Option
+
+
Deprecated. 
+
+
AlreadySelectedException - Exception in org.apache.commons.cli
+
+
Thrown when more than one option in an option group + has been provided.
+
+
AlreadySelectedException(String) - Constructor for exception org.apache.commons.cli.AlreadySelectedException
+
+
Construct a new AlreadySelectedException + with the specified detail message.
+
+
AlreadySelectedException(OptionGroup, Option) - Constructor for exception org.apache.commons.cli.AlreadySelectedException
+
+
Construct a new AlreadySelectedException + for the specified option group.
+
+
AmbiguousOptionException - Exception in org.apache.commons.cli
+
+
Exception thrown when an option can't be identified from a partial name.
+
+
AmbiguousOptionException(String, Collection<String>) - Constructor for exception org.apache.commons.cli.AmbiguousOptionException
+
+
Constructs a new AmbiguousOptionException.
+
+
argName(String) - Method in class org.apache.commons.cli.Option.Builder
+
+
Sets the display name for the argument value.
+
+
+ + + +

B

+
+
BasicParser - Class in org.apache.commons.cli
+
+
Deprecated. +
since 1.3, use the DefaultParser instead
+
+
+
BasicParser() - Constructor for class org.apache.commons.cli.BasicParser
+
+
Deprecated.
+
build() - Method in class org.apache.commons.cli.CommandLine.Builder
+
 
+
build() - Method in class org.apache.commons.cli.Option.Builder
+
+
Constructs an Option with the values declared by this Option.Builder.
+
+
Builder() - Constructor for class org.apache.commons.cli.CommandLine.Builder
+
 
+
builder() - Static method in class org.apache.commons.cli.Option
+
+
Returns a Option.Builder to create an Option using descriptive + methods.
+
+
builder(String) - Static method in class org.apache.commons.cli.Option
+
+
Returns a Option.Builder to create an Option using descriptive + methods.
+
+
burstToken(String, boolean) - Method in class org.apache.commons.cli.PosixParser
+
+
Deprecated.
+
Breaks token into its constituent parts + using the following algorithm.
+
+
+ + + +

C

+
+
checkRequiredOptions() - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
Throws a MissingOptionException if all of the required options + are not present.
+
+
CLASS_VALUE - Static variable in class org.apache.commons.cli.PatternOptionBuilder
+
+
Class class
+
+
clone() - Method in class org.apache.commons.cli.Option
+
+
A rather odd clone method - due to incorrect code in 1.0 it is public + and in 1.1 rather than throwing a CloneNotSupportedException it throws + a RuntimeException so as to maintain backwards compat at the API level.
+
+
cmd - Variable in class org.apache.commons.cli.DefaultParser
+
+
The command-line instance.
+
+
cmd - Variable in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
commandline instance
+
+
CommandLine - Class in org.apache.commons.cli
+
+
Represents list of arguments parsed against a Options descriptor.
+
+
CommandLine() - Constructor for class org.apache.commons.cli.CommandLine
+
+
Creates a command line.
+
+
CommandLine.Builder - Class in org.apache.commons.cli
+
+
A nested builder class to create CommandLine instance + using descriptive methods.
+
+
CommandLineParser - Interface in org.apache.commons.cli
+
+
A class that implements the CommandLineParser interface + can parse a String array according to the Options specified + and return a CommandLine.
+
+
create(char) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
Create an Option using the current settings and with + the specified Option char.
+
+
create() - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
Create an Option using the current settings
+
+
create(String) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
Create an Option using the current settings and with + the specified Option char.
+
+
createClass(String) - Static method in class org.apache.commons.cli.TypeHandler
+
+
Returns the class whose name is classname.
+
+
createDate(String) - Static method in class org.apache.commons.cli.TypeHandler
+
+
Returns the date represented by str.
+
+
createFile(String) - Static method in class org.apache.commons.cli.TypeHandler
+
+
Returns the File represented by str.
+
+
createFiles(String) - Static method in class org.apache.commons.cli.TypeHandler
+
+
Returns the File[] represented by str.
+
+
createNumber(String) - Static method in class org.apache.commons.cli.TypeHandler
+
+
Create a number from a String.
+
+
createObject(String) - Static method in class org.apache.commons.cli.TypeHandler
+
+
Create an Object from the classname and empty constructor.
+
+
createPadding(int) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Return a String of padding of length len.
+
+
createURL(String) - Static method in class org.apache.commons.cli.TypeHandler
+
+
Returns the URL represented by str.
+
+
createValue(String, Object) - Static method in class org.apache.commons.cli.TypeHandler
+
+
Returns the Object of type obj + with the value of str.
+
+
createValue(String, Class<?>) - Static method in class org.apache.commons.cli.TypeHandler
+
+
Returns the Object of type clazz + with the value of str.
+
+
currentOption - Variable in class org.apache.commons.cli.DefaultParser
+
+
The last option parsed.
+
+
currentToken - Variable in class org.apache.commons.cli.DefaultParser
+
+
The token currently processed.
+
+
+ + + +

D

+
+
DATE_VALUE - Static variable in class org.apache.commons.cli.PatternOptionBuilder
+
+
Date class
+
+
DEFAULT_ARG_NAME - Static variable in class org.apache.commons.cli.HelpFormatter
+
+
default name for an argument
+
+
DEFAULT_DESC_PAD - Static variable in class org.apache.commons.cli.HelpFormatter
+
+
number of space characters to be prefixed to each description line
+
+
DEFAULT_LEFT_PAD - Static variable in class org.apache.commons.cli.HelpFormatter
+
+
default padding to the left of each line
+
+
DEFAULT_LONG_OPT_PREFIX - Static variable in class org.apache.commons.cli.HelpFormatter
+
+
default prefix for long Option
+
+
DEFAULT_LONG_OPT_SEPARATOR - Static variable in class org.apache.commons.cli.HelpFormatter
+
+
default separator displayed between a long Option and its value
+
+
DEFAULT_OPT_PREFIX - Static variable in class org.apache.commons.cli.HelpFormatter
+
+
default prefix for shortOpts
+
+
DEFAULT_SYNTAX_PREFIX - Static variable in class org.apache.commons.cli.HelpFormatter
+
+
the string to display at the beginning of the usage statement
+
+
DEFAULT_WIDTH - Static variable in class org.apache.commons.cli.HelpFormatter
+
+
default number of characters per line
+
+
defaultArgName - Variable in class org.apache.commons.cli.HelpFormatter
+
+
Deprecated. +
Scope will be made private for next major version + - use get/setArgName methods instead.
+
+
+
defaultDescPad - Variable in class org.apache.commons.cli.HelpFormatter
+
+
Deprecated. +
Scope will be made private for next major version + - use get/setDescPadding methods instead.
+
+
+
defaultLeftPad - Variable in class org.apache.commons.cli.HelpFormatter
+
+
Deprecated. +
Scope will be made private for next major version + - use get/setLeftPadding methods instead.
+
+
+
defaultLongOptPrefix - Variable in class org.apache.commons.cli.HelpFormatter
+
+
Deprecated. +
Scope will be made private for next major version + - use get/setLongOptPrefix methods instead.
+
+
+
defaultNewLine - Variable in class org.apache.commons.cli.HelpFormatter
+
+
Deprecated. +
Scope will be made private for next major version + - use get/setNewLine methods instead.
+
+
+
defaultOptPrefix - Variable in class org.apache.commons.cli.HelpFormatter
+
+
Deprecated. +
Scope will be made private for next major version + - use get/setOptPrefix methods instead.
+
+
+
DefaultParser - Class in org.apache.commons.cli
+
+
Default parser.
+
+
DefaultParser() - Constructor for class org.apache.commons.cli.DefaultParser
+
 
+
defaultSyntaxPrefix - Variable in class org.apache.commons.cli.HelpFormatter
+
+
Deprecated. +
Scope will be made private for next major version + - use get/setSyntaxPrefix methods instead.
+
+
+
defaultWidth - Variable in class org.apache.commons.cli.HelpFormatter
+
+
Deprecated. +
Scope will be made private for next major version + - use get/setWidth methods instead.
+
+
+
desc(String) - Method in class org.apache.commons.cli.Option.Builder
+
+
Sets the description for this option.
+
+
+ + + +

E

+
+
equals(Object) - Method in class org.apache.commons.cli.Option
+
 
+
EXISTING_FILE_VALUE - Static variable in class org.apache.commons.cli.PatternOptionBuilder
+
+
FileInputStream class
+
+
expectedOpts - Variable in class org.apache.commons.cli.DefaultParser
+
+
The required options and groups expected to be found when parsing the command line.
+
+
+ + + +

F

+
+
FILE_VALUE - Static variable in class org.apache.commons.cli.PatternOptionBuilder
+
+
File class
+
+
FILES_VALUE - Static variable in class org.apache.commons.cli.PatternOptionBuilder
+
+
File array class
+
+
findWrapPos(String, int, int) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Finds the next text wrap position after startPos for the + text in text with the column width width.
+
+
flatten(Options, String[], boolean) - Method in class org.apache.commons.cli.BasicParser
+
+
Deprecated.
+
A simple implementation of Parser's abstract + flatten method.
+
+
flatten(Options, String[], boolean) - Method in class org.apache.commons.cli.GnuParser
+
+
Deprecated.
+
This flatten method does so using the following rules: + + If an Option exists for the first character of + the arguments entry AND an Option + does not exist for the whole argument then + add the first character as an option to the processed tokens + list e.g.
+
+
flatten(Options, String[], boolean) - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
Subclasses must implement this method to reduce + the arguments that have been passed to the parse method.
+
+
flatten(Options, String[], boolean) - Method in class org.apache.commons.cli.PosixParser
+
+
Deprecated.
+
An implementation of Parser's abstract + flatten method.
+
+
+ + + +

G

+
+
getArgList() - Method in class org.apache.commons.cli.CommandLine
+
+
Retrieve any left-over non-recognized options and arguments
+
+
getArgName() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Returns the 'argName'.
+
+
getArgName() - Method in class org.apache.commons.cli.Option
+
+
Gets the display name for the argument value.
+
+
getArgs() - Method in class org.apache.commons.cli.CommandLine
+
+
Retrieve any left-over non-recognized options and arguments
+
+
getArgs() - Method in class org.apache.commons.cli.Option
+
+
Returns the number of argument values this Option can take.
+
+
getDescPadding() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Returns the 'descPadding'.
+
+
getDescription() - Method in class org.apache.commons.cli.Option
+
+
Retrieve the self-documenting description of this Option
+
+
getId() - Method in class org.apache.commons.cli.Option
+
+
Returns the id of this Option.
+
+
getLeftPadding() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Returns the 'leftPadding'.
+
+
getLongOpt() - Method in class org.apache.commons.cli.Option
+
+
Retrieve the long name of this Option.
+
+
getLongOptPrefix() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Returns the 'longOptPrefix'.
+
+
getLongOptSeparator() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Returns the separator displayed between a long option and its value.
+
+
getMatchingOptions() - Method in exception org.apache.commons.cli.AmbiguousOptionException
+
+
Returns the options matching the partial name.
+
+
getMatchingOptions(String) - Method in class org.apache.commons.cli.Options
+
+
Returns the options with a long name starting with the name specified.
+
+
getMissingOptions() - Method in exception org.apache.commons.cli.MissingOptionException
+
+
Returns the list of options or option groups missing in the command line parsed.
+
+
getNames() - Method in class org.apache.commons.cli.OptionGroup
+
 
+
getNewLine() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Returns the 'newLine'.
+
+
getOpt() - Method in class org.apache.commons.cli.Option
+
+
Retrieve the name of this Option.
+
+
getOption() - Method in exception org.apache.commons.cli.AlreadySelectedException
+
+
Returns the option that was added to the group and triggered the exception.
+
+
getOption() - Method in exception org.apache.commons.cli.MissingArgumentException
+
+
Return the option requiring an argument that wasn't provided + on the command line.
+
+
getOption(String) - Method in class org.apache.commons.cli.Options
+
+
Retrieve the Option matching the long or short name specified.
+
+
getOption() - Method in exception org.apache.commons.cli.UnrecognizedOptionException
+
+
Returns the unrecognized option.
+
+
getOptionComparator() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Comparator used to sort the options when they output in help text.
+
+
getOptionGroup() - Method in exception org.apache.commons.cli.AlreadySelectedException
+
+
Returns the option group where another option has been selected.
+
+
getOptionGroup(Option) - Method in class org.apache.commons.cli.Options
+
+
Returns the OptionGroup the opt belongs to.
+
+
getOptionObject(String) - Method in class org.apache.commons.cli.CommandLine
+
+
Deprecated. +
due to System.err message. Instead use getParsedOptionValue(String)
+
+
+
getOptionObject(char) - Method in class org.apache.commons.cli.CommandLine
+
+
Return the Object type of this Option.
+
+
getOptionProperties(String) - Method in class org.apache.commons.cli.CommandLine
+
+
Retrieve the map of values associated to the option.
+
+
getOptions() - Method in class org.apache.commons.cli.CommandLine
+
+
Returns an array of the processed Options.
+
+
getOptions() - Method in class org.apache.commons.cli.OptionGroup
+
 
+
getOptions() - Method in class org.apache.commons.cli.Options
+
+
Retrieve a read-only list of options in this set
+
+
getOptions() - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
getOptionValue(String) - Method in class org.apache.commons.cli.CommandLine
+
+
Retrieve the first argument, if any, of this option.
+
+
getOptionValue(char) - Method in class org.apache.commons.cli.CommandLine
+
+
Retrieve the first argument, if any, of this option.
+
+
getOptionValue(String, String) - Method in class org.apache.commons.cli.CommandLine
+
+
Retrieve the first argument, if any, of an option.
+
+
getOptionValue(char, String) - Method in class org.apache.commons.cli.CommandLine
+
+
Retrieve the argument, if any, of an option.
+
+
getOptionValues(String) - Method in class org.apache.commons.cli.CommandLine
+
+
Retrieves the array of values, if any, of an option.
+
+
getOptionValues(char) - Method in class org.apache.commons.cli.CommandLine
+
+
Retrieves the array of values, if any, of an option.
+
+
getOptPrefix() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Returns the 'optPrefix'.
+
+
getParsedOptionValue(String) - Method in class org.apache.commons.cli.CommandLine
+
+
Return a version of this Option converted to a particular type.
+
+
getRequiredOptions() - Method in class org.apache.commons.cli.Options
+
+
Returns the required options.
+
+
getRequiredOptions() - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
getSelected() - Method in class org.apache.commons.cli.OptionGroup
+
 
+
getSyntaxPrefix() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Returns the 'syntaxPrefix'.
+
+
getType() - Method in class org.apache.commons.cli.Option
+
+
Retrieve the type of this Option.
+
+
getValue() - Method in class org.apache.commons.cli.Option
+
+
Returns the specified value of this Option or + null if there is no value.
+
+
getValue(int) - Method in class org.apache.commons.cli.Option
+
+
Returns the specified value of this Option or + null if there is no value.
+
+
getValue(String) - Method in class org.apache.commons.cli.Option
+
+
Returns the value/first value of this Option or the + defaultValue if there is no value.
+
+
getValueClass(char) - Static method in class org.apache.commons.cli.PatternOptionBuilder
+
+
Retrieve the class that ch represents.
+
+
getValues() - Method in class org.apache.commons.cli.Option
+
+
Return the values of this Option as a String array + or null if there are no values
+
+
getValueSeparator() - Method in class org.apache.commons.cli.Option
+
+
Returns the value separator character.
+
+
getValuesList() - Method in class org.apache.commons.cli.Option
+
 
+
getWidth() - Method in class org.apache.commons.cli.HelpFormatter
+
+
Returns the 'width'.
+
+
GnuParser - Class in org.apache.commons.cli
+
+
Deprecated. +
since 1.3, use the DefaultParser instead
+
+
+
GnuParser() - Constructor for class org.apache.commons.cli.GnuParser
+
+
Deprecated.
+
+ + + +

H

+
+
handleConcatenatedOptions(String) - Method in class org.apache.commons.cli.DefaultParser
+
+
Breaks token into its constituent parts + using the following algorithm.
+
+
hasArg() - Method in class org.apache.commons.cli.Option.Builder
+
+
Indicates that the Option will require an argument.
+
+
hasArg(boolean) - Method in class org.apache.commons.cli.Option.Builder
+
+
Indicates if the Option has an argument or not.
+
+
hasArg() - Method in class org.apache.commons.cli.Option
+
+
Query to see if this Option requires an argument
+
+
hasArg() - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created will require an argument value.
+
+
hasArg(boolean) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created will require an argument value if + hasArg is true.
+
+
hasArgName() - Method in class org.apache.commons.cli.Option
+
+
Returns whether the display name for the argument value has been set.
+
+
hasArgs() - Method in class org.apache.commons.cli.Option.Builder
+
+
Indicates that the Option can have unlimited argument values.
+
+
hasArgs() - Method in class org.apache.commons.cli.Option
+
+
Query to see if this Option can take many values.
+
+
hasArgs() - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created can have unlimited argument values.
+
+
hasArgs(int) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created can have num argument values.
+
+
hashCode() - Method in class org.apache.commons.cli.Option
+
 
+
hasLongOpt() - Method in class org.apache.commons.cli.Option
+
+
Query to see if this Option has a long name
+
+
hasLongOption(String) - Method in class org.apache.commons.cli.Options
+
+
Returns whether the named Option is a member of this Options.
+
+
hasOption(String) - Method in class org.apache.commons.cli.CommandLine
+
+
Query to see if an option has been set.
+
+
hasOption(char) - Method in class org.apache.commons.cli.CommandLine
+
+
Query to see if an option has been set.
+
+
hasOption(String) - Method in class org.apache.commons.cli.Options
+
+
Returns whether the named Option is a member of this Options.
+
+
hasOptionalArg() - Method in class org.apache.commons.cli.Option
+
 
+
hasOptionalArg() - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option can have an optional argument.
+
+
hasOptionalArgs() - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option can have an unlimited number of optional arguments.
+
+
hasOptionalArgs(int) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option can have the specified number of optional arguments.
+
+
hasShortOption(String) - Method in class org.apache.commons.cli.Options
+
+
Returns whether the named Option is a member of this Options.
+
+
hasValueSeparator() - Method in class org.apache.commons.cli.Option
+
+
Return whether this Option has specified a value separator.
+
+
HelpFormatter - Class in org.apache.commons.cli
+
+
A formatter of help messages for command line options.
+
+
HelpFormatter() - Constructor for class org.apache.commons.cli.HelpFormatter
+
 
+
+ + + +

I

+
+
isRequired() - Method in class org.apache.commons.cli.Option
+
+
Query to see if this Option is mandatory
+
+
isRequired() - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created will be required.
+
+
isRequired(boolean) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created will be required if required + is true.
+
+
isRequired() - Method in class org.apache.commons.cli.OptionGroup
+
+
Returns whether this option group is required.
+
+
isValueCode(char) - Static method in class org.apache.commons.cli.PatternOptionBuilder
+
+
Returns whether ch is a value code, i.e.
+
+
iterator() - Method in class org.apache.commons.cli.CommandLine
+
+
Returns an iterator over the Option members of CommandLine.
+
+
+ + + +

L

+
+
longOpt(String) - Method in class org.apache.commons.cli.Option.Builder
+
+
Sets the long name of the Option.
+
+
+ + + +

M

+
+
MissingArgumentException - Exception in org.apache.commons.cli
+
+
Thrown when an option requiring an argument + is not provided with an argument.
+
+
MissingArgumentException(String) - Constructor for exception org.apache.commons.cli.MissingArgumentException
+
+
Construct a new MissingArgumentException + with the specified detail message.
+
+
MissingArgumentException(Option) - Constructor for exception org.apache.commons.cli.MissingArgumentException
+
+
Construct a new MissingArgumentException + with the specified detail message.
+
+
MissingOptionException - Exception in org.apache.commons.cli
+
+
Thrown when a required option has not been provided.
+
+
MissingOptionException(String) - Constructor for exception org.apache.commons.cli.MissingOptionException
+
+
Construct a new MissingSelectedException + with the specified detail message.
+
+
MissingOptionException(List) - Constructor for exception org.apache.commons.cli.MissingOptionException
+
+
Constructs a new MissingSelectedException with the + specified list of missing options.
+
+
+ + + +

N

+
+
NUMBER_VALUE - Static variable in class org.apache.commons.cli.PatternOptionBuilder
+
+
Number class
+
+
numberOfArgs(int) - Method in class org.apache.commons.cli.Option.Builder
+
+
Sets the number of argument values the Option can take.
+
+
+ + + +

O

+
+
OBJECT_VALUE - Static variable in class org.apache.commons.cli.PatternOptionBuilder
+
+
Object class
+
+
Option - Class in org.apache.commons.cli
+
+
Describes a single command-line option.
+
+
Option(String, String) - Constructor for class org.apache.commons.cli.Option
+
+
Creates an Option using the specified parameters.
+
+
Option(String, boolean, String) - Constructor for class org.apache.commons.cli.Option
+
+
Creates an Option using the specified parameters.
+
+
Option(String, String, boolean, String) - Constructor for class org.apache.commons.cli.Option
+
+
Creates an Option using the specified parameters.
+
+
Option.Builder - Class in org.apache.commons.cli
+
+
A nested builder class to create Option instances + using descriptive methods.
+
+
optionalArg(boolean) - Method in class org.apache.commons.cli.Option.Builder
+
+
Sets whether the Option can have an optional argument.
+
+
OptionBuilder - Class in org.apache.commons.cli
+
+
Deprecated. +
since 1.3, use Option.builder(String) instead
+
+
+
optionComparator - Variable in class org.apache.commons.cli.HelpFormatter
+
+
Comparator used to sort the options when they output in help text + + Defaults to case-insensitive alphabetical sorting by option key
+
+
OptionGroup - Class in org.apache.commons.cli
+
+
A group of mutually exclusive options.
+
+
OptionGroup() - Constructor for class org.apache.commons.cli.OptionGroup
+
 
+
options - Variable in class org.apache.commons.cli.DefaultParser
+
+
The current options.
+
+
Options - Class in org.apache.commons.cli
+
+
Main entry-point into the library.
+
+
Options() - Constructor for class org.apache.commons.cli.Options
+
 
+
org.apache.commons.cli - package org.apache.commons.cli
+
+
Commons CLI 1.3
+
+
+ + + +

P

+
+
parse(Options, String[]) - Method in interface org.apache.commons.cli.CommandLineParser
+
+
Parse the arguments according to the specified options.
+
+
parse(Options, String[], boolean) - Method in interface org.apache.commons.cli.CommandLineParser
+
+
Parse the arguments according to the specified options.
+
+
parse(Options, String[]) - Method in class org.apache.commons.cli.DefaultParser
+
 
+
parse(Options, String[], Properties) - Method in class org.apache.commons.cli.DefaultParser
+
+
Parse the arguments according to the specified options and properties.
+
+
parse(Options, String[], boolean) - Method in class org.apache.commons.cli.DefaultParser
+
 
+
parse(Options, String[], Properties, boolean) - Method in class org.apache.commons.cli.DefaultParser
+
+
Parse the arguments according to the specified options and properties.
+
+
parse(Options, String[]) - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
Parses the specified arguments based + on the specified Options.
+
+
parse(Options, String[], Properties) - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
Parse the arguments according to the specified options and properties.
+
+
parse(Options, String[], boolean) - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
Parses the specified arguments + based on the specified Options.
+
+
parse(Options, String[], Properties, boolean) - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
Parse the arguments according to the specified options and + properties.
+
+
ParseException - Exception in org.apache.commons.cli
+
+
Base for Exceptions thrown during parsing of a command-line.
+
+
ParseException(String) - Constructor for exception org.apache.commons.cli.ParseException
+
+
Construct a new ParseException + with the specified detail message.
+
+
parsePattern(String) - Static method in class org.apache.commons.cli.PatternOptionBuilder
+
+
Returns the Options instance represented by pattern.
+
+
Parser - Class in org.apache.commons.cli
+
+
Deprecated. +
since 1.3, the two-pass parsing with the flatten method is not enough flexible to handle complex cases
+
+
+
Parser() - Constructor for class org.apache.commons.cli.Parser
+
+
Deprecated.
+
PatternOptionBuilder - Class in org.apache.commons.cli
+
+
Allows Options to be created from a single String.
+
+
PatternOptionBuilder() - Constructor for class org.apache.commons.cli.PatternOptionBuilder
+
 
+
PosixParser - Class in org.apache.commons.cli
+
+
Deprecated. +
since 1.3, use the DefaultParser instead
+
+
+
PosixParser() - Constructor for class org.apache.commons.cli.PosixParser
+
+
Deprecated.
+
printHelp(String, Options) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the help for options with the specified + command line syntax.
+
+
printHelp(String, Options, boolean) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the help for options with the specified + command line syntax.
+
+
printHelp(String, String, Options, String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the help for options with the specified + command line syntax.
+
+
printHelp(String, String, Options, String, boolean) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the help for options with the specified + command line syntax.
+
+
printHelp(int, String, String, Options, String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the help for options with the specified + command line syntax.
+
+
printHelp(int, String, String, Options, String, boolean) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the help for options with the specified + command line syntax.
+
+
printHelp(PrintWriter, int, String, String, Options, int, int, String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the help for options with the specified + command line syntax.
+
+
printHelp(PrintWriter, int, String, String, Options, int, int, String, boolean) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the help for options with the specified + command line syntax.
+
+
printOptions(PrintWriter, int, Options, int, int) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the help for the specified Options to the specified writer, + using the specified width, left padding and description padding.
+
+
printUsage(PrintWriter, int, String, Options) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Prints the usage statement for the specified application.
+
+
printUsage(PrintWriter, int, String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the cmdLineSyntax to the specified writer, using the + specified width.
+
+
printWrapped(PrintWriter, int, String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the specified text to the specified PrintWriter.
+
+
printWrapped(PrintWriter, int, int, String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Print the specified text to the specified PrintWriter.
+
+
processArgs(Option, ListIterator<String>) - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
Process the argument values for the specified Option + opt using the values retrieved from the + specified iterator iter.
+
+
processOption(String, ListIterator<String>) - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
Process the Option specified by arg using the values + retrieved from the specified iterator iter.
+
+
processProperties(Properties) - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
Sets the values of Options using the values in properties.
+
+
+ + + +

R

+
+
renderOptions(StringBuffer, int, Options, int, int) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Render the specified Options and return the rendered Options + in a StringBuffer.
+
+
renderWrappedText(StringBuffer, int, int, String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Render the specified text and return the rendered Options + in a StringBuffer.
+
+
required() - Method in class org.apache.commons.cli.Option.Builder
+
+
Marks this Option as required.
+
+
required(boolean) - Method in class org.apache.commons.cli.Option.Builder
+
+
Sets whether the Option is mandatory.
+
+
rtrim(String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Remove the trailing whitespace from the specified String.
+
+
+ + + +

S

+
+
setArgName(String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Sets the 'argName'.
+
+
setArgName(String) - Method in class org.apache.commons.cli.Option
+
+
Sets the display name for the argument value.
+
+
setArgs(int) - Method in class org.apache.commons.cli.Option
+
+
Sets the number of argument values this Option can take.
+
+
setDescPadding(int) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Sets the 'descPadding'.
+
+
setDescription(String) - Method in class org.apache.commons.cli.Option
+
+
Sets the self-documenting description of this Option
+
+
setLeftPadding(int) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Sets the 'leftPadding'.
+
+
setLongOpt(String) - Method in class org.apache.commons.cli.Option
+
+
Sets the long name of this Option.
+
+
setLongOptPrefix(String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Sets the 'longOptPrefix'.
+
+
setLongOptSeparator(String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Set the separator displayed between a long option and its value.
+
+
setNewLine(String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Sets the 'newLine'.
+
+
setOptionalArg(boolean) - Method in class org.apache.commons.cli.Option
+
+
Sets whether this Option can have an optional argument.
+
+
setOptionComparator(Comparator<Option>) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Set the comparator used to sort the options when they output in help text.
+
+
setOptions(Options) - Method in class org.apache.commons.cli.Parser
+
+
Deprecated.
+
setOptPrefix(String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Sets the 'optPrefix'.
+
+
setRequired(boolean) - Method in class org.apache.commons.cli.Option
+
+
Sets whether this Option is mandatory.
+
+
setRequired(boolean) - Method in class org.apache.commons.cli.OptionGroup
+
 
+
setSelected(Option) - Method in class org.apache.commons.cli.OptionGroup
+
+
Set the selected option of this group to name.
+
+
setSyntaxPrefix(String) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Sets the 'syntaxPrefix'.
+
+
setType(Object) - Method in class org.apache.commons.cli.Option
+
+
Deprecated. +
since 1.3, use Option.setType(Class) instead
+
+
+
setType(Class<?>) - Method in class org.apache.commons.cli.Option
+
+
Sets the type of this Option.
+
+
setValueSeparator(char) - Method in class org.apache.commons.cli.Option
+
+
Sets the value separator.
+
+
setWidth(int) - Method in class org.apache.commons.cli.HelpFormatter
+
+
Sets the 'width'.
+
+
skipParsing - Variable in class org.apache.commons.cli.DefaultParser
+
+
Flag indicating if tokens should no longer be analyzed and simply added as arguments of the command line.
+
+
stopAtNonOption - Variable in class org.apache.commons.cli.DefaultParser
+
+
Flag indicating how unrecognized tokens are handled.
+
+
STRING_VALUE - Static variable in class org.apache.commons.cli.PatternOptionBuilder
+
+
String class
+
+
+ + + +

T

+
+
toString() - Method in class org.apache.commons.cli.Option
+
+
Dump state, suitable for debugging.
+
+
toString() - Method in class org.apache.commons.cli.OptionGroup
+
+
Returns the stringified version of this OptionGroup.
+
+
toString() - Method in class org.apache.commons.cli.Options
+
+
Dump state, suitable for debugging.
+
+
type(Class<?>) - Method in class org.apache.commons.cli.Option.Builder
+
+
Sets the type of the Option.
+
+
TypeHandler - Class in org.apache.commons.cli
+
+
This is a temporary implementation.
+
+
TypeHandler() - Constructor for class org.apache.commons.cli.TypeHandler
+
 
+
+ + + +

U

+
+
UNINITIALIZED - Static variable in class org.apache.commons.cli.Option
+
+
constant that specifies the number of argument values has not been specified
+
+
UNLIMITED_VALUES - Static variable in class org.apache.commons.cli.Option
+
+
constant that specifies the number of argument values is infinite
+
+
UnrecognizedOptionException - Exception in org.apache.commons.cli
+
+
Exception thrown during parsing signalling an unrecognized + option was seen.
+
+
UnrecognizedOptionException(String) - Constructor for exception org.apache.commons.cli.UnrecognizedOptionException
+
+
Construct a new UnrecognizedArgumentException + with the specified detail message.
+
+
UnrecognizedOptionException(String, String) - Constructor for exception org.apache.commons.cli.UnrecognizedOptionException
+
+
Construct a new UnrecognizedArgumentException + with the specified option and detail message.
+
+
URL_VALUE - Static variable in class org.apache.commons.cli.PatternOptionBuilder
+
+
URL class
+
+
+ + + +

V

+
+
valueSeparator() - Method in class org.apache.commons.cli.Option.Builder
+
+
The Option will use '=' as a means to separate argument value.
+
+
valueSeparator(char) - Method in class org.apache.commons.cli.Option.Builder
+
+
The Option will use sep as a means to + separate argument values.
+
+
+ + + +

W

+
+
withArgName(String) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created will have the specified argument value name.
+
+
withDescription(String) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created will have the specified description
+
+
withLongOpt(String) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created will have the following long option value.
+
+
withType(Object) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated. +
since 1.3, use OptionBuilder.withType(Class) instead
+
+
+
withType(Class<?>) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created will have a value that will be an instance + of type.
+
+
withValueSeparator(char) - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created uses sep as a means to + separate argument values.
+
+
withValueSeparator() - Static method in class org.apache.commons.cli.OptionBuilder
+
+
Deprecated.
+
The next Option created uses '=' as a means to + separate argument values.
+
+
+A B C D E F G H I L M N O P R S T U V W 
+ +
+ + + + + + + +
+ + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/index.html b/libs/commons-cli-1.4/apidocs/index.html new file mode 100755 index 0000000..670ee44 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/index.html @@ -0,0 +1,73 @@ + + + + + + +Apache Commons CLI 1.4 API + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="org/apache/commons/cli/package-summary.html">Non-frame version</a>.</p> + + + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/AlreadySelectedException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/AlreadySelectedException.html new file mode 100755 index 0000000..14ce329 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/AlreadySelectedException.html @@ -0,0 +1,370 @@ + + + + + + +AlreadySelectedException (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class AlreadySelectedException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class AlreadySelectedException
    +extends ParseException
    +
    Thrown when more than one option in an option group + has been provided.
    +
    +
    Version:
    +
    $Id: AlreadySelectedException.java 1443102 2013-02-06 18:12:16Z tn $
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AlreadySelectedException

        +
        public AlreadySelectedException(String message)
        +
        Construct a new AlreadySelectedException + with the specified detail message.
        +
        +
        Parameters:
        +
        message - the detail message
        +
        +
      • +
      + + + +
        +
      • +

        AlreadySelectedException

        +
        public AlreadySelectedException(OptionGroup group,
        +                                Option option)
        +
        Construct a new AlreadySelectedException + for the specified option group.
        +
        +
        Parameters:
        +
        group - the option group already selected
        +
        option - the option that triggered the exception
        +
        Since:
        +
        1.2
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOptionGroup

        +
        public OptionGroup getOptionGroup()
        +
        Returns the option group where another option has been selected.
        +
        +
        Returns:
        +
        the related option group
        +
        Since:
        +
        1.2
        +
        +
      • +
      + + + +
        +
      • +

        getOption

        +
        public Option getOption()
        +
        Returns the option that was added to the group and triggered the exception.
        +
        +
        Returns:
        +
        the related option
        +
        Since:
        +
        1.2
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/AmbiguousOptionException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/AmbiguousOptionException.html new file mode 100755 index 0000000..82f4c02 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/AmbiguousOptionException.html @@ -0,0 +1,334 @@ + + + + + + +AmbiguousOptionException (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class AmbiguousOptionException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class AmbiguousOptionException
    +extends UnrecognizedOptionException
    +
    Exception thrown when an option can't be identified from a partial name.
    +
    +
    Since:
    +
    1.3
    +
    Version:
    +
    $Id: AmbiguousOptionException.java 1669814 2015-03-28 18:09:26Z britter $
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AmbiguousOptionException

        +
        public AmbiguousOptionException(String option,
        +                                Collection<String> matchingOptions)
        +
        Constructs a new AmbiguousOptionException.
        +
        +
        Parameters:
        +
        option - the partial option name
        +
        matchingOptions - the options matching the name
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getMatchingOptions

        +
        public Collection<String> getMatchingOptions()
        +
        Returns the options matching the partial name.
        +
        +
        Returns:
        +
        a collection of options matching the name
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/BasicParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/BasicParser.html new file mode 100755 index 0000000..785b888 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/BasicParser.html @@ -0,0 +1,339 @@ + + + + + + +BasicParser (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class BasicParser

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    CommandLineParser
    +
    +
    +
    Deprecated.  +
    since 1.3, use the DefaultParser instead
    +
    +
    +
    @Deprecated
    +public class BasicParser
    +extends Parser
    +
    The class BasicParser provides a very simple implementation of + the flatten method.
    +
    +
    Version:
    +
    $Id: BasicParser.java 1443102 2013-02-06 18:12:16Z tn $
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BasicParser

        +
        public BasicParser()
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        flatten

        +
        protected String[] flatten(Options options,
        +                           String[] arguments,
        +                           boolean stopAtNonOption)
        +
        Deprecated. 
        +

        A simple implementation of Parser's abstract + flatten method.

        + +

        Note: options and stopAtNonOption + are not used in this flatten method.

        +
        +
        Specified by:
        +
        flatten in class Parser
        +
        Parameters:
        +
        options - The command line Options
        +
        arguments - The command line arguments to be parsed
        +
        stopAtNonOption - Specifies whether to stop flattening + when an non option is found.
        +
        Returns:
        +
        The arguments String array.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLine.Builder.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLine.Builder.html new file mode 100755 index 0000000..503513a --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLine.Builder.html @@ -0,0 +1,324 @@ + + + + + + +CommandLine.Builder (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class CommandLine.Builder

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    CommandLine
    +
    +
    +
    +
    public static final class CommandLine.Builder
    +extends Object
    +
    A nested builder class to create CommandLine instance + using descriptive methods.
    +
    +
    Since:
    +
    1.4
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Builder

        +
        public Builder()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        addOption

        +
        public CommandLine.Builder addOption(Option opt)
        +
        Add an option to the command line. The values of the option are stored.
        +
        +
        Parameters:
        +
        opt - the processed option
        +
        Returns:
        +
        this Builder instance for method chaining.
        +
        +
      • +
      + + + +
        +
      • +

        addArg

        +
        public CommandLine.Builder addArg(String arg)
        +
        Add left-over unrecognized option/argument.
        +
        +
        Parameters:
        +
        arg - the unrecognized option/argument.
        +
        Returns:
        +
        this Builder instance for method chaining.
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLine.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLine.html new file mode 100755 index 0000000..1981b83 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLine.html @@ -0,0 +1,721 @@ + + + + + + +CommandLine (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class CommandLine

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class CommandLine
    +extends Object
    +implements Serializable
    +
    Represents list of arguments parsed against a Options descriptor. +

    + It allows querying of a boolean hasOption(String opt), + in addition to retrieving the getOptionValue(String opt) + for options requiring arguments. +

    + Additionally, any left-over or unrecognized arguments, + are available for further processing.

    +
    +
    Version:
    +
    $Id: CommandLine.java 1786144 2017-03-09 11:34:57Z britter $
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CommandLine

        +
        protected CommandLine()
        +
        Creates a command line.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        hasOption

        +
        public boolean hasOption(String opt)
        +
        Query to see if an option has been set.
        +
        +
        Parameters:
        +
        opt - Short name of the option
        +
        Returns:
        +
        true if set, false if not
        +
        +
      • +
      + + + +
        +
      • +

        hasOption

        +
        public boolean hasOption(char opt)
        +
        Query to see if an option has been set.
        +
        +
        Parameters:
        +
        opt - character name of the option
        +
        Returns:
        +
        true if set, false if not
        +
        +
      • +
      + + + +
        +
      • +

        getOptionObject

        +
        @Deprecated
        +public Object getOptionObject(String opt)
        +
        Deprecated. due to System.err message. Instead use getParsedOptionValue(String)
        +
        Return the Object type of this Option.
        +
        +
        Parameters:
        +
        opt - the name of the option
        +
        Returns:
        +
        the type of this Option
        +
        +
      • +
      + + + +
        +
      • +

        getParsedOptionValue

        +
        public Object getParsedOptionValue(String opt)
        +                            throws ParseException
        +
        Return a version of this Option converted to a particular type.
        +
        +
        Parameters:
        +
        opt - the name of the option
        +
        Returns:
        +
        the value parsed into a particular object
        +
        Throws:
        +
        ParseException - if there are problems turning the option value into the desired type
        +
        Since:
        +
        1.2
        +
        See Also:
        +
        PatternOptionBuilder
        +
        +
      • +
      + + + +
        +
      • +

        getOptionObject

        +
        public Object getOptionObject(char opt)
        +
        Return the Object type of this Option.
        +
        +
        Parameters:
        +
        opt - the name of the option
        +
        Returns:
        +
        the type of opt
        +
        +
      • +
      + + + +
        +
      • +

        getOptionValue

        +
        public String getOptionValue(String opt)
        +
        Retrieve the first argument, if any, of this option.
        +
        +
        Parameters:
        +
        opt - the name of the option
        +
        Returns:
        +
        Value of the argument if option is set, and has an argument, + otherwise null.
        +
        +
      • +
      + + + +
        +
      • +

        getOptionValue

        +
        public String getOptionValue(char opt)
        +
        Retrieve the first argument, if any, of this option.
        +
        +
        Parameters:
        +
        opt - the character name of the option
        +
        Returns:
        +
        Value of the argument if option is set, and has an argument, + otherwise null.
        +
        +
      • +
      + + + +
        +
      • +

        getOptionValues

        +
        public String[] getOptionValues(String opt)
        +
        Retrieves the array of values, if any, of an option.
        +
        +
        Parameters:
        +
        opt - string name of the option
        +
        Returns:
        +
        Values of the argument if option is set, and has an argument, + otherwise null.
        +
        +
      • +
      + + + +
        +
      • +

        getOptionValues

        +
        public String[] getOptionValues(char opt)
        +
        Retrieves the array of values, if any, of an option.
        +
        +
        Parameters:
        +
        opt - character name of the option
        +
        Returns:
        +
        Values of the argument if option is set, and has an argument, + otherwise null.
        +
        +
      • +
      + + + +
        +
      • +

        getOptionValue

        +
        public String getOptionValue(String opt,
        +                             String defaultValue)
        +
        Retrieve the first argument, if any, of an option.
        +
        +
        Parameters:
        +
        opt - name of the option
        +
        defaultValue - is the default value to be returned if the option + is not specified
        +
        Returns:
        +
        Value of the argument if option is set, and has an argument, + otherwise defaultValue.
        +
        +
      • +
      + + + +
        +
      • +

        getOptionValue

        +
        public String getOptionValue(char opt,
        +                             String defaultValue)
        +
        Retrieve the argument, if any, of an option.
        +
        +
        Parameters:
        +
        opt - character name of the option
        +
        defaultValue - is the default value to be returned if the option + is not specified
        +
        Returns:
        +
        Value of the argument if option is set, and has an argument, + otherwise defaultValue.
        +
        +
      • +
      + + + +
        +
      • +

        getOptionProperties

        +
        public Properties getOptionProperties(String opt)
        +
        Retrieve the map of values associated to the option. This is convenient + for options specifying Java properties like -Dparam1=value1 + -Dparam2=value2. The first argument of the option is the key, and + the 2nd argument is the value. If the option has only one argument + (-Dfoo) it is considered as a boolean flag and the value is + "true".
        +
        +
        Parameters:
        +
        opt - name of the option
        +
        Returns:
        +
        The Properties mapped by the option, never null + even if the option doesn't exists
        +
        Since:
        +
        1.2
        +
        +
      • +
      + + + +
        +
      • +

        getArgs

        +
        public String[] getArgs()
        +
        Retrieve any left-over non-recognized options and arguments
        +
        +
        Returns:
        +
        remaining items passed in but not parsed as an array
        +
        +
      • +
      + + + +
        +
      • +

        getArgList

        +
        public List<String> getArgList()
        +
        Retrieve any left-over non-recognized options and arguments
        +
        +
        Returns:
        +
        remaining items passed in but not parsed as a List.
        +
        +
      • +
      + + + +
        +
      • +

        addArg

        +
        protected void addArg(String arg)
        +
        Add left-over unrecognized option/argument.
        +
        +
        Parameters:
        +
        arg - the unrecognized option/argument.
        +
        +
      • +
      + + + +
        +
      • +

        addOption

        +
        protected void addOption(Option opt)
        +
        Add an option to the command line. The values of the option are stored.
        +
        +
        Parameters:
        +
        opt - the processed option
        +
        +
      • +
      + + + +
        +
      • +

        iterator

        +
        public Iterator<Option> iterator()
        +
        Returns an iterator over the Option members of CommandLine.
        +
        +
        Returns:
        +
        an Iterator over the processed Option + members of this CommandLine
        +
        +
      • +
      + + + +
        +
      • +

        getOptions

        +
        public Option[] getOptions()
        +
        Returns an array of the processed Options.
        +
        +
        Returns:
        +
        an array of the processed Options.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLineParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLineParser.html new file mode 100755 index 0000000..c1552db --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/CommandLineParser.html @@ -0,0 +1,282 @@ + + + + + + +CommandLineParser (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Interface CommandLineParser

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    BasicParser, DefaultParser, GnuParser, Parser, PosixParser
    +
    +
    +
    +
    public interface CommandLineParser
    +
    A class that implements the CommandLineParser interface + can parse a String array according to the Options specified + and return a CommandLine.
    +
    +
    Version:
    +
    $Id: CommandLineParser.java 1443102 2013-02-06 18:12:16Z tn $
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        parse

        +
        CommandLine parse(Options options,
        +                  String[] arguments)
        +           throws ParseException
        +
        Parse the arguments according to the specified options.
        +
        +
        Parameters:
        +
        options - the specified Options
        +
        arguments - the command line arguments
        +
        Returns:
        +
        the list of atomic option and value tokens
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        CommandLine parse(Options options,
        +                  String[] arguments,
        +                  boolean stopAtNonOption)
        +           throws ParseException
        +
        Parse the arguments according to the specified options.
        +
        +
        Parameters:
        +
        options - the specified Options
        +
        arguments - the command line arguments
        +
        stopAtNonOption - if true an unrecognized argument stops + the parsing and the remaining arguments are added to the + CommandLines args list. If false an unrecognized + argument triggers a ParseException.
        +
        Returns:
        +
        the list of atomic option and value tokens
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/DefaultParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/DefaultParser.html new file mode 100755 index 0000000..0610926 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/DefaultParser.html @@ -0,0 +1,591 @@ + + + + + + +DefaultParser (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class DefaultParser

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    CommandLineParser
    +
    +
    +
    +
    public class DefaultParser
    +extends Object
    +implements CommandLineParser
    +
    Default parser.
    +
    +
    Since:
    +
    1.3
    +
    Version:
    +
    $Id: DefaultParser.java 1783175 2017-02-16 07:52:05Z britter $
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        cmd

        +
        protected CommandLine cmd
        +
        The command-line instance.
        +
      • +
      + + + +
        +
      • +

        options

        +
        protected Options options
        +
        The current options.
        +
      • +
      + + + +
        +
      • +

        stopAtNonOption

        +
        protected boolean stopAtNonOption
        +
        Flag indicating how unrecognized tokens are handled. true to stop + the parsing and add the remaining tokens to the args list. + false to throw an exception.
        +
      • +
      + + + +
        +
      • +

        currentToken

        +
        protected String currentToken
        +
        The token currently processed.
        +
      • +
      + + + +
        +
      • +

        currentOption

        +
        protected Option currentOption
        +
        The last option parsed.
        +
      • +
      + + + +
        +
      • +

        skipParsing

        +
        protected boolean skipParsing
        +
        Flag indicating if tokens should no longer be analyzed and simply added as arguments of the command line.
        +
      • +
      + + + +
        +
      • +

        expectedOpts

        +
        protected List expectedOpts
        +
        The required options and groups expected to be found when parsing the command line.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DefaultParser

        +
        public DefaultParser()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        parse

        +
        public CommandLine parse(Options options,
        +                         String[] arguments)
        +                  throws ParseException
        +
        Description copied from interface: CommandLineParser
        +
        Parse the arguments according to the specified options.
        +
        +
        Specified by:
        +
        parse in interface CommandLineParser
        +
        Parameters:
        +
        options - the specified Options
        +
        arguments - the command line arguments
        +
        Returns:
        +
        the list of atomic option and value tokens
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public CommandLine parse(Options options,
        +                         String[] arguments,
        +                         Properties properties)
        +                  throws ParseException
        +
        Parse the arguments according to the specified options and properties.
        +
        +
        Parameters:
        +
        options - the specified Options
        +
        arguments - the command line arguments
        +
        properties - command line option name-value pairs
        +
        Returns:
        +
        the list of atomic option and value tokens
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public CommandLine parse(Options options,
        +                         String[] arguments,
        +                         boolean stopAtNonOption)
        +                  throws ParseException
        +
        Description copied from interface: CommandLineParser
        +
        Parse the arguments according to the specified options.
        +
        +
        Specified by:
        +
        parse in interface CommandLineParser
        +
        Parameters:
        +
        options - the specified Options
        +
        arguments - the command line arguments
        +
        stopAtNonOption - if true an unrecognized argument stops + the parsing and the remaining arguments are added to the + CommandLines args list. If false an unrecognized + argument triggers a ParseException.
        +
        Returns:
        +
        the list of atomic option and value tokens
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public CommandLine parse(Options options,
        +                         String[] arguments,
        +                         Properties properties,
        +                         boolean stopAtNonOption)
        +                  throws ParseException
        +
        Parse the arguments according to the specified options and properties.
        +
        +
        Parameters:
        +
        options - the specified Options
        +
        arguments - the command line arguments
        +
        properties - command line option name-value pairs
        +
        stopAtNonOption - if true an unrecognized argument stops + the parsing and the remaining arguments are added to the + CommandLines args list. If false an unrecognized + argument triggers a ParseException.
        +
        Returns:
        +
        the list of atomic option and value tokens
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        +
      • +
      + + + +
        +
      • +

        handleConcatenatedOptions

        +
        protected void handleConcatenatedOptions(String token)
        +                                  throws ParseException
        +
        Breaks token into its constituent parts + using the following algorithm. + +
          +
        • ignore the first character ("-")
        • +
        • for each remaining character check if an Option + exists with that id.
        • +
        • if an Option does exist then add that character + prepended with "-" to the list of processed tokens.
        • +
        • if the Option can have an argument value and there + are remaining characters in the token then add the remaining + characters as a token to the list of processed tokens.
        • +
        • if an Option does NOT exist AND + stopAtNonOption IS set then add the special token + "--" followed by the remaining characters and also + the remaining tokens directly to the processed tokens list.
        • +
        • if an Option does NOT exist AND + stopAtNonOption IS NOT set then add that + character prepended with "-".
        • +
        +
        +
        Parameters:
        +
        token - The current token to be burst + at the first non-Option encountered.
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line token.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/GnuParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/GnuParser.html new file mode 100755 index 0000000..70b6338 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/GnuParser.html @@ -0,0 +1,348 @@ + + + + + + +GnuParser (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class GnuParser

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    CommandLineParser
    +
    +
    +
    Deprecated.  +
    since 1.3, use the DefaultParser instead
    +
    +
    +
    @Deprecated
    +public class GnuParser
    +extends Parser
    +
    The class GnuParser provides an implementation of the + flatten method.
    +
    +
    Version:
    +
    $Id: GnuParser.java 1445352 2013-02-12 20:48:19Z tn $
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        GnuParser

        +
        public GnuParser()
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        flatten

        +
        protected String[] flatten(Options options,
        +                           String[] arguments,
        +                           boolean stopAtNonOption)
        +
        Deprecated. 
        +
        This flatten method does so using the following rules: +
          +
        1. If an Option exists for the first character of + the arguments entry AND an Option + does not exist for the whole argument then + add the first character as an option to the processed tokens + list e.g. "-D" and add the rest of the entry to the also.
        2. +
        3. Otherwise just add the token to the processed tokens list.
        4. +
        +
        +
        Specified by:
        +
        flatten in class Parser
        +
        Parameters:
        +
        options - The Options to parse the arguments by.
        +
        arguments - The arguments that have to be flattened.
        +
        stopAtNonOption - specifies whether to stop flattening when + a non option has been encountered
        +
        Returns:
        +
        a String array of the flattened arguments
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/HelpFormatter.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/HelpFormatter.html new file mode 100755 index 0000000..2f8b1e2 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/HelpFormatter.html @@ -0,0 +1,1685 @@ + + + + + + +HelpFormatter (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class HelpFormatter

+
+
+ +
+
    +
  • +
    +
    +
    public class HelpFormatter
    +extends Object
    +
    A formatter of help messages for command line options. + +

    Example:

    + +
    + Options options = new Options();
    + options.addOption(OptionBuilder.withLongOpt("file")
    +                                .withDescription("The file to be processed")
    +                                .hasArg()
    +                                .withArgName("FILE")
    +                                .isRequired()
    +                                .create('f'));
    + options.addOption(OptionBuilder.withLongOpt("version")
    +                                .withDescription("Print the version of the application")
    +                                .create('v'));
    + options.addOption(OptionBuilder.withLongOpt("help").create('h'));
    + 
    + String header = "Do something useful with an input file\n\n";
    + String footer = "\nPlease report issues at http://example.com/issues";
    + 
    + HelpFormatter formatter = new HelpFormatter();
    + formatter.printHelp("myapp", header, options, footer, true);
    + 
    + + This produces the following output: + +
    + usage: myapp -f <FILE> [-h] [-v]
    + Do something useful with an input file
    + 
    +  -f,--file <FILE>   The file to be processed
    +  -h,--help
    +  -v,--version       Print the version of the application
    + 
    + Please report issues at http://example.com/issues
    + 
    +
    +
    Version:
    +
    $Id: HelpFormatter.java 1677407 2015-05-03 14:31:12Z britter $
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        DEFAULT_WIDTH

        +
        public static final int DEFAULT_WIDTH
        +
        default number of characters per line
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        DEFAULT_LEFT_PAD

        +
        public static final int DEFAULT_LEFT_PAD
        +
        default padding to the left of each line
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        DEFAULT_DESC_PAD

        +
        public static final int DEFAULT_DESC_PAD
        +
        number of space characters to be prefixed to each description line
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        DEFAULT_SYNTAX_PREFIX

        +
        public static final String DEFAULT_SYNTAX_PREFIX
        +
        the string to display at the beginning of the usage statement
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        DEFAULT_OPT_PREFIX

        +
        public static final String DEFAULT_OPT_PREFIX
        +
        default prefix for shortOpts
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        DEFAULT_LONG_OPT_PREFIX

        +
        public static final String DEFAULT_LONG_OPT_PREFIX
        +
        default prefix for long Option
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        DEFAULT_LONG_OPT_SEPARATOR

        +
        public static final String DEFAULT_LONG_OPT_SEPARATOR
        +
        default separator displayed between a long Option and its value
        +
        +
        Since:
        +
        1.3
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        DEFAULT_ARG_NAME

        +
        public static final String DEFAULT_ARG_NAME
        +
        default name for an argument
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        defaultWidth

        +
        @Deprecated
        +public int defaultWidth
        +
        Deprecated. Scope will be made private for next major version + - use get/setWidth methods instead.
        +
        number of characters per line
        +
      • +
      + + + +
        +
      • +

        defaultLeftPad

        +
        @Deprecated
        +public int defaultLeftPad
        +
        Deprecated. Scope will be made private for next major version + - use get/setLeftPadding methods instead.
        +
        amount of padding to the left of each line
        +
      • +
      + + + +
        +
      • +

        defaultDescPad

        +
        @Deprecated
        +public int defaultDescPad
        +
        Deprecated. Scope will be made private for next major version + - use get/setDescPadding methods instead.
        +
        the number of characters of padding to be prefixed + to each description line
        +
      • +
      + + + +
        +
      • +

        defaultSyntaxPrefix

        +
        @Deprecated
        +public String defaultSyntaxPrefix
        +
        Deprecated. Scope will be made private for next major version + - use get/setSyntaxPrefix methods instead.
        +
        the string to display at the beginning of the usage statement
        +
      • +
      + + + +
        +
      • +

        defaultNewLine

        +
        @Deprecated
        +public String defaultNewLine
        +
        Deprecated. Scope will be made private for next major version + - use get/setNewLine methods instead.
        +
        the new line string
        +
      • +
      + + + +
        +
      • +

        defaultOptPrefix

        +
        @Deprecated
        +public String defaultOptPrefix
        +
        Deprecated. Scope will be made private for next major version + - use get/setOptPrefix methods instead.
        +
        the shortOpt prefix
        +
      • +
      + + + +
        +
      • +

        defaultLongOptPrefix

        +
        @Deprecated
        +public String defaultLongOptPrefix
        +
        Deprecated. Scope will be made private for next major version + - use get/setLongOptPrefix methods instead.
        +
        the long Opt prefix
        +
      • +
      + + + +
        +
      • +

        defaultArgName

        +
        @Deprecated
        +public String defaultArgName
        +
        Deprecated. Scope will be made private for next major version + - use get/setArgName methods instead.
        +
        the name of the argument
        +
      • +
      + + + +
        +
      • +

        optionComparator

        +
        protected Comparator<Option> optionComparator
        +
        Comparator used to sort the options when they output in help text + + Defaults to case-insensitive alphabetical sorting by option key
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HelpFormatter

        +
        public HelpFormatter()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setWidth

        +
        public void setWidth(int width)
        +
        Sets the 'width'.
        +
        +
        Parameters:
        +
        width - the new value of 'width'
        +
        +
      • +
      + + + +
        +
      • +

        getWidth

        +
        public int getWidth()
        +
        Returns the 'width'.
        +
        +
        Returns:
        +
        the 'width'
        +
        +
      • +
      + + + +
        +
      • +

        setLeftPadding

        +
        public void setLeftPadding(int padding)
        +
        Sets the 'leftPadding'.
        +
        +
        Parameters:
        +
        padding - the new value of 'leftPadding'
        +
        +
      • +
      + + + +
        +
      • +

        getLeftPadding

        +
        public int getLeftPadding()
        +
        Returns the 'leftPadding'.
        +
        +
        Returns:
        +
        the 'leftPadding'
        +
        +
      • +
      + + + +
        +
      • +

        setDescPadding

        +
        public void setDescPadding(int padding)
        +
        Sets the 'descPadding'.
        +
        +
        Parameters:
        +
        padding - the new value of 'descPadding'
        +
        +
      • +
      + + + +
        +
      • +

        getDescPadding

        +
        public int getDescPadding()
        +
        Returns the 'descPadding'.
        +
        +
        Returns:
        +
        the 'descPadding'
        +
        +
      • +
      + + + +
        +
      • +

        setSyntaxPrefix

        +
        public void setSyntaxPrefix(String prefix)
        +
        Sets the 'syntaxPrefix'.
        +
        +
        Parameters:
        +
        prefix - the new value of 'syntaxPrefix'
        +
        +
      • +
      + + + +
        +
      • +

        getSyntaxPrefix

        +
        public String getSyntaxPrefix()
        +
        Returns the 'syntaxPrefix'.
        +
        +
        Returns:
        +
        the 'syntaxPrefix'
        +
        +
      • +
      + + + +
        +
      • +

        setNewLine

        +
        public void setNewLine(String newline)
        +
        Sets the 'newLine'.
        +
        +
        Parameters:
        +
        newline - the new value of 'newLine'
        +
        +
      • +
      + + + +
        +
      • +

        getNewLine

        +
        public String getNewLine()
        +
        Returns the 'newLine'.
        +
        +
        Returns:
        +
        the 'newLine'
        +
        +
      • +
      + + + +
        +
      • +

        setOptPrefix

        +
        public void setOptPrefix(String prefix)
        +
        Sets the 'optPrefix'.
        +
        +
        Parameters:
        +
        prefix - the new value of 'optPrefix'
        +
        +
      • +
      + + + +
        +
      • +

        getOptPrefix

        +
        public String getOptPrefix()
        +
        Returns the 'optPrefix'.
        +
        +
        Returns:
        +
        the 'optPrefix'
        +
        +
      • +
      + + + +
        +
      • +

        setLongOptPrefix

        +
        public void setLongOptPrefix(String prefix)
        +
        Sets the 'longOptPrefix'.
        +
        +
        Parameters:
        +
        prefix - the new value of 'longOptPrefix'
        +
        +
      • +
      + + + +
        +
      • +

        getLongOptPrefix

        +
        public String getLongOptPrefix()
        +
        Returns the 'longOptPrefix'.
        +
        +
        Returns:
        +
        the 'longOptPrefix'
        +
        +
      • +
      + + + +
        +
      • +

        setLongOptSeparator

        +
        public void setLongOptSeparator(String longOptSeparator)
        +
        Set the separator displayed between a long option and its value. + Ensure that the separator specified is supported by the parser used, + typically ' ' or '='.
        +
        +
        Parameters:
        +
        longOptSeparator - the separator, typically ' ' or '='.
        +
        Since:
        +
        1.3
        +
        +
      • +
      + + + +
        +
      • +

        getLongOptSeparator

        +
        public String getLongOptSeparator()
        +
        Returns the separator displayed between a long option and its value.
        +
        +
        Returns:
        +
        the separator
        +
        Since:
        +
        1.3
        +
        +
      • +
      + + + +
        +
      • +

        setArgName

        +
        public void setArgName(String name)
        +
        Sets the 'argName'.
        +
        +
        Parameters:
        +
        name - the new value of 'argName'
        +
        +
      • +
      + + + +
        +
      • +

        getArgName

        +
        public String getArgName()
        +
        Returns the 'argName'.
        +
        +
        Returns:
        +
        the 'argName'
        +
        +
      • +
      + + + +
        +
      • +

        getOptionComparator

        +
        public Comparator<Option> getOptionComparator()
        +
        Comparator used to sort the options when they output in help text. + Defaults to case-insensitive alphabetical sorting by option key.
        +
        +
        Returns:
        +
        the Comparator currently in use to sort the options
        +
        Since:
        +
        1.2
        +
        +
      • +
      + + + +
        +
      • +

        setOptionComparator

        +
        public void setOptionComparator(Comparator<Option> comparator)
        +
        Set the comparator used to sort the options when they output in help text. + Passing in a null comparator will keep the options in the order they were declared.
        +
        +
        Parameters:
        +
        comparator - the Comparator to use for sorting the options
        +
        Since:
        +
        1.2
        +
        +
      • +
      + + + +
        +
      • +

        printHelp

        +
        public void printHelp(String cmdLineSyntax,
        +                      Options options)
        +
        Print the help for options with the specified + command line syntax. This method prints help information to + System.out.
        +
        +
        Parameters:
        +
        cmdLineSyntax - the syntax for this application
        +
        options - the Options instance
        +
        +
      • +
      + + + +
        +
      • +

        printHelp

        +
        public void printHelp(String cmdLineSyntax,
        +                      Options options,
        +                      boolean autoUsage)
        +
        Print the help for options with the specified + command line syntax. This method prints help information to + System.out.
        +
        +
        Parameters:
        +
        cmdLineSyntax - the syntax for this application
        +
        options - the Options instance
        +
        autoUsage - whether to print an automatically generated + usage statement
        +
        +
      • +
      + + + +
        +
      • +

        printHelp

        +
        public void printHelp(String cmdLineSyntax,
        +                      String header,
        +                      Options options,
        +                      String footer)
        +
        Print the help for options with the specified + command line syntax. This method prints help information to + System.out.
        +
        +
        Parameters:
        +
        cmdLineSyntax - the syntax for this application
        +
        header - the banner to display at the beginning of the help
        +
        options - the Options instance
        +
        footer - the banner to display at the end of the help
        +
        +
      • +
      + + + +
        +
      • +

        printHelp

        +
        public void printHelp(String cmdLineSyntax,
        +                      String header,
        +                      Options options,
        +                      String footer,
        +                      boolean autoUsage)
        +
        Print the help for options with the specified + command line syntax. This method prints help information to + System.out.
        +
        +
        Parameters:
        +
        cmdLineSyntax - the syntax for this application
        +
        header - the banner to display at the beginning of the help
        +
        options - the Options instance
        +
        footer - the banner to display at the end of the help
        +
        autoUsage - whether to print an automatically generated + usage statement
        +
        +
      • +
      + + + +
        +
      • +

        printHelp

        +
        public void printHelp(int width,
        +                      String cmdLineSyntax,
        +                      String header,
        +                      Options options,
        +                      String footer)
        +
        Print the help for options with the specified + command line syntax. This method prints help information to + System.out.
        +
        +
        Parameters:
        +
        width - the number of characters to be displayed on each line
        +
        cmdLineSyntax - the syntax for this application
        +
        header - the banner to display at the beginning of the help
        +
        options - the Options instance
        +
        footer - the banner to display at the end of the help
        +
        +
      • +
      + + + +
        +
      • +

        printHelp

        +
        public void printHelp(int width,
        +                      String cmdLineSyntax,
        +                      String header,
        +                      Options options,
        +                      String footer,
        +                      boolean autoUsage)
        +
        Print the help for options with the specified + command line syntax. This method prints help information to + System.out.
        +
        +
        Parameters:
        +
        width - the number of characters to be displayed on each line
        +
        cmdLineSyntax - the syntax for this application
        +
        header - the banner to display at the beginning of the help
        +
        options - the Options instance
        +
        footer - the banner to display at the end of the help
        +
        autoUsage - whether to print an automatically generated + usage statement
        +
        +
      • +
      + + + +
        +
      • +

        printHelp

        +
        public void printHelp(PrintWriter pw,
        +                      int width,
        +                      String cmdLineSyntax,
        +                      String header,
        +                      Options options,
        +                      int leftPad,
        +                      int descPad,
        +                      String footer)
        +
        Print the help for options with the specified + command line syntax.
        +
        +
        Parameters:
        +
        pw - the writer to which the help will be written
        +
        width - the number of characters to be displayed on each line
        +
        cmdLineSyntax - the syntax for this application
        +
        header - the banner to display at the beginning of the help
        +
        options - the Options instance
        +
        leftPad - the number of characters of padding to be prefixed + to each line
        +
        descPad - the number of characters of padding to be prefixed + to each description line
        +
        footer - the banner to display at the end of the help
        +
        Throws:
        +
        IllegalStateException - if there is no room to print a line
        +
        +
      • +
      + + + +
        +
      • +

        printHelp

        +
        public void printHelp(PrintWriter pw,
        +                      int width,
        +                      String cmdLineSyntax,
        +                      String header,
        +                      Options options,
        +                      int leftPad,
        +                      int descPad,
        +                      String footer,
        +                      boolean autoUsage)
        +
        Print the help for options with the specified + command line syntax.
        +
        +
        Parameters:
        +
        pw - the writer to which the help will be written
        +
        width - the number of characters to be displayed on each line
        +
        cmdLineSyntax - the syntax for this application
        +
        header - the banner to display at the beginning of the help
        +
        options - the Options instance
        +
        leftPad - the number of characters of padding to be prefixed + to each line
        +
        descPad - the number of characters of padding to be prefixed + to each description line
        +
        footer - the banner to display at the end of the help
        +
        autoUsage - whether to print an automatically generated + usage statement
        +
        Throws:
        +
        IllegalStateException - if there is no room to print a line
        +
        +
      • +
      + + + +
        +
      • +

        printUsage

        +
        public void printUsage(PrintWriter pw,
        +                       int width,
        +                       String app,
        +                       Options options)
        +
        Prints the usage statement for the specified application.
        +
        +
        Parameters:
        +
        pw - The PrintWriter to print the usage statement
        +
        width - The number of characters to display per line
        +
        app - The application name
        +
        options - The command line Options
        +
        +
      • +
      + + + +
        +
      • +

        printUsage

        +
        public void printUsage(PrintWriter pw,
        +                       int width,
        +                       String cmdLineSyntax)
        +
        Print the cmdLineSyntax to the specified writer, using the + specified width.
        +
        +
        Parameters:
        +
        pw - The printWriter to write the help to
        +
        width - The number of characters per line for the usage statement.
        +
        cmdLineSyntax - The usage statement.
        +
        +
      • +
      + + + +
        +
      • +

        printOptions

        +
        public void printOptions(PrintWriter pw,
        +                         int width,
        +                         Options options,
        +                         int leftPad,
        +                         int descPad)
        +
        Print the help for the specified Options to the specified writer, + using the specified width, left padding and description padding.
        +
        +
        Parameters:
        +
        pw - The printWriter to write the help to
        +
        width - The number of characters to display per line
        +
        options - The command line Options
        +
        leftPad - the number of characters of padding to be prefixed + to each line
        +
        descPad - the number of characters of padding to be prefixed + to each description line
        +
        +
      • +
      + + + +
        +
      • +

        printWrapped

        +
        public void printWrapped(PrintWriter pw,
        +                         int width,
        +                         String text)
        +
        Print the specified text to the specified PrintWriter.
        +
        +
        Parameters:
        +
        pw - The printWriter to write the help to
        +
        width - The number of characters to display per line
        +
        text - The text to be written to the PrintWriter
        +
        +
      • +
      + + + +
        +
      • +

        printWrapped

        +
        public void printWrapped(PrintWriter pw,
        +                         int width,
        +                         int nextLineTabStop,
        +                         String text)
        +
        Print the specified text to the specified PrintWriter.
        +
        +
        Parameters:
        +
        pw - The printWriter to write the help to
        +
        width - The number of characters to display per line
        +
        nextLineTabStop - The position on the next line for the first tab.
        +
        text - The text to be written to the PrintWriter
        +
        +
      • +
      + + + +
        +
      • +

        renderOptions

        +
        protected StringBuffer renderOptions(StringBuffer sb,
        +                                     int width,
        +                                     Options options,
        +                                     int leftPad,
        +                                     int descPad)
        +
        Render the specified Options and return the rendered Options + in a StringBuffer.
        +
        +
        Parameters:
        +
        sb - The StringBuffer to place the rendered Options into.
        +
        width - The number of characters to display per line
        +
        options - The command line Options
        +
        leftPad - the number of characters of padding to be prefixed + to each line
        +
        descPad - the number of characters of padding to be prefixed + to each description line
        +
        Returns:
        +
        the StringBuffer with the rendered Options contents.
        +
        +
      • +
      + + + +
        +
      • +

        renderWrappedText

        +
        protected StringBuffer renderWrappedText(StringBuffer sb,
        +                                         int width,
        +                                         int nextLineTabStop,
        +                                         String text)
        +
        Render the specified text and return the rendered Options + in a StringBuffer.
        +
        +
        Parameters:
        +
        sb - The StringBuffer to place the rendered text into.
        +
        width - The number of characters to display per line
        +
        nextLineTabStop - The position on the next line for the first tab.
        +
        text - The text to be rendered.
        +
        Returns:
        +
        the StringBuffer with the rendered Options contents.
        +
        +
      • +
      + + + +
        +
      • +

        findWrapPos

        +
        protected int findWrapPos(String text,
        +                          int width,
        +                          int startPos)
        +
        Finds the next text wrap position after startPos for the + text in text with the column width width. + The wrap point is the last position before startPos+width having a + whitespace character (space, \n, \r). If there is no whitespace character + before startPos+width, it will return startPos+width.
        +
        +
        Parameters:
        +
        text - The text being searched for the wrap position
        +
        width - width of the wrapped text
        +
        startPos - position from which to start the lookup whitespace + character
        +
        Returns:
        +
        position on which the text must be wrapped or -1 if the wrap + position is at the end of the text
        +
        +
      • +
      + + + +
        +
      • +

        createPadding

        +
        protected String createPadding(int len)
        +
        Return a String of padding of length len.
        +
        +
        Parameters:
        +
        len - The length of the String of padding to create.
        +
        Returns:
        +
        The String of padding
        +
        +
      • +
      + + + +
        +
      • +

        rtrim

        +
        protected String rtrim(String s)
        +
        Remove the trailing whitespace from the specified String.
        +
        +
        Parameters:
        +
        s - The String to remove the trailing padding from.
        +
        Returns:
        +
        The String of without the trailing padding
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/MissingArgumentException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/MissingArgumentException.html new file mode 100755 index 0000000..b420e12 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/MissingArgumentException.html @@ -0,0 +1,347 @@ + + + + + + +MissingArgumentException (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class MissingArgumentException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class MissingArgumentException
    +extends ParseException
    +
    Thrown when an option requiring an argument + is not provided with an argument.
    +
    +
    Version:
    +
    $Id: MissingArgumentException.java 1443102 2013-02-06 18:12:16Z tn $
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        MissingArgumentException

        +
        public MissingArgumentException(String message)
        +
        Construct a new MissingArgumentException + with the specified detail message.
        +
        +
        Parameters:
        +
        message - the detail message
        +
        +
      • +
      + + + +
        +
      • +

        MissingArgumentException

        +
        public MissingArgumentException(Option option)
        +
        Construct a new MissingArgumentException + with the specified detail message.
        +
        +
        Parameters:
        +
        option - the option requiring an argument
        +
        Since:
        +
        1.2
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOption

        +
        public Option getOption()
        +
        Return the option requiring an argument that wasn't provided + on the command line.
        +
        +
        Returns:
        +
        the related option
        +
        Since:
        +
        1.2
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/MissingOptionException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/MissingOptionException.html new file mode 100755 index 0000000..efef673 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/MissingOptionException.html @@ -0,0 +1,345 @@ + + + + + + +MissingOptionException (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class MissingOptionException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class MissingOptionException
    +extends ParseException
    +
    Thrown when a required option has not been provided.
    +
    +
    Version:
    +
    $Id: MissingOptionException.java 1443102 2013-02-06 18:12:16Z tn $
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        MissingOptionException

        +
        public MissingOptionException(String message)
        +
        Construct a new MissingSelectedException + with the specified detail message.
        +
        +
        Parameters:
        +
        message - the detail message
        +
        +
      • +
      + + + +
        +
      • +

        MissingOptionException

        +
        public MissingOptionException(List missingOptions)
        +
        Constructs a new MissingSelectedException with the + specified list of missing options.
        +
        +
        Parameters:
        +
        missingOptions - the list of missing options and groups
        +
        Since:
        +
        1.2
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getMissingOptions

        +
        public List getMissingOptions()
        +
        Returns the list of options or option groups missing in the command line parsed.
        +
        +
        Returns:
        +
        the missing options, consisting of String instances for simple + options, and OptionGroup instances for required option groups.
        +
        Since:
        +
        1.2
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Option.Builder.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Option.Builder.html new file mode 100755 index 0000000..6c70d92 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Option.Builder.html @@ -0,0 +1,558 @@ + + + + + + +Option.Builder (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class Option.Builder

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    Option
    +
    +
    +
    +
    public static final class Option.Builder
    +extends Object
    +
    A nested builder class to create Option instances + using descriptive methods. +

    + Example usage: +

    + Option option = Option.builder("a")
    +     .required(true)
    +     .longOpt("arg-name")
    +     .build();
    + 
    +
    +
    Since:
    +
    1.3
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        argName

        +
        public Option.Builder argName(String argName)
        +
        Sets the display name for the argument value.
        +
        +
        Parameters:
        +
        argName - the display name for the argument value.
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        desc

        +
        public Option.Builder desc(String description)
        +
        Sets the description for this option.
        +
        +
        Parameters:
        +
        description - the description of the option.
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        longOpt

        +
        public Option.Builder longOpt(String longOpt)
        +
        Sets the long name of the Option.
        +
        +
        Parameters:
        +
        longOpt - the long name of the Option
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        numberOfArgs

        +
        public Option.Builder numberOfArgs(int numberOfArgs)
        +
        Sets the number of argument values the Option can take.
        +
        +
        Parameters:
        +
        numberOfArgs - the number of argument values
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        optionalArg

        +
        public Option.Builder optionalArg(boolean isOptional)
        +
        Sets whether the Option can have an optional argument.
        +
        +
        Parameters:
        +
        isOptional - specifies whether the Option can have + an optional argument.
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        required

        +
        public Option.Builder required()
        +
        Marks this Option as required.
        +
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        required

        +
        public Option.Builder required(boolean required)
        +
        Sets whether the Option is mandatory.
        +
        +
        Parameters:
        +
        required - specifies whether the Option is mandatory
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        type

        +
        public Option.Builder type(Class<?> type)
        +
        Sets the type of the Option.
        +
        +
        Parameters:
        +
        type - the type of the Option
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        valueSeparator

        +
        public Option.Builder valueSeparator()
        +
        The Option will use '=' as a means to separate argument value.
        +
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        valueSeparator

        +
        public Option.Builder valueSeparator(char sep)
        +
        The Option will use sep as a means to + separate argument values. +

        + Example: +

        + Option opt = Option.builder("D").hasArgs()
        +                                 .valueSeparator('=')
        +                                 .build();
        + Options options = new Options();
        + options.addOption(opt);
        + String[] args = {"-Dkey=value"};
        + CommandLineParser parser = new DefaultParser();
        + CommandLine line = parser.parse(options, args);
        + String propertyName = line.getOptionValues("D")[0];  // will be "key"
        + String propertyValue = line.getOptionValues("D")[1]; // will be "value"
        + 
        +
        +
        Parameters:
        +
        sep - The value separator.
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        hasArg

        +
        public Option.Builder hasArg()
        +
        Indicates that the Option will require an argument.
        +
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        hasArg

        +
        public Option.Builder hasArg(boolean hasArg)
        +
        Indicates if the Option has an argument or not.
        +
        +
        Parameters:
        +
        hasArg - specifies whether the Option takes an argument or not
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + +
        +
      • +

        hasArgs

        +
        public Option.Builder hasArgs()
        +
        Indicates that the Option can have unlimited argument values.
        +
        +
        Returns:
        +
        this builder, to allow method chaining
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Option.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Option.html new file mode 100755 index 0000000..2c832fc --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Option.html @@ -0,0 +1,1237 @@ + + + + + + +Option (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class Option

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable, Cloneable
    +
    +
    +
    +
    public class Option
    +extends Object
    +implements Cloneable, Serializable
    +
    Describes a single command-line option. It maintains + information regarding the short-name of the option, the long-name, + if any exists, a flag indicating if an argument is required for + this option, and a self-documenting description of the option. +

    + An Option is not created independently, but is created through + an instance of Options. An Option is required to have + at least a short or a long-name. +

    + Note: once an Option has been added to an instance + of Options, it's required flag may not be changed anymore.

    +
    +
    Version:
    +
    $Id: Option.java 1756753 2016-08-18 10:18:43Z britter $
    +
    See Also:
    +
    Options, +CommandLine, +Serialized Form
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      static class Option.Builder +
      A nested builder class to create Option instances + using descriptive methods.
      +
      +
    • +
    + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static intUNINITIALIZED +
      constant that specifies the number of argument values has not been specified
      +
      static intUNLIMITED_VALUES +
      constant that specifies the number of argument values is infinite
      +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      Option(String opt, + boolean hasArg, + String description) +
      Creates an Option using the specified parameters.
      +
      Option(String opt, + String description) +
      Creates an Option using the specified parameters.
      +
      Option(String opt, + String longOpt, + boolean hasArg, + String description) +
      Creates an Option using the specified parameters.
      +
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        UNINITIALIZED

        +
        public static final int UNINITIALIZED
        +
        constant that specifies the number of argument values has not been specified
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      + + + +
        +
      • +

        UNLIMITED_VALUES

        +
        public static final int UNLIMITED_VALUES
        +
        constant that specifies the number of argument values is infinite
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Option

        +
        public Option(String opt,
        +              String description)
        +       throws IllegalArgumentException
        +
        Creates an Option using the specified parameters. + The option does not take an argument.
        +
        +
        Parameters:
        +
        opt - short representation of the option
        +
        description - describes the function of the option
        +
        Throws:
        +
        IllegalArgumentException - if there are any non valid + Option characters in opt.
        +
        +
      • +
      + + + +
        +
      • +

        Option

        +
        public Option(String opt,
        +              boolean hasArg,
        +              String description)
        +       throws IllegalArgumentException
        +
        Creates an Option using the specified parameters.
        +
        +
        Parameters:
        +
        opt - short representation of the option
        +
        hasArg - specifies whether the Option takes an argument or not
        +
        description - describes the function of the option
        +
        Throws:
        +
        IllegalArgumentException - if there are any non valid + Option characters in opt.
        +
        +
      • +
      + + + +
        +
      • +

        Option

        +
        public Option(String opt,
        +              String longOpt,
        +              boolean hasArg,
        +              String description)
        +       throws IllegalArgumentException
        +
        Creates an Option using the specified parameters.
        +
        +
        Parameters:
        +
        opt - short representation of the option
        +
        longOpt - the long representation of the option
        +
        hasArg - specifies whether the Option takes an argument or not
        +
        description - describes the function of the option
        +
        Throws:
        +
        IllegalArgumentException - if there are any non valid + Option characters in opt.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public int getId()
        +
        Returns the id of this Option. This is only set when the + Option shortOpt is a single character. This is used for switch + statements.
        +
        +
        Returns:
        +
        the id of this Option
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getType

        +
        public Object getType()
        +
        Retrieve the type of this Option.
        +
        +
        Returns:
        +
        The type of this option
        +
        +
      • +
      + + + +
        +
      • +

        setType

        +
        @Deprecated
        +public void setType(Object type)
        +
        Deprecated. since 1.3, use setType(Class) instead
        +
        Sets the type of this Option. +

        + Note: this method is kept for binary compatibility and the + input type is supposed to be a Class object.

        +
        +
        Parameters:
        +
        type - the type of this Option
        +
        +
      • +
      + + + +
        +
      • +

        setType

        +
        public void setType(Class<?> type)
        +
        Sets the type of this Option.
        +
        +
        Parameters:
        +
        type - the type of this Option
        +
        Since:
        +
        1.3
        +
        +
      • +
      + + + +
        +
      • +

        getLongOpt

        +
        public String getLongOpt()
        +
        Retrieve the long name of this Option.
        +
        +
        Returns:
        +
        Long name of this option, or null, if there is no long name
        +
        +
      • +
      + + + +
        +
      • +

        setLongOpt

        +
        public void setLongOpt(String longOpt)
        +
        Sets the long name of this Option.
        +
        +
        Parameters:
        +
        longOpt - the long name of this Option
        +
        +
      • +
      + + + +
        +
      • +

        setOptionalArg

        +
        public void setOptionalArg(boolean optionalArg)
        +
        Sets whether this Option can have an optional argument.
        +
        +
        Parameters:
        +
        optionalArg - specifies whether the Option can have + an optional argument.
        +
        +
      • +
      + + + +
        +
      • +

        hasOptionalArg

        +
        public boolean hasOptionalArg()
        +
        +
        Returns:
        +
        whether this Option can have an optional argument
        +
        +
      • +
      + + + +
        +
      • +

        hasLongOpt

        +
        public boolean hasLongOpt()
        +
        Query to see if this Option has a long name
        +
        +
        Returns:
        +
        boolean flag indicating existence of a long name
        +
        +
      • +
      + + + +
        +
      • +

        hasArg

        +
        public boolean hasArg()
        +
        Query to see if this Option requires an argument
        +
        +
        Returns:
        +
        boolean flag indicating if an argument is required
        +
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public String getDescription()
        +
        Retrieve the self-documenting description of this Option
        +
        +
        Returns:
        +
        The string description of this option
        +
        +
      • +
      + + + +
        +
      • +

        setDescription

        +
        public void setDescription(String description)
        +
        Sets the self-documenting description of this Option
        +
        +
        Parameters:
        +
        description - The description of this option
        +
        Since:
        +
        1.1
        +
        +
      • +
      + + + +
        +
      • +

        isRequired

        +
        public boolean isRequired()
        +
        Query to see if this Option is mandatory
        +
        +
        Returns:
        +
        boolean flag indicating whether this Option is mandatory
        +
        +
      • +
      + + + +
        +
      • +

        setRequired

        +
        public void setRequired(boolean required)
        +
        Sets whether this Option is mandatory.
        +
        +
        Parameters:
        +
        required - specifies whether this Option is mandatory
        +
        +
      • +
      + + + +
        +
      • +

        setArgName

        +
        public void setArgName(String argName)
        +
        Sets the display name for the argument value.
        +
        +
        Parameters:
        +
        argName - the display name for the argument value.
        +
        +
      • +
      + + + +
        +
      • +

        getArgName

        +
        public String getArgName()
        +
        Gets the display name for the argument value.
        +
        +
        Returns:
        +
        the display name for the argument value.
        +
        +
      • +
      + + + +
        +
      • +

        hasArgName

        +
        public boolean hasArgName()
        +
        Returns whether the display name for the argument value has been set.
        +
        +
        Returns:
        +
        if the display name for the argument value has been set.
        +
        +
      • +
      + + + +
        +
      • +

        hasArgs

        +
        public boolean hasArgs()
        +
        Query to see if this Option can take many values.
        +
        +
        Returns:
        +
        boolean flag indicating if multiple values are allowed
        +
        +
      • +
      + + + +
        +
      • +

        setArgs

        +
        public void setArgs(int num)
        +
        Sets the number of argument values this Option can take.
        +
        +
        Parameters:
        +
        num - the number of argument values
        +
        +
      • +
      + + + +
        +
      • +

        setValueSeparator

        +
        public void setValueSeparator(char sep)
        +
        Sets the value separator. For example if the argument value + was a Java property, the value separator would be '='.
        +
        +
        Parameters:
        +
        sep - The value separator.
        +
        +
      • +
      + + + +
        +
      • +

        getValueSeparator

        +
        public char getValueSeparator()
        +
        Returns the value separator character.
        +
        +
        Returns:
        +
        the value separator character.
        +
        +
      • +
      + + + +
        +
      • +

        hasValueSeparator

        +
        public boolean hasValueSeparator()
        +
        Return whether this Option has specified a value separator.
        +
        +
        Returns:
        +
        whether this Option has specified a value separator.
        +
        Since:
        +
        1.1
        +
        +
      • +
      + + + +
        +
      • +

        getArgs

        +
        public int getArgs()
        +
        Returns the number of argument values this Option can take. + +

        + A value equal to the constant UNINITIALIZED (= -1) indicates + the number of arguments has not been specified. + A value equal to the constant UNLIMITED_VALUES (= -2) indicates + that this options takes an unlimited amount of values. +

        +
        +
        Returns:
        +
        num the number of argument values
        +
        See Also:
        +
        UNINITIALIZED, +UNLIMITED_VALUES
        +
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public String getValue()
        +
        Returns the specified value of this Option or + null if there is no value.
        +
        +
        Returns:
        +
        the value/first value of this Option or + null if there is no value.
        +
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public String getValue(int index)
        +                throws IndexOutOfBoundsException
        +
        Returns the specified value of this Option or + null if there is no value.
        +
        +
        Parameters:
        +
        index - The index of the value to be returned.
        +
        Returns:
        +
        the specified value of this Option or + null if there is no value.
        +
        Throws:
        +
        IndexOutOfBoundsException - if index is less than 1 + or greater than the number of the values for this Option.
        +
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public String getValue(String defaultValue)
        +
        Returns the value/first value of this Option or the + defaultValue if there is no value.
        +
        +
        Parameters:
        +
        defaultValue - The value to be returned if there + is no value.
        +
        Returns:
        +
        the value/first value of this Option or the + defaultValue if there are no values.
        +
        +
      • +
      + + + +
        +
      • +

        getValues

        +
        public String[] getValues()
        +
        Return the values of this Option as a String array + or null if there are no values
        +
        +
        Returns:
        +
        the values of this Option as a String array + or null if there are no values
        +
        +
      • +
      + + + +
        +
      • +

        getValuesList

        +
        public List<String> getValuesList()
        +
        +
        Returns:
        +
        the values of this Option as a List + or null if there are no values
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public String toString()
        +
        Dump state, suitable for debugging.
        +
        +
        Overrides:
        +
        toString in class Object
        +
        Returns:
        +
        Stringified form of this object
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(Object o)
        +
        +
        Overrides:
        +
        equals in class Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class Object
        +
        +
      • +
      + + + +
        +
      • +

        clone

        +
        public Object clone()
        +
        A rather odd clone method - due to incorrect code in 1.0 it is public + and in 1.1 rather than throwing a CloneNotSupportedException it throws + a RuntimeException so as to maintain backwards compat at the API level. + + After calling this method, it is very likely you will want to call + clearValues().
        +
        +
        Overrides:
        +
        clone in class Object
        +
        Returns:
        +
        a clone of this Option instance
        +
        Throws:
        +
        RuntimeException - if a CloneNotSupportedException has been thrown + by super.clone()
        +
        +
      • +
      + + + +
        +
      • +

        addValue

        +
        @Deprecated
        +public boolean addValue(String value)
        +
        Deprecated. 
        +
        This method is not intended to be used. It was a piece of internal + API that was made public in 1.0. It currently throws an UnsupportedOperationException.
        +
        +
        Parameters:
        +
        value - the value to add
        +
        Returns:
        +
        always throws an UnsupportedOperationException
        +
        Throws:
        +
        UnsupportedOperationException - always
        +
        +
      • +
      + + + + + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/OptionBuilder.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/OptionBuilder.html new file mode 100755 index 0000000..fe5ec96 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/OptionBuilder.html @@ -0,0 +1,737 @@ + + + + + + +OptionBuilder (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class OptionBuilder

+
+
+ +
+
    +
  • +
    +
    Deprecated.  +
    since 1.3, use Option.builder(String) instead
    +
    +
    +
    @Deprecated
    +public final class OptionBuilder
    +extends Object
    +
    OptionBuilder allows the user to create Options using descriptive methods. +

    + Details on the Builder pattern can be found at + http://c2.com/cgi-bin/wiki?BuilderPattern. +

    + This class is NOT thread safe. See CLI-209

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    $Id: OptionBuilder.java 1677400 2015-05-03 13:46:08Z britter $
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        withLongOpt

        +
        public static OptionBuilder withLongOpt(String newLongopt)
        +
        Deprecated. 
        +
        The next Option created will have the following long option value.
        +
        +
        Parameters:
        +
        newLongopt - the long option value
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        hasArg

        +
        public static OptionBuilder hasArg()
        +
        Deprecated. 
        +
        The next Option created will require an argument value.
        +
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        hasArg

        +
        public static OptionBuilder hasArg(boolean hasArg)
        +
        Deprecated. 
        +
        The next Option created will require an argument value if + hasArg is true.
        +
        +
        Parameters:
        +
        hasArg - if true then the Option has an argument value
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        withArgName

        +
        public static OptionBuilder withArgName(String name)
        +
        Deprecated. 
        +
        The next Option created will have the specified argument value name.
        +
        +
        Parameters:
        +
        name - the name for the argument value
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        isRequired

        +
        public static OptionBuilder isRequired()
        +
        Deprecated. 
        +
        The next Option created will be required.
        +
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        withValueSeparator

        +
        public static OptionBuilder withValueSeparator(char sep)
        +
        Deprecated. 
        +
        The next Option created uses sep as a means to + separate argument values. +

        + Example: +

        + Option opt = OptionBuilder.withValueSeparator('=')
        +                           .create('D');
        +
        + String args = "-Dkey=value";
        + CommandLine line = parser.parse(args);
        + String propertyName = opt.getValue(0);  // will be "key"
        + String propertyValue = opt.getValue(1); // will be "value"
        + 
        +
        +
        Parameters:
        +
        sep - The value separator to be used for the argument values.
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        withValueSeparator

        +
        public static OptionBuilder withValueSeparator()
        +
        Deprecated. 
        +
        The next Option created uses '=' as a means to + separate argument values. + + Example: +
        + Option opt = OptionBuilder.withValueSeparator()
        +                           .create('D');
        +
        + CommandLine line = parser.parse(args);
        + String propertyName = opt.getValue(0);
        + String propertyValue = opt.getValue(1);
        + 
        +
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        isRequired

        +
        public static OptionBuilder isRequired(boolean newRequired)
        +
        Deprecated. 
        +
        The next Option created will be required if required + is true.
        +
        +
        Parameters:
        +
        newRequired - if true then the Option is required
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        hasArgs

        +
        public static OptionBuilder hasArgs()
        +
        Deprecated. 
        +
        The next Option created can have unlimited argument values.
        +
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        hasArgs

        +
        public static OptionBuilder hasArgs(int num)
        +
        Deprecated. 
        +
        The next Option created can have num argument values.
        +
        +
        Parameters:
        +
        num - the number of args that the option can have
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        hasOptionalArg

        +
        public static OptionBuilder hasOptionalArg()
        +
        Deprecated. 
        +
        The next Option can have an optional argument.
        +
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        hasOptionalArgs

        +
        public static OptionBuilder hasOptionalArgs()
        +
        Deprecated. 
        +
        The next Option can have an unlimited number of optional arguments.
        +
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        hasOptionalArgs

        +
        public static OptionBuilder hasOptionalArgs(int numArgs)
        +
        Deprecated. 
        +
        The next Option can have the specified number of optional arguments.
        +
        +
        Parameters:
        +
        numArgs - - the maximum number of optional arguments + the next Option created can have.
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        withType

        +
        @Deprecated
        +public static OptionBuilder withType(Object newType)
        +
        Deprecated. since 1.3, use withType(Class) instead
        +
        The next Option created will have a value that will be an instance + of type. +

        + Note: this method is kept for binary compatibility and the + input type is supposed to be a Class object.

        +
        +
        Parameters:
        +
        newType - the type of the Options argument value
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        withType

        +
        public static OptionBuilder withType(Class<?> newType)
        +
        Deprecated. 
        +
        The next Option created will have a value that will be an instance + of type.
        +
        +
        Parameters:
        +
        newType - the type of the Options argument value
        +
        Returns:
        +
        the OptionBuilder instance
        +
        Since:
        +
        1.3
        +
        +
      • +
      + + + +
        +
      • +

        withDescription

        +
        public static OptionBuilder withDescription(String newDescription)
        +
        Deprecated. 
        +
        The next Option created will have the specified description
        +
        +
        Parameters:
        +
        newDescription - a description of the Option's purpose
        +
        Returns:
        +
        the OptionBuilder instance
        +
        +
      • +
      + + + +
        +
      • +

        create

        +
        public static Option create(char opt)
        +                     throws IllegalArgumentException
        +
        Deprecated. 
        +
        Create an Option using the current settings and with + the specified Option char.
        +
        +
        Parameters:
        +
        opt - the character representation of the Option
        +
        Returns:
        +
        the Option instance
        +
        Throws:
        +
        IllegalArgumentException - if opt is not + a valid character. See Option.
        +
        +
      • +
      + + + + + + + +
        +
      • +

        create

        +
        public static Option create(String opt)
        +                     throws IllegalArgumentException
        +
        Deprecated. 
        +
        Create an Option using the current settings and with + the specified Option char.
        +
        +
        Parameters:
        +
        opt - the java.lang.String representation + of the Option
        +
        Returns:
        +
        the Option instance
        +
        Throws:
        +
        IllegalArgumentException - if opt is not + a valid character. See Option.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/OptionGroup.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/OptionGroup.html new file mode 100755 index 0000000..c89617a --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/OptionGroup.html @@ -0,0 +1,426 @@ + + + + + + +OptionGroup (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class OptionGroup

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class OptionGroup
    +extends Object
    +implements Serializable
    +
    A group of mutually exclusive options.
    +
    +
    Version:
    +
    $Id: OptionGroup.java 1749596 2016-06-21 20:27:06Z britter $
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        OptionGroup

        +
        public OptionGroup()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        addOption

        +
        public OptionGroup addOption(Option option)
        +
        Add the specified Option to this group.
        +
        +
        Parameters:
        +
        option - the option to add to this group
        +
        Returns:
        +
        this option group with the option added
        +
        +
      • +
      + + + +
        +
      • +

        getNames

        +
        public Collection<String> getNames()
        +
        +
        Returns:
        +
        the names of the options in this group as a + Collection
        +
        +
      • +
      + + + +
        +
      • +

        getOptions

        +
        public Collection<Option> getOptions()
        +
        +
        Returns:
        +
        the options in this group as a Collection
        +
        +
      • +
      + + + +
        +
      • +

        setSelected

        +
        public void setSelected(Option option)
        +                 throws AlreadySelectedException
        +
        Set the selected option of this group to name.
        +
        +
        Parameters:
        +
        option - the option that is selected
        +
        Throws:
        +
        AlreadySelectedException - if an option from this group has + already been selected.
        +
        +
      • +
      + + + +
        +
      • +

        getSelected

        +
        public String getSelected()
        +
        +
        Returns:
        +
        the selected option name
        +
        +
      • +
      + + + +
        +
      • +

        setRequired

        +
        public void setRequired(boolean required)
        +
        +
        Parameters:
        +
        required - specifies if this group is required
        +
        +
      • +
      + + + +
        +
      • +

        isRequired

        +
        public boolean isRequired()
        +
        Returns whether this option group is required.
        +
        +
        Returns:
        +
        whether this option group is required
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public String toString()
        +
        Returns the stringified version of this OptionGroup.
        +
        +
        Overrides:
        +
        toString in class Object
        +
        Returns:
        +
        the stringified representation of this group
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Options.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Options.html new file mode 100755 index 0000000..ee94f89 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Options.html @@ -0,0 +1,668 @@ + + + + + + +Options (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class Options

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    +
    public class Options
    +extends Object
    +implements Serializable
    +
    Main entry-point into the library. +

    + Options represents a collection of Option objects, which + describe the possible options for a command-line. +

    + It may flexibly parse long and short options, with or without + values. Additionally, it may parse only a portion of a commandline, + allowing for flexible multi-stage parsing.

    +
    +
    Version:
    +
    $Id: Options.java 1754332 2016-07-27 18:47:57Z britter $
    +
    See Also:
    +
    CommandLine, +Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Options

        +
        public Options()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        addOptionGroup

        +
        public Options addOptionGroup(OptionGroup group)
        +
        Add the specified option group.
        +
        +
        Parameters:
        +
        group - the OptionGroup that is to be added
        +
        Returns:
        +
        the resulting Options instance
        +
        +
      • +
      + + + +
        +
      • +

        addOption

        +
        public Options addOption(String opt,
        +                         String description)
        +
        Add an option that only contains a short name. + +

        + The option does not take an argument. +

        +
        +
        Parameters:
        +
        opt - Short single-character name of the option.
        +
        description - Self-documenting description
        +
        Returns:
        +
        the resulting Options instance
        +
        Since:
        +
        1.3
        +
        +
      • +
      + + + +
        +
      • +

        addOption

        +
        public Options addOption(String opt,
        +                         boolean hasArg,
        +                         String description)
        +
        Add an option that only contains a short-name. + +

        + It may be specified as requiring an argument. +

        +
        +
        Parameters:
        +
        opt - Short single-character name of the option.
        +
        hasArg - flag signally if an argument is required after this option
        +
        description - Self-documenting description
        +
        Returns:
        +
        the resulting Options instance
        +
        +
      • +
      + + + +
        +
      • +

        addOption

        +
        public Options addOption(String opt,
        +                         String longOpt,
        +                         boolean hasArg,
        +                         String description)
        +
        Add an option that contains a short-name and a long-name. + +

        + It may be specified as requiring an argument. +

        +
        +
        Parameters:
        +
        opt - Short single-character name of the option.
        +
        longOpt - Long multi-character name of the option.
        +
        hasArg - flag signally if an argument is required after this option
        +
        description - Self-documenting description
        +
        Returns:
        +
        the resulting Options instance
        +
        +
      • +
      + + + +
        +
      • +

        addRequiredOption

        +
        public Options addRequiredOption(String opt,
        +                                 String longOpt,
        +                                 boolean hasArg,
        +                                 String description)
        +
        Add an option that contains a short-name and a long-name. + +

        + The added option is set as required. It may be specified as requiring an argument. This method is a shortcut for: +

        + +
        + 
        + Options option = new Option(opt, longOpt, hasArg, description);
        + option.setRequired(true);
        + options.add(option);
        + 
        + 
        +
        +
        Parameters:
        +
        opt - Short single-character name of the option.
        +
        longOpt - Long multi-character name of the option.
        +
        hasArg - flag signally if an argument is required after this option
        +
        description - Self-documenting description
        +
        Returns:
        +
        the resulting Options instance
        +
        Since:
        +
        1.4
        +
        +
      • +
      + + + +
        +
      • +

        addOption

        +
        public Options addOption(Option opt)
        +
        Adds an option instance
        +
        +
        Parameters:
        +
        opt - the option that is to be added
        +
        Returns:
        +
        the resulting Options instance
        +
        +
      • +
      + + + +
        +
      • +

        getOptions

        +
        public Collection<Option> getOptions()
        +
        Retrieve a read-only list of options in this set
        +
        +
        Returns:
        +
        read-only Collection of Option objects in this descriptor
        +
        +
      • +
      + + + +
        +
      • +

        getRequiredOptions

        +
        public List getRequiredOptions()
        +
        Returns the required options.
        +
        +
        Returns:
        +
        read-only List of required options
        +
        +
      • +
      + + + +
        +
      • +

        getOption

        +
        public Option getOption(String opt)
        +
        Retrieve the Option matching the long or short name specified. + +

        + The leading hyphens in the name are ignored (up to 2). +

        +
        +
        Parameters:
        +
        opt - short or long name of the Option
        +
        Returns:
        +
        the option represented by opt
        +
        +
      • +
      + + + +
        +
      • +

        getMatchingOptions

        +
        public List<String> getMatchingOptions(String opt)
        +
        Returns the options with a long name starting with the name specified.
        +
        +
        Parameters:
        +
        opt - the partial name of the option
        +
        Returns:
        +
        the options matching the partial name specified, or an empty list if none matches
        +
        Since:
        +
        1.3
        +
        +
      • +
      + + + +
        +
      • +

        hasOption

        +
        public boolean hasOption(String opt)
        +
        Returns whether the named Option is a member of this Options.
        +
        +
        Parameters:
        +
        opt - short or long name of the Option
        +
        Returns:
        +
        true if the named Option is a member of this Options
        +
        +
      • +
      + + + +
        +
      • +

        hasLongOption

        +
        public boolean hasLongOption(String opt)
        +
        Returns whether the named Option is a member of this Options.
        +
        +
        Parameters:
        +
        opt - long name of the Option
        +
        Returns:
        +
        true if the named Option is a member of this Options
        +
        Since:
        +
        1.3
        +
        +
      • +
      + + + +
        +
      • +

        hasShortOption

        +
        public boolean hasShortOption(String opt)
        +
        Returns whether the named Option is a member of this Options.
        +
        +
        Parameters:
        +
        opt - short name of the Option
        +
        Returns:
        +
        true if the named Option is a member of this Options
        +
        Since:
        +
        1.3
        +
        +
      • +
      + + + +
        +
      • +

        getOptionGroup

        +
        public OptionGroup getOptionGroup(Option opt)
        +
        Returns the OptionGroup the opt belongs to.
        +
        +
        Parameters:
        +
        opt - the option whose OptionGroup is being queried.
        +
        Returns:
        +
        the OptionGroup if opt is part of an OptionGroup, otherwise return null
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public String toString()
        +
        Dump state, suitable for debugging.
        +
        +
        Overrides:
        +
        toString in class Object
        +
        Returns:
        +
        Stringified form of this object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/ParseException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/ParseException.html new file mode 100755 index 0000000..17f2db9 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/ParseException.html @@ -0,0 +1,277 @@ + + + + + + +ParseException (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class ParseException

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ParseException

        +
        public ParseException(String message)
        +
        Construct a new ParseException + with the specified detail message.
        +
        +
        Parameters:
        +
        message - the detail message
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Parser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Parser.html new file mode 100755 index 0000000..2ed4566 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/Parser.html @@ -0,0 +1,673 @@ + + + + + + +Parser (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class Parser

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        cmd

        +
        protected CommandLine cmd
        +
        Deprecated. 
        +
        commandline instance
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Parser

        +
        public Parser()
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setOptions

        +
        protected void setOptions(Options options)
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        getOptions

        +
        protected Options getOptions()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        getRequiredOptions

        +
        protected List getRequiredOptions()
        +
        Deprecated. 
        +
      • +
      + + + +
        +
      • +

        flatten

        +
        protected abstract String[] flatten(Options opts,
        +                                    String[] arguments,
        +                                    boolean stopAtNonOption)
        +                             throws ParseException
        +
        Deprecated. 
        +
        Subclasses must implement this method to reduce + the arguments that have been passed to the parse method.
        +
        +
        Parameters:
        +
        opts - The Options to parse the arguments by.
        +
        arguments - The arguments that have to be flattened.
        +
        stopAtNonOption - specifies whether to stop + flattening when a non option has been encountered
        +
        Returns:
        +
        a String array of the flattened arguments
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public CommandLine parse(Options options,
        +                         String[] arguments)
        +                  throws ParseException
        +
        Deprecated. 
        +
        Parses the specified arguments based + on the specified Options.
        +
        +
        Specified by:
        +
        parse in interface CommandLineParser
        +
        Parameters:
        +
        options - the Options
        +
        arguments - the arguments
        +
        Returns:
        +
        the CommandLine
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public CommandLine parse(Options options,
        +                         String[] arguments,
        +                         Properties properties)
        +                  throws ParseException
        +
        Deprecated. 
        +
        Parse the arguments according to the specified options and properties.
        +
        +
        Parameters:
        +
        options - the specified Options
        +
        arguments - the command line arguments
        +
        properties - command line option name-value pairs
        +
        Returns:
        +
        the list of atomic option and value tokens
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        Since:
        +
        1.1
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public CommandLine parse(Options options,
        +                         String[] arguments,
        +                         boolean stopAtNonOption)
        +                  throws ParseException
        +
        Deprecated. 
        +
        Parses the specified arguments + based on the specified Options.
        +
        +
        Specified by:
        +
        parse in interface CommandLineParser
        +
        Parameters:
        +
        options - the Options
        +
        arguments - the arguments
        +
        stopAtNonOption - if true an unrecognized argument stops + the parsing and the remaining arguments are added to the + CommandLines args list. If false an unrecognized + argument triggers a ParseException.
        +
        Returns:
        +
        the CommandLine
        +
        Throws:
        +
        ParseException - if an error occurs when parsing the arguments.
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public CommandLine parse(Options options,
        +                         String[] arguments,
        +                         Properties properties,
        +                         boolean stopAtNonOption)
        +                  throws ParseException
        +
        Deprecated. 
        +
        Parse the arguments according to the specified options and + properties.
        +
        +
        Parameters:
        +
        options - the specified Options
        +
        arguments - the command line arguments
        +
        properties - command line option name-value pairs
        +
        stopAtNonOption - if true an unrecognized argument stops + the parsing and the remaining arguments are added to the + CommandLines args list. If false an unrecognized + argument triggers a ParseException.
        +
        Returns:
        +
        the list of atomic option and value tokens
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        Since:
        +
        1.1
        +
        +
      • +
      + + + +
        +
      • +

        processProperties

        +
        protected void processProperties(Properties properties)
        +                          throws ParseException
        +
        Deprecated. 
        +
        Sets the values of Options using the values in properties.
        +
        +
        Parameters:
        +
        properties - The value properties to be processed.
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while processing the properties.
        +
        +
      • +
      + + + + + + + +
        +
      • +

        processArgs

        +
        public void processArgs(Option opt,
        +                        ListIterator<String> iter)
        +                 throws ParseException
        +
        Deprecated. 
        +
        Process the argument values for the specified Option + opt using the values retrieved from the + specified iterator iter.
        +
        +
        Parameters:
        +
        opt - The current Option
        +
        iter - The iterator over the flattened command line Options.
        +
        Throws:
        +
        ParseException - if an argument value is required + and it is has not been found.
        +
        +
      • +
      + + + +
        +
      • +

        processOption

        +
        protected void processOption(String arg,
        +                             ListIterator<String> iter)
        +                      throws ParseException
        +
        Deprecated. 
        +
        Process the Option specified by arg using the values + retrieved from the specified iterator iter.
        +
        +
        Parameters:
        +
        arg - The String value representing an Option
        +
        iter - The iterator over the flattened command line arguments.
        +
        Throws:
        +
        ParseException - if arg does not represent an Option
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/PatternOptionBuilder.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/PatternOptionBuilder.html new file mode 100755 index 0000000..325313e --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/PatternOptionBuilder.html @@ -0,0 +1,523 @@ + + + + + + +PatternOptionBuilder (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class PatternOptionBuilder

+
+
+ +
+
    +
  • +
    +
    +
    public class PatternOptionBuilder
    +extends Object
    +

    Allows Options to be created from a single String. + The pattern contains various single character flags and via + an optional punctuation character, their expected type. +

    + + + + + + + + + + +
    Overview of PatternOptionBuilder patterns
    a-a flag
    b@-b [classname]
    c>-c [filename]
    d+-d [classname] (creates object via empty constructor)
    e%-e [number] (creates Double/Long instance depending on existing of a '.')
    f/-f [url]
    g:-g [string]
    + +

    + For example, the following allows command line flags of '-v -p string-value -f /dir/file'. + The exclamation mark precede a mandatory option. +

    + +
    +     Options options = PatternOptionBuilder.parsePattern("vp:!f/");
    + 
    + +

    + TODO: These need to break out to OptionType and also to be pluggable. +

    +
    +
    Version:
    +
    $Id: PatternOptionBuilder.java 1677406 2015-05-03 14:27:31Z britter $
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        STRING_VALUE

        +
        public static final Class<String> STRING_VALUE
        +
        String class
        +
      • +
      + + + +
        +
      • +

        OBJECT_VALUE

        +
        public static final Class<Object> OBJECT_VALUE
        +
        Object class
        +
      • +
      + + + +
        +
      • +

        NUMBER_VALUE

        +
        public static final Class<Number> NUMBER_VALUE
        +
        Number class
        +
      • +
      + + + +
        +
      • +

        DATE_VALUE

        +
        public static final Class<Date> DATE_VALUE
        +
        Date class
        +
      • +
      + + + +
        +
      • +

        CLASS_VALUE

        +
        public static final Class<?> CLASS_VALUE
        +
        Class class
        +
      • +
      + + + +
        +
      • +

        EXISTING_FILE_VALUE

        +
        public static final Class<FileInputStream> EXISTING_FILE_VALUE
        +
        FileInputStream class
        +
      • +
      + + + +
        +
      • +

        FILE_VALUE

        +
        public static final Class<File> FILE_VALUE
        +
        File class
        +
      • +
      + + + +
        +
      • +

        FILES_VALUE

        +
        public static final Class<File[]> FILES_VALUE
        +
        File array class
        +
      • +
      + + + +
        +
      • +

        URL_VALUE

        +
        public static final Class<URL> URL_VALUE
        +
        URL class
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PatternOptionBuilder

        +
        public PatternOptionBuilder()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getValueClass

        +
        public static Object getValueClass(char ch)
        +
        Retrieve the class that ch represents.
        +
        +
        Parameters:
        +
        ch - the specified character
        +
        Returns:
        +
        The class that ch represents
        +
        +
      • +
      + + + +
        +
      • +

        isValueCode

        +
        public static boolean isValueCode(char ch)
        +
        Returns whether ch is a value code, i.e. + whether it represents a class in a pattern.
        +
        +
        Parameters:
        +
        ch - the specified character
        +
        Returns:
        +
        true if ch is a value code, otherwise false.
        +
        +
      • +
      + + + +
        +
      • +

        parsePattern

        +
        public static Options parsePattern(String pattern)
        +
        Returns the Options instance represented by pattern.
        +
        +
        Parameters:
        +
        pattern - the pattern string
        +
        Returns:
        +
        The Options instance
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/PosixParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/PosixParser.html new file mode 100755 index 0000000..13bf8db --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/PosixParser.html @@ -0,0 +1,413 @@ + + + + + + +PosixParser (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class PosixParser

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    CommandLineParser
    +
    +
    +
    Deprecated.  +
    since 1.3, use the DefaultParser instead
    +
    +
    +
    @Deprecated
    +public class PosixParser
    +extends Parser
    +
    The class PosixParser provides an implementation of the + flatten method.
    +
    +
    Version:
    +
    $Id: PosixParser.java 1783175 2017-02-16 07:52:05Z britter $
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PosixParser

        +
        public PosixParser()
        +
        Deprecated. 
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        flatten

        +
        protected String[] flatten(Options options,
        +                           String[] arguments,
        +                           boolean stopAtNonOption)
        +                    throws ParseException
        +
        Deprecated. 
        +

        An implementation of Parser's abstract + flatten method.

        + +

        The following are the rules used by this flatten method.

        +
          +
        1. if stopAtNonOption is true then do not + burst anymore of arguments entries, just add each + successive entry without further processing. Otherwise, ignore + stopAtNonOption.
        2. +
        3. if the current arguments entry is "--" + just add the entry to the list of processed tokens
        4. +
        5. if the current arguments entry is "-" + just add the entry to the list of processed tokens
        6. +
        7. if the current arguments entry is two characters + in length and the first character is "-" then check if this + is a valid Option id. If it is a valid id, then add the + entry to the list of processed tokens and set the current Option + member. If it is not a valid id and stopAtNonOption + is true, then the remaining entries are copied to the list of + processed tokens. Otherwise, the current entry is ignored.
        8. +
        9. if the current arguments entry is more than two + characters in length and the first character is "-" then + we need to burst the entry to determine its constituents. For more + information on the bursting algorithm see + burstToken.
        10. +
        11. if the current arguments entry is not handled + by any of the previous rules, then the entry is added to the list + of processed tokens.
        12. +
        +
        +
        Specified by:
        +
        flatten in class Parser
        +
        Parameters:
        +
        options - The command line Options
        +
        arguments - The command line arguments to be parsed
        +
        stopAtNonOption - Specifies whether to stop flattening + when an non option is found.
        +
        Returns:
        +
        The flattened arguments String array.
        +
        Throws:
        +
        ParseException - if there are any problems encountered + while parsing the command line tokens.
        +
        +
      • +
      + + + +
        +
      • +

        burstToken

        +
        protected void burstToken(String token,
        +                          boolean stopAtNonOption)
        +
        Deprecated. 
        +
        Breaks token into its constituent parts + using the following algorithm. + +
          +
        • ignore the first character ("-")
        • +
        • for each remaining character check if an Option + exists with that id.
        • +
        • if an Option does exist then add that character + prepended with "-" to the list of processed tokens.
        • +
        • if the Option can have an argument value and there + are remaining characters in the token then add the remaining + characters as a token to the list of processed tokens.
        • +
        • if an Option does NOT exist AND + stopAtNonOption IS set then add the special token + "--" followed by the remaining characters and also + the remaining tokens directly to the processed tokens list.
        • +
        • if an Option does NOT exist AND + stopAtNonOption IS NOT set then add that + character prepended with "-".
        • +
        +
        +
        Parameters:
        +
        token - The current token to be burst
        +
        stopAtNonOption - Specifies whether to stop processing + at the first non-Option encountered.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/TypeHandler.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/TypeHandler.html new file mode 100755 index 0000000..bc23cb7 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/TypeHandler.html @@ -0,0 +1,505 @@ + + + + + + +TypeHandler (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class TypeHandler

+
+
+ +
+
    +
  • +
    +
    +
    public class TypeHandler
    +extends Object
    +
    This is a temporary implementation. TypeHandler will handle the + pluggableness of OptionTypes and it will direct all of these types + of conversion functionalities to ConvertUtils component in Commons + already. BeanUtils I think.
    +
    +
    Version:
    +
    $Id: TypeHandler.java 1677452 2015-05-03 17:10:00Z ggregory $
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        TypeHandler

        +
        public TypeHandler()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        createValue

        +
        public static Object createValue(String str,
        +                                 Object obj)
        +                          throws ParseException
        +
        Returns the Object of type obj + with the value of str.
        +
        +
        Parameters:
        +
        str - the command line value
        +
        obj - the type of argument
        +
        Returns:
        +
        The instance of obj initialised with + the value of str.
        +
        Throws:
        +
        ParseException - if the value creation for the given object type failed
        +
        +
      • +
      + + + +
        +
      • +

        createValue

        +
        public static Object createValue(String str,
        +                                 Class<?> clazz)
        +                          throws ParseException
        +
        Returns the Object of type clazz + with the value of str.
        +
        +
        Parameters:
        +
        str - the command line value
        +
        clazz - the type of argument
        +
        Returns:
        +
        The instance of clazz initialised with + the value of str.
        +
        Throws:
        +
        ParseException - if the value creation for the given class failed
        +
        +
      • +
      + + + +
        +
      • +

        createObject

        +
        public static Object createObject(String classname)
        +                           throws ParseException
        +
        Create an Object from the classname and empty constructor.
        +
        +
        Parameters:
        +
        classname - the argument value
        +
        Returns:
        +
        the initialised object
        +
        Throws:
        +
        ParseException - if the class could not be found or the object could not be created
        +
        +
      • +
      + + + +
        +
      • +

        createNumber

        +
        public static Number createNumber(String str)
        +                           throws ParseException
        +
        Create a number from a String. If a . is present, it creates a + Double, otherwise a Long.
        +
        +
        Parameters:
        +
        str - the value
        +
        Returns:
        +
        the number represented by str
        +
        Throws:
        +
        ParseException - if str is not a number
        +
        +
      • +
      + + + +
        +
      • +

        createClass

        +
        public static Class<?> createClass(String classname)
        +                            throws ParseException
        +
        Returns the class whose name is classname.
        +
        +
        Parameters:
        +
        classname - the class name
        +
        Returns:
        +
        The class if it is found
        +
        Throws:
        +
        ParseException - if the class could not be found
        +
        +
      • +
      + + + +
        +
      • +

        createDate

        +
        public static Date createDate(String str)
        +
        Returns the date represented by str. +

        + This method is not yet implemented and always throws an + UnsupportedOperationException.

        +
        +
        Parameters:
        +
        str - the date string
        +
        Returns:
        +
        The date if str is a valid date string, + otherwise return null.
        +
        Throws:
        +
        UnsupportedOperationException - always
        +
        +
      • +
      + + + +
        +
      • +

        createURL

        +
        public static URL createURL(String str)
        +                     throws ParseException
        +
        Returns the URL represented by str.
        +
        +
        Parameters:
        +
        str - the URL string
        +
        Returns:
        +
        The URL in str is well-formed
        +
        Throws:
        +
        ParseException - if the URL in str is not well-formed
        +
        +
      • +
      + + + +
        +
      • +

        createFile

        +
        public static File createFile(String str)
        +
        Returns the File represented by str.
        +
        +
        Parameters:
        +
        str - the File location
        +
        Returns:
        +
        The file represented by str.
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/UnrecognizedOptionException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/UnrecognizedOptionException.html new file mode 100755 index 0000000..885b5bc --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/UnrecognizedOptionException.html @@ -0,0 +1,352 @@ + + + + + + +UnrecognizedOptionException (Apache Commons CLI 1.4 API) + + + + + + + + + + + +
+
org.apache.commons.cli
+

Class UnrecognizedOptionException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    Direct Known Subclasses:
    +
    AmbiguousOptionException
    +
    +
    +
    +
    public class UnrecognizedOptionException
    +extends ParseException
    +
    Exception thrown during parsing signalling an unrecognized + option was seen.
    +
    +
    Version:
    +
    $Id: UnrecognizedOptionException.java 1443102 2013-02-06 18:12:16Z tn $
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UnrecognizedOptionException

        +
        public UnrecognizedOptionException(String message)
        +
        Construct a new UnrecognizedArgumentException + with the specified detail message.
        +
        +
        Parameters:
        +
        message - the detail message
        +
        +
      • +
      + + + +
        +
      • +

        UnrecognizedOptionException

        +
        public UnrecognizedOptionException(String message,
        +                                   String option)
        +
        Construct a new UnrecognizedArgumentException + with the specified option and detail message.
        +
        +
        Parameters:
        +
        message - the detail message
        +
        option - the unrecognized option
        +
        Since:
        +
        1.2
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getOption

        +
        public String getOption()
        +
        Returns the unrecognized option.
        +
        +
        Returns:
        +
        the related option
        +
        Since:
        +
        1.2
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/AlreadySelectedException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/AlreadySelectedException.html new file mode 100755 index 0000000..ccd3bca --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/AlreadySelectedException.html @@ -0,0 +1,150 @@ + + + + + + +Uses of Class org.apache.commons.cli.AlreadySelectedException (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.AlreadySelectedException

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/AmbiguousOptionException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/AmbiguousOptionException.html new file mode 100755 index 0000000..2953754 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/AmbiguousOptionException.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class org.apache.commons.cli.AmbiguousOptionException (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.AmbiguousOptionException

+
+
No usage of org.apache.commons.cli.AmbiguousOptionException
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/BasicParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/BasicParser.html new file mode 100755 index 0000000..4197c5e --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/BasicParser.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class org.apache.commons.cli.BasicParser (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.BasicParser

+
+
No usage of org.apache.commons.cli.BasicParser
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLine.Builder.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLine.Builder.html new file mode 100755 index 0000000..dd3f849 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLine.Builder.html @@ -0,0 +1,156 @@ + + + + + + +Uses of Class org.apache.commons.cli.CommandLine.Builder (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.CommandLine.Builder

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLine.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLine.html new file mode 100755 index 0000000..a07350a --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLine.html @@ -0,0 +1,252 @@ + + + + + + +Uses of Class org.apache.commons.cli.CommandLine (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.CommandLine

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLineParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLineParser.html new file mode 100755 index 0000000..dcb07c8 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/CommandLineParser.html @@ -0,0 +1,182 @@ + + + + + + +Uses of Interface org.apache.commons.cli.CommandLineParser (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Interface
org.apache.commons.cli.CommandLineParser

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/DefaultParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/DefaultParser.html new file mode 100755 index 0000000..a6ab947 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/DefaultParser.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class org.apache.commons.cli.DefaultParser (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.DefaultParser

+
+
No usage of org.apache.commons.cli.DefaultParser
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/GnuParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/GnuParser.html new file mode 100755 index 0000000..c3c17b4 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/GnuParser.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class org.apache.commons.cli.GnuParser (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.GnuParser

+
+
No usage of org.apache.commons.cli.GnuParser
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/HelpFormatter.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/HelpFormatter.html new file mode 100755 index 0000000..11d0c9c --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/HelpFormatter.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class org.apache.commons.cli.HelpFormatter (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.HelpFormatter

+
+
No usage of org.apache.commons.cli.HelpFormatter
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/MissingArgumentException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/MissingArgumentException.html new file mode 100755 index 0000000..edb6478 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/MissingArgumentException.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class org.apache.commons.cli.MissingArgumentException (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.MissingArgumentException

+
+
No usage of org.apache.commons.cli.MissingArgumentException
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/MissingOptionException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/MissingOptionException.html new file mode 100755 index 0000000..01afa04 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/MissingOptionException.html @@ -0,0 +1,152 @@ + + + + + + +Uses of Class org.apache.commons.cli.MissingOptionException (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.MissingOptionException

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Option.Builder.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Option.Builder.html new file mode 100755 index 0000000..ab636e1 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Option.Builder.html @@ -0,0 +1,237 @@ + + + + + + +Uses of Class org.apache.commons.cli.Option.Builder (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.Option.Builder

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Option.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Option.html new file mode 100755 index 0000000..0254d6d --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Option.html @@ -0,0 +1,352 @@ + + + + + + +Uses of Class org.apache.commons.cli.Option (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.Option

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/OptionBuilder.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/OptionBuilder.html new file mode 100755 index 0000000..7fafa66 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/OptionBuilder.html @@ -0,0 +1,262 @@ + + + + + + +Uses of Class org.apache.commons.cli.OptionBuilder (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.OptionBuilder

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/OptionGroup.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/OptionGroup.html new file mode 100755 index 0000000..5db4efc --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/OptionGroup.html @@ -0,0 +1,192 @@ + + + + + + +Uses of Class org.apache.commons.cli.OptionGroup (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.OptionGroup

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Options.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Options.html new file mode 100755 index 0000000..20283f0 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Options.html @@ -0,0 +1,479 @@ + + + + + + +Uses of Class org.apache.commons.cli.Options (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.Options

+
+
+
    +
  • +
      +
    • + + +

      Uses of Options in org.apache.commons.cli

      + + + + + + + + + + + + +
      Fields in org.apache.commons.cli declared as Options 
      Modifier and TypeField and Description
      protected OptionsDefaultParser.options +
      The current options.
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods in org.apache.commons.cli that return Options 
      Modifier and TypeMethod and Description
      OptionsOptions.addOption(Option opt) +
      Adds an option instance
      +
      OptionsOptions.addOption(String opt, + boolean hasArg, + String description) +
      Add an option that only contains a short-name.
      +
      OptionsOptions.addOption(String opt, + String description) +
      Add an option that only contains a short name.
      +
      OptionsOptions.addOption(String opt, + String longOpt, + boolean hasArg, + String description) +
      Add an option that contains a short-name and a long-name.
      +
      OptionsOptions.addOptionGroup(OptionGroup group) +
      Add the specified option group.
      +
      OptionsOptions.addRequiredOption(String opt, + String longOpt, + boolean hasArg, + String description) +
      Add an option that contains a short-name and a long-name.
      +
      protected OptionsParser.getOptions() +
      Deprecated. 
      static OptionsPatternOptionBuilder.parsePattern(String pattern) +
      Returns the Options instance represented by pattern.
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods in org.apache.commons.cli with parameters of type Options 
      Modifier and TypeMethod and Description
      protected String[]PosixParser.flatten(Options options, + String[] arguments, + boolean stopAtNonOption) +
      Deprecated. 
      +
      An implementation of Parser's abstract + flatten method.
      +
      protected abstract String[]Parser.flatten(Options opts, + String[] arguments, + boolean stopAtNonOption) +
      Deprecated. 
      +
      Subclasses must implement this method to reduce + the arguments that have been passed to the parse method.
      +
      protected String[]GnuParser.flatten(Options options, + String[] arguments, + boolean stopAtNonOption) +
      Deprecated. 
      +
      This flatten method does so using the following rules: + + If an Option exists for the first character of + the arguments entry AND an Option + does not exist for the whole argument then + add the first character as an option to the processed tokens + list e.g.
      +
      protected String[]BasicParser.flatten(Options options, + String[] arguments, + boolean stopAtNonOption) +
      Deprecated. 
      +
      A simple implementation of Parser's abstract + flatten method.
      +
      CommandLineParser.parse(Options options, + String[] arguments) +
      Deprecated. 
      +
      Parses the specified arguments based + on the specified Options.
      +
      CommandLineDefaultParser.parse(Options options, + String[] arguments) 
      CommandLineCommandLineParser.parse(Options options, + String[] arguments) +
      Parse the arguments according to the specified options.
      +
      CommandLineParser.parse(Options options, + String[] arguments, + boolean stopAtNonOption) +
      Deprecated. 
      +
      Parses the specified arguments + based on the specified Options.
      +
      CommandLineDefaultParser.parse(Options options, + String[] arguments, + boolean stopAtNonOption) 
      CommandLineCommandLineParser.parse(Options options, + String[] arguments, + boolean stopAtNonOption) +
      Parse the arguments according to the specified options.
      +
      CommandLineParser.parse(Options options, + String[] arguments, + Properties properties) +
      Deprecated. 
      +
      Parse the arguments according to the specified options and properties.
      +
      CommandLineDefaultParser.parse(Options options, + String[] arguments, + Properties properties) +
      Parse the arguments according to the specified options and properties.
      +
      CommandLineParser.parse(Options options, + String[] arguments, + Properties properties, + boolean stopAtNonOption) +
      Deprecated. 
      +
      Parse the arguments according to the specified options and + properties.
      +
      CommandLineDefaultParser.parse(Options options, + String[] arguments, + Properties properties, + boolean stopAtNonOption) +
      Parse the arguments according to the specified options and properties.
      +
      voidHelpFormatter.printHelp(int width, + String cmdLineSyntax, + String header, + Options options, + String footer) +
      Print the help for options with the specified + command line syntax.
      +
      voidHelpFormatter.printHelp(int width, + String cmdLineSyntax, + String header, + Options options, + String footer, + boolean autoUsage) +
      Print the help for options with the specified + command line syntax.
      +
      voidHelpFormatter.printHelp(PrintWriter pw, + int width, + String cmdLineSyntax, + String header, + Options options, + int leftPad, + int descPad, + String footer) +
      Print the help for options with the specified + command line syntax.
      +
      voidHelpFormatter.printHelp(PrintWriter pw, + int width, + String cmdLineSyntax, + String header, + Options options, + int leftPad, + int descPad, + String footer, + boolean autoUsage) +
      Print the help for options with the specified + command line syntax.
      +
      voidHelpFormatter.printHelp(String cmdLineSyntax, + Options options) +
      Print the help for options with the specified + command line syntax.
      +
      voidHelpFormatter.printHelp(String cmdLineSyntax, + Options options, + boolean autoUsage) +
      Print the help for options with the specified + command line syntax.
      +
      voidHelpFormatter.printHelp(String cmdLineSyntax, + String header, + Options options, + String footer) +
      Print the help for options with the specified + command line syntax.
      +
      voidHelpFormatter.printHelp(String cmdLineSyntax, + String header, + Options options, + String footer, + boolean autoUsage) +
      Print the help for options with the specified + command line syntax.
      +
      voidHelpFormatter.printOptions(PrintWriter pw, + int width, + Options options, + int leftPad, + int descPad) +
      Print the help for the specified Options to the specified writer, + using the specified width, left padding and description padding.
      +
      voidHelpFormatter.printUsage(PrintWriter pw, + int width, + String app, + Options options) +
      Prints the usage statement for the specified application.
      +
      protected StringBufferHelpFormatter.renderOptions(StringBuffer sb, + int width, + Options options, + int leftPad, + int descPad) +
      Render the specified Options and return the rendered Options + in a StringBuffer.
      +
      protected voidParser.setOptions(Options options) +
      Deprecated. 
      +
    • +
    +
  • +
+
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/ParseException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/ParseException.html new file mode 100755 index 0000000..16cb8e7 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/ParseException.html @@ -0,0 +1,367 @@ + + + + + + +Uses of Class org.apache.commons.cli.ParseException (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.ParseException

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Parser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Parser.html new file mode 100755 index 0000000..e0082b8 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/Parser.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Class org.apache.commons.cli.Parser (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.Parser

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/PatternOptionBuilder.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/PatternOptionBuilder.html new file mode 100755 index 0000000..927eeb6 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/PatternOptionBuilder.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class org.apache.commons.cli.PatternOptionBuilder (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.PatternOptionBuilder

+
+
No usage of org.apache.commons.cli.PatternOptionBuilder
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/PosixParser.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/PosixParser.html new file mode 100755 index 0000000..6ead563 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/PosixParser.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class org.apache.commons.cli.PosixParser (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.PosixParser

+
+
No usage of org.apache.commons.cli.PosixParser
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/TypeHandler.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/TypeHandler.html new file mode 100755 index 0000000..8d9090d --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/TypeHandler.html @@ -0,0 +1,123 @@ + + + + + + +Uses of Class org.apache.commons.cli.TypeHandler (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.TypeHandler

+
+
No usage of org.apache.commons.cli.TypeHandler
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/UnrecognizedOptionException.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/UnrecognizedOptionException.html new file mode 100755 index 0000000..b3600b0 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/class-use/UnrecognizedOptionException.html @@ -0,0 +1,150 @@ + + + + + + +Uses of Class org.apache.commons.cli.UnrecognizedOptionException (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Class
org.apache.commons.cli.UnrecognizedOptionException

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-frame.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-frame.html new file mode 100755 index 0000000..24b6d66 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-frame.html @@ -0,0 +1,47 @@ + + + + + + +org.apache.commons.cli (Apache Commons CLI 1.4 API) + + + + +

org.apache.commons.cli

+ + + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-summary.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-summary.html new file mode 100755 index 0000000..682f201 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-summary.html @@ -0,0 +1,311 @@ + + + + + + +org.apache.commons.cli (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Package org.apache.commons.cli

+
+
Commons CLI 1.3
+
+

See: Description

+
+
+
    +
  • + + + + + + + + + + + + +
    Interface Summary 
    InterfaceDescription
    CommandLineParser +
    A class that implements the CommandLineParser interface + can parse a String array according to the Options specified + and return a CommandLine.
    +
    +
  • +
  • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    BasicParserDeprecated +
    since 1.3, use the DefaultParser instead
    +
    CommandLine +
    Represents list of arguments parsed against a Options descriptor.
    +
    CommandLine.Builder +
    A nested builder class to create CommandLine instance + using descriptive methods.
    +
    DefaultParser +
    Default parser.
    +
    GnuParserDeprecated +
    since 1.3, use the DefaultParser instead
    +
    HelpFormatter +
    A formatter of help messages for command line options.
    +
    Option +
    Describes a single command-line option.
    +
    Option.Builder +
    A nested builder class to create Option instances + using descriptive methods.
    +
    OptionBuilderDeprecated +
    since 1.3, use Option.builder(String) instead
    +
    OptionGroup +
    A group of mutually exclusive options.
    +
    Options +
    Main entry-point into the library.
    +
    ParserDeprecated +
    since 1.3, the two-pass parsing with the flatten method is not enough flexible to handle complex cases
    +
    PatternOptionBuilder +
    Allows Options to be created from a single String.
    +
    PosixParserDeprecated +
    since 1.3, use the DefaultParser instead
    +
    TypeHandler +
    This is a temporary implementation.
    +
    +
  • +
  • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Exception Summary 
    ExceptionDescription
    AlreadySelectedException +
    Thrown when more than one option in an option group + has been provided.
    +
    AmbiguousOptionException +
    Exception thrown when an option can't be identified from a partial name.
    +
    MissingArgumentException +
    Thrown when an option requiring an argument + is not provided with an argument.
    +
    MissingOptionException +
    Thrown when a required option has not been provided.
    +
    ParseException +
    Base for Exceptions thrown during parsing of a command-line.
    +
    UnrecognizedOptionException +
    Exception thrown during parsing signalling an unrecognized + option was seen.
    +
    +
  • +
+ + + +

Package org.apache.commons.cli Description

+
Commons CLI 1.3
+
+
Version:
+
$Id: package-info.java 1443102 2013-02-06 18:12:16Z tn $
+
+
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-tree.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-tree.html new file mode 100755 index 0000000..e890c24 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-tree.html @@ -0,0 +1,173 @@ + + + + + + +org.apache.commons.cli Class Hierarchy (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Hierarchy For Package org.apache.commons.cli

+
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-use.html b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-use.html new file mode 100755 index 0000000..b577cfb --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/org/apache/commons/cli/package-use.html @@ -0,0 +1,213 @@ + + + + + + +Uses of Package org.apache.commons.cli (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Uses of Package
org.apache.commons.cli

+
+
+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/overview-tree.html b/libs/commons-cli-1.4/apidocs/overview-tree.html new file mode 100755 index 0000000..5fb4bb5 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/overview-tree.html @@ -0,0 +1,177 @@ + + + + + + +Class Hierarchy (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/package-list b/libs/commons-cli-1.4/apidocs/package-list new file mode 100755 index 0000000..f8b2a4d --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/package-list @@ -0,0 +1 @@ +org.apache.commons.cli diff --git a/libs/commons-cli-1.4/apidocs/script.js b/libs/commons-cli-1.4/apidocs/script.js new file mode 100755 index 0000000..b346356 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/libs/commons-cli-1.4/apidocs/serialized-form.html b/libs/commons-cli-1.4/apidocs/serialized-form.html new file mode 100755 index 0000000..f6ac00a --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/serialized-form.html @@ -0,0 +1,409 @@ + + + + + + +Serialized Form (Apache Commons CLI 1.4 API) + + + + + + + + + + +
+

Serialized Form

+
+
+
    +
  • +

    Package org.apache.commons.cli

    +
      +
    • + + +

      Class org.apache.commons.cli.AlreadySelectedException extends ParseException implements Serializable

      +
      +
      serialVersionUID:
      +
      3674381532418544760L
      +
      +
        +
      • +

        Serialized Fields

        +
          +
        • +

          group

          +
          OptionGroup group
          +
          The option group selected.
          +
        • +
        • +

          option

          +
          Option option
          +
          The option that triggered the exception.
          +
        • +
        +
      • +
      +
    • +
    • + + +

      Class org.apache.commons.cli.AmbiguousOptionException extends UnrecognizedOptionException implements Serializable

      +
      +
      serialVersionUID:
      +
      5829816121277947229L
      +
      +
        +
      • +

        Serialized Fields

        +
          +
        • +

          matchingOptions

          +
          Collection<E> matchingOptions
          +
          The list of options matching the partial name specified
          +
        • +
        +
      • +
      +
    • +
    • + + +

      Class org.apache.commons.cli.CommandLine extends Object implements Serializable

      +
      +
      serialVersionUID:
      +
      1L
      +
      +
        +
      • +

        Serialized Fields

        +
          +
        • +

          args

          +
          List<E> args
          +
          the unrecognized options/arguments
          +
        • +
        • +

          options

          +
          List<E> options
          +
          the processed options
          +
        • +
        +
      • +
      +
    • +
    • + + +

      Class org.apache.commons.cli.MissingArgumentException extends ParseException implements Serializable

      +
      +
      serialVersionUID:
      +
      -7098538588704965017L
      +
      +
        +
      • +

        Serialized Fields

        +
          +
        • +

          option

          +
          Option option
          +
          The option requiring additional arguments
          +
        • +
        +
      • +
      +
    • +
    • + + +

      Class org.apache.commons.cli.MissingOptionException extends ParseException implements Serializable

      +
      +
      serialVersionUID:
      +
      8161889051578563249L
      +
      +
        +
      • +

        Serialized Fields

        +
          +
        • +

          missingOptions

          +
          List<E> missingOptions
          +
          The list of missing options and groups
          +
        • +
        +
      • +
      +
    • +
    • + + +

      Class org.apache.commons.cli.Option extends Object implements Serializable

      +
      +
      serialVersionUID:
      +
      1L
      +
      +
        +
      • +

        Serialized Fields

        +
          +
        • +

          opt

          +
          String opt
          +
          the name of the option
          +
        • +
        • +

          longOpt

          +
          String longOpt
          +
          the long representation of the option
          +
        • +
        • +

          argName

          +
          String argName
          +
          the name of the argument for this option
          +
        • +
        • +

          description

          +
          String description
          +
          description of the option
          +
        • +
        • +

          required

          +
          boolean required
          +
          specifies whether this option is required to be present
          +
        • +
        • +

          optionalArg

          +
          boolean optionalArg
          +
          specifies whether the argument value of this Option is optional
          +
        • +
        • +

          numberOfArgs

          +
          int numberOfArgs
          +
          the number of argument values this option can have
          +
        • +
        • +

          type

          +
          Class<T> type
          +
          the type of this Option
          +
        • +
        • +

          values

          +
          List<E> values
          +
          the list of argument values
          +
        • +
        • +

          valuesep

          +
          char valuesep
          +
          the character that is the value separator
          +
        • +
        +
      • +
      +
    • +
    • + + +

      Class org.apache.commons.cli.OptionGroup extends Object implements Serializable

      +
      +
      serialVersionUID:
      +
      1L
      +
      +
        +
      • +

        Serialized Fields

        +
          +
        • +

          optionMap

          +
          Map<K,V> optionMap
          +
          hold the options
          +
        • +
        • +

          selected

          +
          String selected
          +
          the name of the selected option
          +
        • +
        • +

          required

          +
          boolean required
          +
          specified whether this group is required
          +
        • +
        +
      • +
      +
    • +
    • + + +

      Class org.apache.commons.cli.Options extends Object implements Serializable

      +
      +
      serialVersionUID:
      +
      1L
      +
      +
        +
      • +

        Serialized Fields

        +
          +
        • +

          shortOpts

          +
          Map<K,V> shortOpts
          +
          a map of the options with the character key
          +
        • +
        • +

          longOpts

          +
          Map<K,V> longOpts
          +
          a map of the options with the long key
          +
        • +
        • +

          requiredOpts

          +
          List<E> requiredOpts
          +
          a map of the required options
          +
        • +
        • +

          optionGroups

          +
          Map<K,V> optionGroups
          +
          a map of the option groups
          +
        • +
        +
      • +
      +
    • +
    • + + +

      Class org.apache.commons.cli.ParseException extends Exception implements Serializable

      +
      +
      serialVersionUID:
      +
      9112808380089253192L
      +
      +
    • +
    • + + +

      Class org.apache.commons.cli.UnrecognizedOptionException extends ParseException implements Serializable

      +
      +
      serialVersionUID:
      +
      -252504690284625623L
      +
      +
        +
      • +

        Serialized Fields

        +
          +
        • +

          option

          +
          String option
          +
          The unrecognized option
          +
        • +
        +
      • +
      +
    • +
    +
  • +
+
+ + + + +

Copyright © 2002–2017 The Apache Software Foundation. All rights reserved.

+ + diff --git a/libs/commons-cli-1.4/apidocs/stylesheet.css b/libs/commons-cli-1.4/apidocs/stylesheet.css new file mode 100755 index 0000000..98055b2 --- /dev/null +++ b/libs/commons-cli-1.4/apidocs/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/libs/commons-cli-1.4/commons-cli-1.4-javadoc.jar b/libs/commons-cli-1.4/commons-cli-1.4-javadoc.jar new file mode 100755 index 0000000000000000000000000000000000000000..6b21f988ce98d4c6bd3fbf125e1e85b911a8672a GIT binary patch literal 179154 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