Modified: 
websites/production/commons/content/proper/commons-cli/xref-test/org/apache/commons/cli/ApplicationTest.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-cli/xref-test/org/apache/commons/cli/ApplicationTest.html
 (original)
+++ 
websites/production/commons/content/proper/commons-cli/xref-test/org/apache/commons/cli/ApplicationTest.html
 Thu Jun  8 17:47:18 2017
@@ -52,8 +52,8 @@
 <a class="jxr_linenumber" name="L44" href="#L44">44</a>      @Test
 <a class="jxr_linenumber" name="L45" href="#L45">45</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testLs() <strong class="jxr_keyword">throws</strong> Exception {
 <a class="jxr_linenumber" name="L46" href="#L46">46</a>          <em 
class="jxr_comment">// create the command line parser</em>
-<a class="jxr_linenumber" name="L47" href="#L47">47</a>          
CommandLineParser parser = <strong class="jxr_keyword">new</strong> 
PosixParser();
-<a class="jxr_linenumber" name="L48" href="#L48">48</a>          Options 
options = <strong class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L47" href="#L47">47</a>          <strong 
class="jxr_keyword">final</strong> CommandLineParser parser = <strong 
class="jxr_keyword">new</strong> PosixParser();
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>          <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
 <a class="jxr_linenumber" name="L49" href="#L49">49</a>          
options.addOption( <span class="jxr_string">"a"</span>, <span 
class="jxr_string">"all"</span>, false, <span class="jxr_string">"do not hide 
entries starting with ."</span> );
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>          
options.addOption( <span class="jxr_string">"A"</span>, <span 
class="jxr_string">"almost-all"</span>, false, <span class="jxr_string">"do not 
list implied . and .."</span> );
 <a class="jxr_linenumber" name="L51" href="#L51">51</a>          
options.addOption( <span class="jxr_string">"b"</span>, <span 
class="jxr_string">"escape"</span>, false, <span class="jxr_string">"print 
octal escapes for nongraphic characters"</span> );
@@ -66,9 +66,9 @@
 <a class="jxr_linenumber" name="L58" href="#L58">58</a>          
options.addOption( <span class="jxr_string">"c"</span>, false, <span 
class="jxr_string">"with -lt: sort by, and show, ctime (time of last 
modification of file status information) with -l:show ctime and sort by name 
otherwise: sort by ctime"</span> );
 <a class="jxr_linenumber" name="L59" href="#L59">59</a>          
options.addOption( <span class="jxr_string">"C"</span>, false, <span 
class="jxr_string">"list entries by columns"</span> );
 <a class="jxr_linenumber" name="L60" href="#L60">60</a>  
-<a class="jxr_linenumber" name="L61" href="#L61">61</a>          String[] args 
= <strong class="jxr_keyword">new</strong> String[]{ <span 
class="jxr_string">"--block-size=10"</span> };
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>          <strong 
class="jxr_keyword">final</strong> String[] args = <strong 
class="jxr_keyword">new</strong> String[]{ <span 
class="jxr_string">"--block-size=10"</span> };
 <a class="jxr_linenumber" name="L62" href="#L62">62</a>  
-<a class="jxr_linenumber" name="L63" href="#L63">63</a>          CommandLine 
line = parser.parse( options, args );
+<a class="jxr_linenumber" name="L63" href="#L63">63</a>          <strong 
class="jxr_keyword">final</strong> CommandLine line = parser.parse( options, 
args );
 <a class="jxr_linenumber" name="L64" href="#L64">64</a>          assertTrue( 
line.hasOption( <span class="jxr_string">"block-size"</span> ) );
 <a class="jxr_linenumber" name="L65" href="#L65">65</a>          assertEquals( 
line.getOptionValue( <span class="jxr_string">"block-size"</span> ), <span 
class="jxr_string">"10"</span> );
 <a class="jxr_linenumber" name="L66" href="#L66">66</a>      }
@@ -79,8 +79,8 @@
 <a class="jxr_linenumber" name="L71" href="#L71">71</a>      @Test
 <a class="jxr_linenumber" name="L72" href="#L72">72</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testAnt() <strong class="jxr_keyword">throws</strong> Exception {
 <a class="jxr_linenumber" name="L73" href="#L73">73</a>          <em 
class="jxr_comment">// use the GNU parser</em>
-<a class="jxr_linenumber" name="L74" href="#L74">74</a>          
CommandLineParser parser = <strong class="jxr_keyword">new</strong> GnuParser( 
);
-<a class="jxr_linenumber" name="L75" href="#L75">75</a>          Options 
options = <strong class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L74" href="#L74">74</a>          <strong 
class="jxr_keyword">final</strong> CommandLineParser parser = <strong 
class="jxr_keyword">new</strong> GnuParser( );
+<a class="jxr_linenumber" name="L75" href="#L75">75</a>          <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
 <a class="jxr_linenumber" name="L76" href="#L76">76</a>          
options.addOption( <span class="jxr_string">"help"</span>, false, <span 
class="jxr_string">"print this message"</span> );
 <a class="jxr_linenumber" name="L77" href="#L77">77</a>          
options.addOption( <span class="jxr_string">"projecthelp"</span>, false, <span 
class="jxr_string">"print project help information"</span> );
 <a class="jxr_linenumber" name="L78" href="#L78">78</a>          
options.addOption( <span class="jxr_string">"version"</span>, false, <span 
class="jxr_string">"print the version information and exit"</span> );
@@ -98,14 +98,14 @@
 <a class="jxr_linenumber" name="L90" href="#L90">90</a>                        
     <em class="jxr_comment">//, null, true, , false, true );</em>
 <a class="jxr_linenumber" name="L91" href="#L91">91</a>          
options.addOption( <span class="jxr_string">"find"</span>, <strong 
class="jxr_keyword">true</strong>, <span class="jxr_string">"search for 
buildfile towards the root of the filesystem and use it"</span> );
 <a class="jxr_linenumber" name="L92" href="#L92">92</a>  
-<a class="jxr_linenumber" name="L93" href="#L93">93</a>          String[] args 
= <strong class="jxr_keyword">new</strong> String[]{ <span 
class="jxr_string">"-buildfile"</span>, <span 
class="jxr_string">"mybuild.xml"</span>,
+<a class="jxr_linenumber" name="L93" href="#L93">93</a>          <strong 
class="jxr_keyword">final</strong> String[] args = <strong 
class="jxr_keyword">new</strong> String[]{ <span 
class="jxr_string">"-buildfile"</span>, <span 
class="jxr_string">"mybuild.xml"</span>,
 <a class="jxr_linenumber" name="L94" href="#L94">94</a>              <span 
class="jxr_string">"-Dproperty=value"</span>, <span 
class="jxr_string">"-Dproperty1=value1"</span>,
 <a class="jxr_linenumber" name="L95" href="#L95">95</a>              <span 
class="jxr_string">"-projecthelp"</span> };
 <a class="jxr_linenumber" name="L96" href="#L96">96</a>  
-<a class="jxr_linenumber" name="L97" href="#L97">97</a>          CommandLine 
line = parser.parse( options, args );
+<a class="jxr_linenumber" name="L97" href="#L97">97</a>          <strong 
class="jxr_keyword">final</strong> CommandLine line = parser.parse( options, 
args );
 <a class="jxr_linenumber" name="L98" href="#L98">98</a>  
 <a class="jxr_linenumber" name="L99" href="#L99">99</a>          <em 
class="jxr_comment">// check multiple values</em>
-<a class="jxr_linenumber" name="L100" href="#L100">100</a>         String[] 
opts = line.getOptionValues( <span class="jxr_string">"D"</span> );
+<a class="jxr_linenumber" name="L100" href="#L100">100</a>         <strong 
class="jxr_keyword">final</strong> String[] opts = line.getOptionValues( <span 
class="jxr_string">"D"</span> );
 <a class="jxr_linenumber" name="L101" href="#L101">101</a>         
assertEquals( <span class="jxr_string">"property"</span>, opts[0] );
 <a class="jxr_linenumber" name="L102" href="#L102">102</a>         
assertEquals( <span class="jxr_string">"value"</span>, opts[1] );
 <a class="jxr_linenumber" name="L103" href="#L103">103</a>         
assertEquals( <span class="jxr_string">"property1"</span>, opts[2] );
@@ -120,7 +120,7 @@
 <a class="jxr_linenumber" name="L112" href="#L112">112</a> 
 <a class="jxr_linenumber" name="L113" href="#L113">113</a>     @Test
 <a class="jxr_linenumber" name="L114" href="#L114">114</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testGroovy() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L115" href="#L115">115</a>         Options 
options = <strong class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L115" href="#L115">115</a>         <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
 <a class="jxr_linenumber" name="L116" href="#L116">116</a> 
 <a class="jxr_linenumber" name="L117" href="#L117">117</a>         
options.addOption(
 <a class="jxr_linenumber" name="L118" href="#L118">118</a>             
OptionBuilder.withLongOpt(<span class="jxr_string">"define"</span>).
@@ -179,8 +179,8 @@
 <a class="jxr_linenumber" name="L171" href="#L171">171</a>             
.withLongOpt(<span class="jxr_string">"autosplit"</span>)
 <a class="jxr_linenumber" name="L172" href="#L172">172</a>             
.create('a'));
 <a class="jxr_linenumber" name="L173" href="#L173">173</a> 
-<a class="jxr_linenumber" name="L174" href="#L174">174</a>         Parser 
parser = <strong class="jxr_keyword">new</strong> PosixParser();
-<a class="jxr_linenumber" name="L175" href="#L175">175</a>         CommandLine 
line = parser.parse(options, <strong class="jxr_keyword">new</strong> String[] 
{ <span class="jxr_string">"-e"</span>, <span class="jxr_string">"println 
'hello'"</span> }, <strong class="jxr_keyword">true</strong>);
+<a class="jxr_linenumber" name="L174" href="#L174">174</a>         <strong 
class="jxr_keyword">final</strong> Parser parser = <strong 
class="jxr_keyword">new</strong> PosixParser();
+<a class="jxr_linenumber" name="L175" href="#L175">175</a>         <strong 
class="jxr_keyword">final</strong> CommandLine line = parser.parse(options, 
<strong class="jxr_keyword">new</strong> String[] { <span 
class="jxr_string">"-e"</span>, <span class="jxr_string">"println 
'hello'"</span> }, <strong class="jxr_keyword">true</strong>);
 <a class="jxr_linenumber" name="L176" href="#L176">176</a> 
 <a class="jxr_linenumber" name="L177" href="#L177">177</a>         
assertTrue(line.hasOption('e'));
 <a class="jxr_linenumber" name="L178" href="#L178">178</a>         
assertEquals(<span class="jxr_string">"println 'hello'"</span>, 
line.getOptionValue('e'));
@@ -192,10 +192,10 @@
 <a class="jxr_linenumber" name="L184" href="#L184">184</a>     @Test
 <a class="jxr_linenumber" name="L185" href="#L185">185</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testMan()
 <a class="jxr_linenumber" name="L186" href="#L186">186</a>     {
-<a class="jxr_linenumber" name="L187" href="#L187">187</a>         String 
cmdLine =
+<a class="jxr_linenumber" name="L187" href="#L187">187</a>         <strong 
class="jxr_keyword">final</strong> String cmdLine =
 <a class="jxr_linenumber" name="L188" href="#L188">188</a>                 
<span class="jxr_string">"man [-c|-f|-k|-w|-tZT device] [-adlhu7V] [-Mpath] 
[-Ppager] [-Slist] "</span> +
 <a class="jxr_linenumber" name="L189" href="#L189">189</a>                     
    <span class="jxr_string">"[-msystem] [-pstring] [-Llocale] [-eextension] 
[section] page ..."</span>;
-<a class="jxr_linenumber" name="L190" href="#L190">190</a>         Options 
options = <strong class="jxr_keyword">new</strong> Options().
+<a class="jxr_linenumber" name="L190" href="#L190">190</a>         <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options().
 <a class="jxr_linenumber" name="L191" href="#L191">191</a>                 
addOption(<span class="jxr_string">"a"</span>, <span 
class="jxr_string">"all"</span>, false, <span class="jxr_string">"find all 
matching manual pages."</span>).
 <a class="jxr_linenumber" name="L192" href="#L192">192</a>                 
addOption(<span class="jxr_string">"d"</span>, <span 
class="jxr_string">"debug"</span>, false, <span class="jxr_string">"emit 
debugging messages."</span>).
 <a class="jxr_linenumber" name="L193" href="#L193">193</a>                 
addOption(<span class="jxr_string">"e"</span>, <span 
class="jxr_string">"extension"</span>, false, <span class="jxr_string">"limit 
search to extension type 'extension'."</span>).
@@ -230,9 +230,9 @@
 <a class="jxr_linenumber" name="L222" href="#L222">222</a>                 
addOption(<span class="jxr_string">"V"</span>, <span 
class="jxr_string">"version"</span>, false, <span class="jxr_string">"show 
version."</span>).
 <a class="jxr_linenumber" name="L223" href="#L223">223</a>                 
addOption(<span class="jxr_string">"h"</span>, <span 
class="jxr_string">"help"</span>, false, <span class="jxr_string">"show this 
usage message."</span>);
 <a class="jxr_linenumber" name="L224" href="#L224">224</a> 
-<a class="jxr_linenumber" name="L225" href="#L225">225</a>         
HelpFormatter hf = <strong class="jxr_keyword">new</strong> HelpFormatter();
+<a class="jxr_linenumber" name="L225" href="#L225">225</a>         <strong 
class="jxr_keyword">final</strong> HelpFormatter hf = <strong 
class="jxr_keyword">new</strong> HelpFormatter();
 <a class="jxr_linenumber" name="L226" href="#L226">226</a>         <strong 
class="jxr_keyword">final</strong> String EOL = System.getProperty(<span 
class="jxr_string">"line.separator"</span>);
-<a class="jxr_linenumber" name="L227" href="#L227">227</a>         
StringWriter out = <strong class="jxr_keyword">new</strong> StringWriter();
+<a class="jxr_linenumber" name="L227" href="#L227">227</a>         <strong 
class="jxr_keyword">final</strong> StringWriter out = <strong 
class="jxr_keyword">new</strong> StringWriter();
 <a class="jxr_linenumber" name="L228" href="#L228">228</a>         
hf.printHelp(<strong class="jxr_keyword">new</strong> PrintWriter(out), 60, 
cmdLine, <strong class="jxr_keyword">null</strong>, options, 
HelpFormatter.DEFAULT_LEFT_PAD, HelpFormatter.DEFAULT_DESC_PAD, <strong 
class="jxr_keyword">null</strong>, false);
 <a class="jxr_linenumber" name="L229" href="#L229">229</a>         
assertEquals(<span class="jxr_string">"usage: man [-c|-f|-k|-w|-tZT device] 
[-adlhu7V] [-Mpath]"</span> + EOL +
 <a class="jxr_linenumber" name="L230" href="#L230">230</a>                     
    <span class="jxr_string">"           [-Ppager] [-Slist] [-msystem] 
[-pstring]"</span> + EOL +
@@ -283,37 +283,37 @@
 <a class="jxr_linenumber" name="L275" href="#L275">275</a> <em 
class="jxr_javadoccomment">     */</em>
 <a class="jxr_linenumber" name="L276" href="#L276">276</a>     @Test
 <a class="jxr_linenumber" name="L277" href="#L277">277</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testNLT() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L278" href="#L278">278</a>         Option help 
= <strong class="jxr_keyword">new</strong> Option(<span 
class="jxr_string">"h"</span>, <span class="jxr_string">"help"</span>, false, 
<span class="jxr_string">"print this message"</span>);
-<a class="jxr_linenumber" name="L279" href="#L279">279</a>         Option 
version = <strong class="jxr_keyword">new</strong> Option(<span 
class="jxr_string">"v"</span>, <span class="jxr_string">"version"</span>, 
false, <span class="jxr_string">"print version information"</span>);
-<a class="jxr_linenumber" name="L280" href="#L280">280</a>         Option 
newRun = <strong class="jxr_keyword">new</strong> Option(<span 
class="jxr_string">"n"</span>, <span class="jxr_string">"new"</span>, false, 
<span class="jxr_string">"Create NLT cache entries only for new items"</span>);
-<a class="jxr_linenumber" name="L281" href="#L281">281</a>         Option 
trackerRun = <strong class="jxr_keyword">new</strong> Option(<span 
class="jxr_string">"t"</span>, <span class="jxr_string">"tracker"</span>, 
false, <span class="jxr_string">"Create NLT cache entries only for tracker 
items"</span>);
+<a class="jxr_linenumber" name="L278" href="#L278">278</a>         <strong 
class="jxr_keyword">final</strong> Option help = <strong 
class="jxr_keyword">new</strong> Option(<span class="jxr_string">"h"</span>, 
<span class="jxr_string">"help"</span>, false, <span class="jxr_string">"print 
this message"</span>);
+<a class="jxr_linenumber" name="L279" href="#L279">279</a>         <strong 
class="jxr_keyword">final</strong> Option version = <strong 
class="jxr_keyword">new</strong> Option(<span class="jxr_string">"v"</span>, 
<span class="jxr_string">"version"</span>, false, <span 
class="jxr_string">"print version information"</span>);
+<a class="jxr_linenumber" name="L280" href="#L280">280</a>         <strong 
class="jxr_keyword">final</strong> Option newRun = <strong 
class="jxr_keyword">new</strong> Option(<span class="jxr_string">"n"</span>, 
<span class="jxr_string">"new"</span>, false, <span class="jxr_string">"Create 
NLT cache entries only for new items"</span>);
+<a class="jxr_linenumber" name="L281" href="#L281">281</a>         <strong 
class="jxr_keyword">final</strong> Option trackerRun = <strong 
class="jxr_keyword">new</strong> Option(<span class="jxr_string">"t"</span>, 
<span class="jxr_string">"tracker"</span>, false, <span 
class="jxr_string">"Create NLT cache entries only for tracker items"</span>);
 <a class="jxr_linenumber" name="L282" href="#L282">282</a> 
-<a class="jxr_linenumber" name="L283" href="#L283">283</a>         Option 
timeLimit = OptionBuilder.withLongOpt(<span 
class="jxr_string">"limit"</span>).hasArg()
+<a class="jxr_linenumber" name="L283" href="#L283">283</a>         <strong 
class="jxr_keyword">final</strong> Option timeLimit = 
OptionBuilder.withLongOpt(<span class="jxr_string">"limit"</span>).hasArg()
 <a class="jxr_linenumber" name="L284" href="#L284">284</a>                     
                    .withValueSeparator()
 <a class="jxr_linenumber" name="L285" href="#L285">285</a>                     
                    .withDescription(<span class="jxr_string">"Set time limit 
for execution, in minutes"</span>)
 <a class="jxr_linenumber" name="L286" href="#L286">286</a>                     
                    .create(<span class="jxr_string">"l"</span>);
 <a class="jxr_linenumber" name="L287" href="#L287">287</a> 
-<a class="jxr_linenumber" name="L288" href="#L288">288</a>         Option age 
= OptionBuilder.withLongOpt(<span class="jxr_string">"age"</span>).hasArg()
+<a class="jxr_linenumber" name="L288" href="#L288">288</a>         <strong 
class="jxr_keyword">final</strong> Option age = OptionBuilder.withLongOpt(<span 
class="jxr_string">"age"</span>).hasArg()
 <a class="jxr_linenumber" name="L289" href="#L289">289</a>                     
              .withValueSeparator()
 <a class="jxr_linenumber" name="L290" href="#L290">290</a>                     
              .withDescription(<span class="jxr_string">"Age (in days) of cache 
item before being recomputed"</span>)
 <a class="jxr_linenumber" name="L291" href="#L291">291</a>                     
              .create(<span class="jxr_string">"a"</span>);
 <a class="jxr_linenumber" name="L292" href="#L292">292</a> 
-<a class="jxr_linenumber" name="L293" href="#L293">293</a>         Option 
server = OptionBuilder.withLongOpt(<span 
class="jxr_string">"server"</span>).hasArg()
+<a class="jxr_linenumber" name="L293" href="#L293">293</a>         <strong 
class="jxr_keyword">final</strong> Option server = 
OptionBuilder.withLongOpt(<span class="jxr_string">"server"</span>).hasArg()
 <a class="jxr_linenumber" name="L294" href="#L294">294</a>                     
                 .withValueSeparator()
 <a class="jxr_linenumber" name="L295" href="#L295">295</a>                     
                 .withDescription(<span class="jxr_string">"The NLT server 
address"</span>)
 <a class="jxr_linenumber" name="L296" href="#L296">296</a>                     
                 .create(<span class="jxr_string">"s"</span>);
 <a class="jxr_linenumber" name="L297" href="#L297">297</a> 
-<a class="jxr_linenumber" name="L298" href="#L298">298</a>         Option 
numResults = OptionBuilder.withLongOpt(<span 
class="jxr_string">"results"</span>).hasArg()
+<a class="jxr_linenumber" name="L298" href="#L298">298</a>         <strong 
class="jxr_keyword">final</strong> Option numResults = 
OptionBuilder.withLongOpt(<span class="jxr_string">"results"</span>).hasArg()
 <a class="jxr_linenumber" name="L299" href="#L299">299</a>                     
                     .withValueSeparator()
 <a class="jxr_linenumber" name="L300" href="#L300">300</a>                     
                     .withDescription(<span class="jxr_string">"Number of 
results per item"</span>)
 <a class="jxr_linenumber" name="L301" href="#L301">301</a>                     
                     .create(<span class="jxr_string">"r"</span>);
 <a class="jxr_linenumber" name="L302" href="#L302">302</a> 
-<a class="jxr_linenumber" name="L303" href="#L303">303</a>         Option 
configFile = OptionBuilder.withLongOpt(<span 
class="jxr_string">"file"</span>).hasArg()
+<a class="jxr_linenumber" name="L303" href="#L303">303</a>         <strong 
class="jxr_keyword">final</strong> Option configFile = 
OptionBuilder.withLongOpt(<span class="jxr_string">"file"</span>).hasArg()
 <a class="jxr_linenumber" name="L304" href="#L304">304</a>                     
                     .withValueSeparator()
 <a class="jxr_linenumber" name="L305" href="#L305">305</a>                     
                     .withDescription(<span class="jxr_string">"Use the 
specified configuration file"</span>)
 <a class="jxr_linenumber" name="L306" href="#L306">306</a>                     
                     .create();
 <a class="jxr_linenumber" name="L307" href="#L307">307</a> 
-<a class="jxr_linenumber" name="L308" href="#L308">308</a>         Options 
options = <strong class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L308" href="#L308">308</a>         <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
 <a class="jxr_linenumber" name="L309" href="#L309">309</a>         
options.addOption(help);
 <a class="jxr_linenumber" name="L310" href="#L310">310</a>         
options.addOption(version);
 <a class="jxr_linenumber" name="L311" href="#L311">311</a>         
options.addOption(newRun);
@@ -325,9 +325,9 @@
 <a class="jxr_linenumber" name="L317" href="#L317">317</a>         
options.addOption(configFile);
 <a class="jxr_linenumber" name="L318" href="#L318">318</a> 
 <a class="jxr_linenumber" name="L319" href="#L319">319</a>         <em 
class="jxr_comment">// create the command line parser</em>
-<a class="jxr_linenumber" name="L320" href="#L320">320</a>         
CommandLineParser parser = <strong class="jxr_keyword">new</strong> 
PosixParser();
+<a class="jxr_linenumber" name="L320" href="#L320">320</a>         <strong 
class="jxr_keyword">final</strong> CommandLineParser parser = <strong 
class="jxr_keyword">new</strong> PosixParser();
 <a class="jxr_linenumber" name="L321" href="#L321">321</a> 
-<a class="jxr_linenumber" name="L322" href="#L322">322</a>         String[] 
args = <strong class="jxr_keyword">new</strong> String[] {
+<a class="jxr_linenumber" name="L322" href="#L322">322</a>         <strong 
class="jxr_keyword">final</strong> String[] args = <strong 
class="jxr_keyword">new</strong> String[] {
 <a class="jxr_linenumber" name="L323" href="#L323">323</a>                 
<span class="jxr_string">"-v"</span>,
 <a class="jxr_linenumber" name="L324" href="#L324">324</a>                 
<span class="jxr_string">"-l"</span>,
 <a class="jxr_linenumber" name="L325" href="#L325">325</a>                 
<span class="jxr_string">"10"</span>,
@@ -337,7 +337,7 @@
 <a class="jxr_linenumber" name="L329" href="#L329">329</a>                 
<span class="jxr_string">"filename"</span>
 <a class="jxr_linenumber" name="L330" href="#L330">330</a>             };
 <a class="jxr_linenumber" name="L331" href="#L331">331</a> 
-<a class="jxr_linenumber" name="L332" href="#L332">332</a>         CommandLine 
line = parser.parse(options, args);
+<a class="jxr_linenumber" name="L332" href="#L332">332</a>         <strong 
class="jxr_keyword">final</strong> CommandLine line = parser.parse(options, 
args);
 <a class="jxr_linenumber" name="L333" href="#L333">333</a>         
assertTrue(line.hasOption(<span class="jxr_string">"v"</span>));
 <a class="jxr_linenumber" name="L334" href="#L334">334</a>         
assertEquals(line.getOptionValue(<span class="jxr_string">"l"</span>), <span 
class="jxr_string">"10"</span>);
 <a class="jxr_linenumber" name="L335" href="#L335">335</a>         
assertEquals(line.getOptionValue(<span class="jxr_string">"limit"</span>), 
<span class="jxr_string">"10"</span>);

Modified: 
websites/production/commons/content/proper/commons-cli/xref-test/org/apache/commons/cli/ArgumentIsOptionTest.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-cli/xref-test/org/apache/commons/cli/ArgumentIsOptionTest.html
 (original)
+++ 
websites/production/commons/content/proper/commons-cli/xref-test/org/apache/commons/cli/ArgumentIsOptionTest.html
 Thu Jun  8 17:47:18 2017
@@ -48,13 +48,13 @@
 <a class="jxr_linenumber" name="L40" href="#L40">40</a>      @Test
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testOptionAndOptionWithArgument() <strong class="jxr_keyword">throws</strong> 
Exception
 <a class="jxr_linenumber" name="L42" href="#L42">42</a>      {
-<a class="jxr_linenumber" name="L43" href="#L43">43</a>          String[] args 
= <strong class="jxr_keyword">new</strong> String[]{
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>          <strong 
class="jxr_keyword">final</strong> String[] args = <strong 
class="jxr_keyword">new</strong> String[]{
 <a class="jxr_linenumber" name="L44" href="#L44">44</a>                  <span 
class="jxr_string">"-p"</span>,
 <a class="jxr_linenumber" name="L45" href="#L45">45</a>                  <span 
class="jxr_string">"-attr"</span>,
 <a class="jxr_linenumber" name="L46" href="#L46">46</a>                  <span 
class="jxr_string">"p"</span>
 <a class="jxr_linenumber" name="L47" href="#L47">47</a>          };
 <a class="jxr_linenumber" name="L48" href="#L48">48</a>  
-<a class="jxr_linenumber" name="L49" href="#L49">49</a>          CommandLine 
cl = parser.parse(options, args);
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>          <strong 
class="jxr_keyword">final</strong> CommandLine cl = parser.parse(options, args);
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>          
assertTrue(<span class="jxr_string">"Confirm -p is set"</span>, 
cl.hasOption(<span class="jxr_string">"p"</span>));
 <a class="jxr_linenumber" name="L51" href="#L51">51</a>          
assertTrue(<span class="jxr_string">"Confirm -attr is set"</span>, 
cl.hasOption(<span class="jxr_string">"attr"</span>));
 <a class="jxr_linenumber" name="L52" href="#L52">52</a>          
assertTrue(<span class="jxr_string">"Confirm arg of -attr"</span>, 
cl.getOptionValue(<span class="jxr_string">"attr"</span>).equals(<span 
class="jxr_string">"p"</span>));
@@ -64,12 +64,12 @@
 <a class="jxr_linenumber" name="L56" href="#L56">56</a>      @Test
 <a class="jxr_linenumber" name="L57" href="#L57">57</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testOptionWithArgument() <strong class="jxr_keyword">throws</strong> Exception
 <a class="jxr_linenumber" name="L58" href="#L58">58</a>      {
-<a class="jxr_linenumber" name="L59" href="#L59">59</a>          String[] args 
= <strong class="jxr_keyword">new</strong> String[]{
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>          <strong 
class="jxr_keyword">final</strong> String[] args = <strong 
class="jxr_keyword">new</strong> String[]{
 <a class="jxr_linenumber" name="L60" href="#L60">60</a>                  <span 
class="jxr_string">"-attr"</span>,
 <a class="jxr_linenumber" name="L61" href="#L61">61</a>                  <span 
class="jxr_string">"p"</span>
 <a class="jxr_linenumber" name="L62" href="#L62">62</a>          };
 <a class="jxr_linenumber" name="L63" href="#L63">63</a>  
-<a class="jxr_linenumber" name="L64" href="#L64">64</a>          CommandLine 
cl = parser.parse(options, args);
+<a class="jxr_linenumber" name="L64" href="#L64">64</a>          <strong 
class="jxr_keyword">final</strong> CommandLine cl = parser.parse(options, args);
 <a class="jxr_linenumber" name="L65" href="#L65">65</a>          
assertFalse(<span class="jxr_string">"Confirm -p is set"</span>, 
cl.hasOption(<span class="jxr_string">"p"</span>));
 <a class="jxr_linenumber" name="L66" href="#L66">66</a>          
assertTrue(<span class="jxr_string">"Confirm -attr is set"</span>, 
cl.hasOption(<span class="jxr_string">"attr"</span>));
 <a class="jxr_linenumber" name="L67" href="#L67">67</a>          
assertTrue(<span class="jxr_string">"Confirm arg of -attr"</span>,
@@ -80,11 +80,11 @@
 <a class="jxr_linenumber" name="L72" href="#L72">72</a>      @Test
 <a class="jxr_linenumber" name="L73" href="#L73">73</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testOption() <strong class="jxr_keyword">throws</strong> Exception
 <a class="jxr_linenumber" name="L74" href="#L74">74</a>      {
-<a class="jxr_linenumber" name="L75" href="#L75">75</a>          String[] args 
= <strong class="jxr_keyword">new</strong> String[]{
+<a class="jxr_linenumber" name="L75" href="#L75">75</a>          <strong 
class="jxr_keyword">final</strong> String[] args = <strong 
class="jxr_keyword">new</strong> String[]{
 <a class="jxr_linenumber" name="L76" href="#L76">76</a>                  <span 
class="jxr_string">"-p"</span>
 <a class="jxr_linenumber" name="L77" href="#L77">77</a>          };
 <a class="jxr_linenumber" name="L78" href="#L78">78</a>  
-<a class="jxr_linenumber" name="L79" href="#L79">79</a>          CommandLine 
cl = parser.parse(options, args);
+<a class="jxr_linenumber" name="L79" href="#L79">79</a>          <strong 
class="jxr_keyword">final</strong> CommandLine cl = parser.parse(options, args);
 <a class="jxr_linenumber" name="L80" href="#L80">80</a>          
assertTrue(<span class="jxr_string">"Confirm -p is set"</span>, 
cl.hasOption(<span class="jxr_string">"p"</span>));
 <a class="jxr_linenumber" name="L81" href="#L81">81</a>          
assertFalse(<span class="jxr_string">"Confirm -attr is not set"</span>, 
cl.hasOption(<span class="jxr_string">"attr"</span>));
 <a class="jxr_linenumber" name="L82" href="#L82">82</a>          
assertTrue(<span class="jxr_string">"Confirm all arguments recognized"</span>, 
cl.getArgs().length == 0);

Modified: 
websites/production/commons/content/proper/commons-cli/xref-test/org/apache/commons/cli/CommandLineTest.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-cli/xref-test/org/apache/commons/cli/CommandLineTest.html
 (original)
+++ 
websites/production/commons/content/proper/commons-cli/xref-test/org/apache/commons/cli/CommandLineTest.html
 Thu Jun  8 17:47:18 2017
@@ -39,16 +39,16 @@
 <a class="jxr_linenumber" name="L31" href="#L31">31</a>      @Test
 <a class="jxr_linenumber" name="L32" href="#L32">32</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testGetOptionProperties() <strong class="jxr_keyword">throws</strong> Exception
 <a class="jxr_linenumber" name="L33" href="#L33">33</a>      {
-<a class="jxr_linenumber" name="L34" href="#L34">34</a>          String[] args 
= <strong class="jxr_keyword">new</strong> String[] { <span 
class="jxr_string">"-Dparam1=value1"</span>, <span 
class="jxr_string">"-Dparam2=value2"</span>, <span 
class="jxr_string">"-Dparam3"</span>, <span 
class="jxr_string">"-Dparam4=value4"</span>, <span 
class="jxr_string">"-D"</span>, <span class="jxr_string">"--property"</span>, 
<span class="jxr_string">"foo=bar"</span> };
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>          <strong 
class="jxr_keyword">final</strong> String[] args = <strong 
class="jxr_keyword">new</strong> String[] { <span 
class="jxr_string">"-Dparam1=value1"</span>, <span 
class="jxr_string">"-Dparam2=value2"</span>, <span 
class="jxr_string">"-Dparam3"</span>, <span 
class="jxr_string">"-Dparam4=value4"</span>, <span 
class="jxr_string">"-D"</span>, <span class="jxr_string">"--property"</span>, 
<span class="jxr_string">"foo=bar"</span> };
 <a class="jxr_linenumber" name="L35" href="#L35">35</a>  
-<a class="jxr_linenumber" name="L36" href="#L36">36</a>          Options 
options = <strong class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>          <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
 <a class="jxr_linenumber" name="L37" href="#L37">37</a>          
options.addOption(OptionBuilder.withValueSeparator().hasOptionalArgs(2).create('D'));
 <a class="jxr_linenumber" name="L38" href="#L38">38</a>          
options.addOption(OptionBuilder.withValueSeparator().hasArgs(2).withLongOpt(<span
 class="jxr_string">"property"</span>).create());
 <a class="jxr_linenumber" name="L39" href="#L39">39</a>  
-<a class="jxr_linenumber" name="L40" href="#L40">40</a>          Parser parser 
= <strong class="jxr_keyword">new</strong> GnuParser();
-<a class="jxr_linenumber" name="L41" href="#L41">41</a>          CommandLine 
cl = parser.parse(options, args);
+<a class="jxr_linenumber" name="L40" href="#L40">40</a>          <strong 
class="jxr_keyword">final</strong> Parser parser = <strong 
class="jxr_keyword">new</strong> GnuParser();
+<a class="jxr_linenumber" name="L41" href="#L41">41</a>          <strong 
class="jxr_keyword">final</strong> CommandLine cl = parser.parse(options, args);
 <a class="jxr_linenumber" name="L42" href="#L42">42</a>  
-<a class="jxr_linenumber" name="L43" href="#L43">43</a>          Properties 
props = cl.getOptionProperties(<span class="jxr_string">"D"</span>);
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>          <strong 
class="jxr_keyword">final</strong> Properties props = 
cl.getOptionProperties(<span class="jxr_string">"D"</span>);
 <a class="jxr_linenumber" name="L44" href="#L44">44</a>          
assertNotNull(<span class="jxr_string">"null properties"</span>, props);
 <a class="jxr_linenumber" name="L45" href="#L45">45</a>          
assertEquals(<span class="jxr_string">"number of properties in "</span> + 
props, 4, props.size());
 <a class="jxr_linenumber" name="L46" href="#L46">46</a>          
assertEquals(<span class="jxr_string">"property 1"</span>, <span 
class="jxr_string">"value1"</span>, props.getProperty(<span 
class="jxr_string">"param1"</span>));
@@ -62,18 +62,18 @@
 <a class="jxr_linenumber" name="L54" href="#L54">54</a>      @Test
 <a class="jxr_linenumber" name="L55" href="#L55">55</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testGetOptionPropertiesWithOption() <strong class="jxr_keyword">throws</strong> 
Exception
 <a class="jxr_linenumber" name="L56" href="#L56">56</a>      {
-<a class="jxr_linenumber" name="L57" href="#L57">57</a>          String[] args 
= <strong class="jxr_keyword">new</strong> String[] { <span 
class="jxr_string">"-Dparam1=value1"</span>, <span 
class="jxr_string">"-Dparam2=value2"</span>, <span 
class="jxr_string">"-Dparam3"</span>, <span 
class="jxr_string">"-Dparam4=value4"</span>, <span 
class="jxr_string">"-D"</span>, <span class="jxr_string">"--property"</span>, 
<span class="jxr_string">"foo=bar"</span> };
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>          <strong 
class="jxr_keyword">final</strong> String[] args = <strong 
class="jxr_keyword">new</strong> String[] { <span 
class="jxr_string">"-Dparam1=value1"</span>, <span 
class="jxr_string">"-Dparam2=value2"</span>, <span 
class="jxr_string">"-Dparam3"</span>, <span 
class="jxr_string">"-Dparam4=value4"</span>, <span 
class="jxr_string">"-D"</span>, <span class="jxr_string">"--property"</span>, 
<span class="jxr_string">"foo=bar"</span> };
 <a class="jxr_linenumber" name="L58" href="#L58">58</a>  
-<a class="jxr_linenumber" name="L59" href="#L59">59</a>          Options 
options = <strong class="jxr_keyword">new</strong> Options();
-<a class="jxr_linenumber" name="L60" href="#L60">60</a>          Option 
option_D = OptionBuilder.withValueSeparator().hasOptionalArgs(2).create('D');
-<a class="jxr_linenumber" name="L61" href="#L61">61</a>          Option 
option_property = 
OptionBuilder.withValueSeparator().hasArgs(2).withLongOpt(<span 
class="jxr_string">"property"</span>).create();
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>          <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L60" href="#L60">60</a>          <strong 
class="jxr_keyword">final</strong> Option option_D = 
OptionBuilder.withValueSeparator().hasOptionalArgs(2).create('D');
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>          <strong 
class="jxr_keyword">final</strong> Option option_property = 
OptionBuilder.withValueSeparator().hasArgs(2).withLongOpt(<span 
class="jxr_string">"property"</span>).create();
 <a class="jxr_linenumber" name="L62" href="#L62">62</a>          
options.addOption(option_D);
 <a class="jxr_linenumber" name="L63" href="#L63">63</a>          
options.addOption(option_property);
 <a class="jxr_linenumber" name="L64" href="#L64">64</a>  
-<a class="jxr_linenumber" name="L65" href="#L65">65</a>          Parser parser 
= <strong class="jxr_keyword">new</strong> GnuParser();
-<a class="jxr_linenumber" name="L66" href="#L66">66</a>          CommandLine 
cl = parser.parse(options, args);
+<a class="jxr_linenumber" name="L65" href="#L65">65</a>          <strong 
class="jxr_keyword">final</strong> Parser parser = <strong 
class="jxr_keyword">new</strong> GnuParser();
+<a class="jxr_linenumber" name="L66" href="#L66">66</a>          <strong 
class="jxr_keyword">final</strong> CommandLine cl = parser.parse(options, args);
 <a class="jxr_linenumber" name="L67" href="#L67">67</a>  
-<a class="jxr_linenumber" name="L68" href="#L68">68</a>          Properties 
props = cl.getOptionProperties(option_D);
+<a class="jxr_linenumber" name="L68" href="#L68">68</a>          <strong 
class="jxr_keyword">final</strong> Properties props = 
cl.getOptionProperties(option_D);
 <a class="jxr_linenumber" name="L69" href="#L69">69</a>          
assertNotNull(<span class="jxr_string">"null properties"</span>, props);
 <a class="jxr_linenumber" name="L70" href="#L70">70</a>          
assertEquals(<span class="jxr_string">"number of properties in "</span> + 
props, 4, props.size());
 <a class="jxr_linenumber" name="L71" href="#L71">71</a>          
assertEquals(<span class="jxr_string">"property 1"</span>, <span 
class="jxr_string">"value1"</span>, props.getProperty(<span 
class="jxr_string">"param1"</span>));
@@ -87,7 +87,7 @@
 <a class="jxr_linenumber" name="L79" href="#L79">79</a>      @Test
 <a class="jxr_linenumber" name="L80" href="#L80">80</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testGetOptions()
 <a class="jxr_linenumber" name="L81" href="#L81">81</a>      {
-<a class="jxr_linenumber" name="L82" href="#L82">82</a>          CommandLine 
cmd = <strong class="jxr_keyword">new</strong> CommandLine();
+<a class="jxr_linenumber" name="L82" href="#L82">82</a>          <strong 
class="jxr_keyword">final</strong> CommandLine cmd = <strong 
class="jxr_keyword">new</strong> CommandLine();
 <a class="jxr_linenumber" name="L83" href="#L83">83</a>          
assertNotNull(cmd.getOptions());
 <a class="jxr_linenumber" name="L84" href="#L84">84</a>          
assertEquals(0, cmd.getOptions().length);
 <a class="jxr_linenumber" name="L85" href="#L85">85</a>          
@@ -100,12 +100,12 @@
 <a class="jxr_linenumber" name="L92" href="#L92">92</a>  
 <a class="jxr_linenumber" name="L93" href="#L93">93</a>      @Test
 <a class="jxr_linenumber" name="L94" href="#L94">94</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testGetParsedOptionValue() <strong class="jxr_keyword">throws</strong> 
Exception {
-<a class="jxr_linenumber" name="L95" href="#L95">95</a>          Options 
options = <strong class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L95" href="#L95">95</a>          <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
 <a class="jxr_linenumber" name="L96" href="#L96">96</a>          
options.addOption(OptionBuilder.hasArg().withType(Number.<strong 
class="jxr_keyword">class</strong>).create(<span 
class="jxr_string">"i"</span>));
 <a class="jxr_linenumber" name="L97" href="#L97">97</a>          
options.addOption(OptionBuilder.hasArg().create(<span 
class="jxr_string">"f"</span>));
 <a class="jxr_linenumber" name="L98" href="#L98">98</a>          
-<a class="jxr_linenumber" name="L99" href="#L99">99</a>          
CommandLineParser parser = <strong class="jxr_keyword">new</strong> 
DefaultParser();
-<a class="jxr_linenumber" name="L100" href="#L100">100</a>         CommandLine 
cmd = parser.parse(options, <strong class="jxr_keyword">new</strong> String[] { 
<span class="jxr_string">"-i"</span>, <span class="jxr_string">"123"</span>, 
<span class="jxr_string">"-f"</span>, <span class="jxr_string">"foo"</span> });
+<a class="jxr_linenumber" name="L99" href="#L99">99</a>          <strong 
class="jxr_keyword">final</strong> CommandLineParser parser = <strong 
class="jxr_keyword">new</strong> DefaultParser();
+<a class="jxr_linenumber" name="L100" href="#L100">100</a>         <strong 
class="jxr_keyword">final</strong> CommandLine cmd = parser.parse(options, 
<strong class="jxr_keyword">new</strong> String[] { <span 
class="jxr_string">"-i"</span>, <span class="jxr_string">"123"</span>, <span 
class="jxr_string">"-f"</span>, <span class="jxr_string">"foo"</span> });
 <a class="jxr_linenumber" name="L101" href="#L101">101</a>         
 <a class="jxr_linenumber" name="L102" href="#L102">102</a>         
assertEquals(123, ((Number) cmd.getParsedOptionValue(<span 
class="jxr_string">"i"</span>)).intValue());
 <a class="jxr_linenumber" name="L103" href="#L103">103</a>         
assertEquals(<span class="jxr_string">"foo"</span>, 
cmd.getParsedOptionValue(<span class="jxr_string">"f"</span>));
@@ -113,12 +113,12 @@
 <a class="jxr_linenumber" name="L105" href="#L105">105</a>     
 <a class="jxr_linenumber" name="L106" href="#L106">106</a>     @Test
 <a class="jxr_linenumber" name="L107" href="#L107">107</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testGetParsedOptionValueWithChar() <strong class="jxr_keyword">throws</strong> 
Exception {
-<a class="jxr_linenumber" name="L108" href="#L108">108</a>         Options 
options = <strong class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L108" href="#L108">108</a>         <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
 <a class="jxr_linenumber" name="L109" href="#L109">109</a>         
options.addOption(Option.builder(<span 
class="jxr_string">"i"</span>).hasArg().type(Number.<strong 
class="jxr_keyword">class</strong>).build());
 <a class="jxr_linenumber" name="L110" href="#L110">110</a>         
options.addOption(Option.builder(<span 
class="jxr_string">"f"</span>).hasArg().build());
 <a class="jxr_linenumber" name="L111" href="#L111">111</a>         
-<a class="jxr_linenumber" name="L112" href="#L112">112</a>         
CommandLineParser parser = <strong class="jxr_keyword">new</strong> 
DefaultParser();
-<a class="jxr_linenumber" name="L113" href="#L113">113</a>         CommandLine 
cmd = parser.parse(options, <strong class="jxr_keyword">new</strong> String[] { 
<span class="jxr_string">"-i"</span>, <span class="jxr_string">"123"</span>, 
<span class="jxr_string">"-f"</span>, <span class="jxr_string">"foo"</span> });
+<a class="jxr_linenumber" name="L112" href="#L112">112</a>         <strong 
class="jxr_keyword">final</strong> CommandLineParser parser = <strong 
class="jxr_keyword">new</strong> DefaultParser();
+<a class="jxr_linenumber" name="L113" href="#L113">113</a>         <strong 
class="jxr_keyword">final</strong> CommandLine cmd = parser.parse(options, 
<strong class="jxr_keyword">new</strong> String[] { <span 
class="jxr_string">"-i"</span>, <span class="jxr_string">"123"</span>, <span 
class="jxr_string">"-f"</span>, <span class="jxr_string">"foo"</span> });
 <a class="jxr_linenumber" name="L114" href="#L114">114</a>         
 <a class="jxr_linenumber" name="L115" href="#L115">115</a>         
assertEquals(123, ((Number) cmd.getParsedOptionValue('i')).intValue());
 <a class="jxr_linenumber" name="L116" href="#L116">116</a>         
assertEquals(<span class="jxr_string">"foo"</span>, 
cmd.getParsedOptionValue('f'));
@@ -126,14 +126,14 @@
 <a class="jxr_linenumber" name="L118" href="#L118">118</a>     
 <a class="jxr_linenumber" name="L119" href="#L119">119</a>     @Test
 <a class="jxr_linenumber" name="L120" href="#L120">120</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testGetParsedOptionValueWithOption() <strong 
class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L121" href="#L121">121</a>         Options 
options = <strong class="jxr_keyword">new</strong> Options();
-<a class="jxr_linenumber" name="L122" href="#L122">122</a>         Option 
opt_i = Option.builder(<span 
class="jxr_string">"i"</span>).hasArg().type(Number.<strong 
class="jxr_keyword">class</strong>).build();
-<a class="jxr_linenumber" name="L123" href="#L123">123</a>         Option 
opt_f = Option.builder(<span class="jxr_string">"f"</span>).hasArg().build();
+<a class="jxr_linenumber" name="L121" href="#L121">121</a>         <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L122" href="#L122">122</a>         <strong 
class="jxr_keyword">final</strong> Option opt_i = Option.builder(<span 
class="jxr_string">"i"</span>).hasArg().type(Number.<strong 
class="jxr_keyword">class</strong>).build();
+<a class="jxr_linenumber" name="L123" href="#L123">123</a>         <strong 
class="jxr_keyword">final</strong> Option opt_f = Option.builder(<span 
class="jxr_string">"f"</span>).hasArg().build();
 <a class="jxr_linenumber" name="L124" href="#L124">124</a>         
options.addOption(opt_i);
 <a class="jxr_linenumber" name="L125" href="#L125">125</a>         
options.addOption(opt_f);
 <a class="jxr_linenumber" name="L126" href="#L126">126</a>         
-<a class="jxr_linenumber" name="L127" href="#L127">127</a>         
CommandLineParser parser = <strong class="jxr_keyword">new</strong> 
DefaultParser();
-<a class="jxr_linenumber" name="L128" href="#L128">128</a>         CommandLine 
cmd = parser.parse(options, <strong class="jxr_keyword">new</strong> String[] { 
<span class="jxr_string">"-i"</span>, <span class="jxr_string">"123"</span>, 
<span class="jxr_string">"-f"</span>, <span class="jxr_string">"foo"</span> });
+<a class="jxr_linenumber" name="L127" href="#L127">127</a>         <strong 
class="jxr_keyword">final</strong> CommandLineParser parser = <strong 
class="jxr_keyword">new</strong> DefaultParser();
+<a class="jxr_linenumber" name="L128" href="#L128">128</a>         <strong 
class="jxr_keyword">final</strong> CommandLine cmd = parser.parse(options, 
<strong class="jxr_keyword">new</strong> String[] { <span 
class="jxr_string">"-i"</span>, <span class="jxr_string">"123"</span>, <span 
class="jxr_string">"-f"</span>, <span class="jxr_string">"foo"</span> });
 <a class="jxr_linenumber" name="L129" href="#L129">129</a>         
 <a class="jxr_linenumber" name="L130" href="#L130">130</a>         
assertEquals(123, ((Number) cmd.getParsedOptionValue(opt_i)).intValue());
 <a class="jxr_linenumber" name="L131" href="#L131">131</a>         
assertEquals(<span class="jxr_string">"foo"</span>, 
cmd.getParsedOptionValue(opt_f));
@@ -141,13 +141,13 @@
 <a class="jxr_linenumber" name="L133" href="#L133">133</a>     
 <a class="jxr_linenumber" name="L134" href="#L134">134</a>     @Test
 <a class="jxr_linenumber" name="L135" href="#L135">135</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testNullhOption() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L136" href="#L136">136</a>         Options 
options = <strong class="jxr_keyword">new</strong> Options();
-<a class="jxr_linenumber" name="L137" href="#L137">137</a>         Option 
opt_i = Option.builder(<span 
class="jxr_string">"i"</span>).hasArg().type(Number.<strong 
class="jxr_keyword">class</strong>).build();
-<a class="jxr_linenumber" name="L138" href="#L138">138</a>         Option 
opt_f = Option.builder(<span class="jxr_string">"f"</span>).hasArg().build();
+<a class="jxr_linenumber" name="L136" href="#L136">136</a>         <strong 
class="jxr_keyword">final</strong> Options options = <strong 
class="jxr_keyword">new</strong> Options();
+<a class="jxr_linenumber" name="L137" href="#L137">137</a>         <strong 
class="jxr_keyword">final</strong> Option opt_i = Option.builder(<span 
class="jxr_string">"i"</span>).hasArg().type(Number.<strong 
class="jxr_keyword">class</strong>).build();
+<a class="jxr_linenumber" name="L138" href="#L138">138</a>         <strong 
class="jxr_keyword">final</strong> Option opt_f = Option.builder(<span 
class="jxr_string">"f"</span>).hasArg().build();
 <a class="jxr_linenumber" name="L139" href="#L139">139</a>         
options.addOption(opt_i);
 <a class="jxr_linenumber" name="L140" href="#L140">140</a>         
options.addOption(opt_f);
-<a class="jxr_linenumber" name="L141" href="#L141">141</a>         
CommandLineParser parser = <strong class="jxr_keyword">new</strong> 
DefaultParser();
-<a class="jxr_linenumber" name="L142" href="#L142">142</a>         CommandLine 
cmd = parser.parse(options, <strong class="jxr_keyword">new</strong> String[] { 
<span class="jxr_string">"-i"</span>, <span class="jxr_string">"123"</span>, 
<span class="jxr_string">"-f"</span>, <span class="jxr_string">"foo"</span> });
+<a class="jxr_linenumber" name="L141" href="#L141">141</a>         <strong 
class="jxr_keyword">final</strong> CommandLineParser parser = <strong 
class="jxr_keyword">new</strong> DefaultParser();
+<a class="jxr_linenumber" name="L142" href="#L142">142</a>         <strong 
class="jxr_keyword">final</strong> CommandLine cmd = parser.parse(options, 
<strong class="jxr_keyword">new</strong> String[] { <span 
class="jxr_string">"-i"</span>, <span class="jxr_string">"123"</span>, <span 
class="jxr_string">"-f"</span>, <span class="jxr_string">"foo"</span> });
 <a class="jxr_linenumber" name="L143" href="#L143">143</a>         
assertNull(cmd.getOptionValue((Option)<strong 
class="jxr_keyword">null</strong>));
 <a class="jxr_linenumber" name="L144" href="#L144">144</a>         
assertNull(cmd.getParsedOptionValue((Option)<strong 
class="jxr_keyword">null</strong>));
 <a class="jxr_linenumber" name="L145" href="#L145">145</a>     }
@@ -156,10 +156,10 @@
 <a class="jxr_linenumber" name="L148" href="#L148">148</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testBuilder()
 <a class="jxr_linenumber" name="L149" href="#L149">149</a>         <strong 
class="jxr_keyword">throws</strong> Exception
 <a class="jxr_linenumber" name="L150" href="#L150">150</a>     {
-<a class="jxr_linenumber" name="L151" href="#L151">151</a>         
CommandLine.Builder builder = <strong class="jxr_keyword">new</strong> 
CommandLine.Builder();
+<a class="jxr_linenumber" name="L151" href="#L151">151</a>         <strong 
class="jxr_keyword">final</strong> CommandLine.Builder builder = <strong 
class="jxr_keyword">new</strong> CommandLine.Builder();
 <a class="jxr_linenumber" name="L152" href="#L152">152</a>         
builder.addArg( <span class="jxr_string">"foo"</span> ).addArg( <span 
class="jxr_string">"bar"</span> );
 <a class="jxr_linenumber" name="L153" href="#L153">153</a>         
builder.addOption( Option.builder( <span class="jxr_string">"T"</span> 
).build() );
-<a class="jxr_linenumber" name="L154" href="#L154">154</a>         CommandLine 
cmd = builder.build();
+<a class="jxr_linenumber" name="L154" href="#L154">154</a>         <strong 
class="jxr_keyword">final</strong> CommandLine cmd = builder.build();
 <a class="jxr_linenumber" name="L155" href="#L155">155</a> 
 <a class="jxr_linenumber" name="L156" href="#L156">156</a>         
assertEquals( <span class="jxr_string">"foo"</span>, cmd.getArgs()[0] );
 <a class="jxr_linenumber" name="L157" href="#L157">157</a>         
assertEquals( <span class="jxr_string">"bar"</span>, cmd.getArgList().get( 1 ) 
);


Reply via email to