You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2014/04/12 18:52:11 UTC

svn commit: r905942 [35/38] - in /websites/production/commons/content/proper/commons-compress: ./ apidocs/ apidocs/org/apache/commons/compress/archivers/ apidocs/org/apache/commons/compress/archivers/ar/ apidocs/org/apache/commons/compress/archivers/ar...

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/dump/TapeInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/dump/TapeInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/dump/TapeInputStream.html Sat Apr 12 16:51:56 2014
@@ -246,117 +246,119 @@
 <a class="jxr_linenumber" name="L238" href="#L238">238</a>     <strong class="jxr_keyword">public</strong> byte[] readRecord() <strong class="jxr_keyword">throws</strong> IOException {
 <a class="jxr_linenumber" name="L239" href="#L239">239</a>         byte[] result = <strong class="jxr_keyword">new</strong> byte[recordSize];
 <a class="jxr_linenumber" name="L240" href="#L240">240</a> 
-<a class="jxr_linenumber" name="L241" href="#L241">241</a>         <strong class="jxr_keyword">if</strong> (-1 == read(result, 0, result.length)) {
-<a class="jxr_linenumber" name="L242" href="#L242">242</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/ShortFileException.html">ShortFileException</a>();
-<a class="jxr_linenumber" name="L243" href="#L243">243</a>         }
-<a class="jxr_linenumber" name="L244" href="#L244">244</a> 
-<a class="jxr_linenumber" name="L245" href="#L245">245</a>         <strong class="jxr_keyword">return</strong> result;
-<a class="jxr_linenumber" name="L246" href="#L246">246</a>     }
-<a class="jxr_linenumber" name="L247" href="#L247">247</a> 
-<a class="jxr_linenumber" name="L248" href="#L248">248</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L249" href="#L249">249</a> <em class="jxr_javadoccomment">     * Read next block. All decompression is handled here.</em>
-<a class="jxr_linenumber" name="L250" href="#L250">250</a> <em class="jxr_javadoccomment">     *</em>
-<a class="jxr_linenumber" name="L251" href="#L251">251</a> <em class="jxr_javadoccomment">     * @param decompress if false the buffer will not be decompressed.</em>
-<a class="jxr_linenumber" name="L252" href="#L252">252</a> <em class="jxr_javadoccomment">     *        This is an optimization for longer seeks.</em>
-<a class="jxr_linenumber" name="L253" href="#L253">253</a> <em class="jxr_javadoccomment">     * @return false if End-Of-File, else true</em>
-<a class="jxr_linenumber" name="L254" href="#L254">254</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L255" href="#L255">255</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> readBlock(<strong class="jxr_keyword">boolean</strong> decompress) <strong class="jxr_keyword">throws</strong> IOException {
-<a class="jxr_linenumber" name="L256" href="#L256">256</a>         <strong class="jxr_keyword">boolean</strong> success = <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="L257" href="#L257">257</a> 
-<a class="jxr_linenumber" name="L258" href="#L258">258</a>         <strong class="jxr_keyword">if</strong> (in == <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="L259" href="#L259">259</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IOException(<span class="jxr_string">"input buffer is closed"</span>);
-<a class="jxr_linenumber" name="L260" href="#L260">260</a>         }
-<a class="jxr_linenumber" name="L261" href="#L261">261</a> 
-<a class="jxr_linenumber" name="L262" href="#L262">262</a>         <strong class="jxr_keyword">if</strong> (!isCompressed || (currBlkIdx == -1)) {
-<a class="jxr_linenumber" name="L263" href="#L263">263</a>             <em class="jxr_comment">// file is not compressed</em>
-<a class="jxr_linenumber" name="L264" href="#L264">264</a>             success = readFully(blockBuffer, 0, blockSize);
-<a class="jxr_linenumber" name="L265" href="#L265">265</a>             bytesRead += blockSize;
-<a class="jxr_linenumber" name="L266" href="#L266">266</a>         } <strong class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="L267" href="#L267">267</a>             <strong class="jxr_keyword">if</strong> (!readFully(blockBuffer, 0, 4)) {
-<a class="jxr_linenumber" name="L268" href="#L268">268</a>                 <strong class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="L269" href="#L269">269</a>             }
-<a class="jxr_linenumber" name="L270" href="#L270">270</a>             bytesRead += 4;
-<a class="jxr_linenumber" name="L271" href="#L271">271</a> 
-<a class="jxr_linenumber" name="L272" href="#L272">272</a>             <strong class="jxr_keyword">int</strong> h = DumpArchiveUtil.convert32(blockBuffer, 0);
-<a class="jxr_linenumber" name="L273" href="#L273">273</a>             <strong class="jxr_keyword">boolean</strong> compressed = (h &amp; 0x01) == 0x01;
-<a class="jxr_linenumber" name="L274" href="#L274">274</a> 
-<a class="jxr_linenumber" name="L275" href="#L275">275</a>             <strong class="jxr_keyword">if</strong> (!compressed) {
-<a class="jxr_linenumber" name="L276" href="#L276">276</a>                 <em class="jxr_comment">// file is compressed but this block is not.</em>
-<a class="jxr_linenumber" name="L277" href="#L277">277</a>                 success = readFully(blockBuffer, 0, blockSize);
-<a class="jxr_linenumber" name="L278" href="#L278">278</a>                 bytesRead += blockSize;
-<a class="jxr_linenumber" name="L279" href="#L279">279</a>             } <strong class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="L280" href="#L280">280</a>                 <em class="jxr_comment">// this block is compressed.</em>
-<a class="jxr_linenumber" name="L281" href="#L281">281</a>                 <strong class="jxr_keyword">int</strong> flags = (h &gt;&gt; 1) &amp; 0x07;
-<a class="jxr_linenumber" name="L282" href="#L282">282</a>                 <strong class="jxr_keyword">int</strong> length = (h &gt;&gt; 4) &amp; 0x0FFFFFFF;
-<a class="jxr_linenumber" name="L283" href="#L283">283</a>                 byte[] compBuffer = <strong class="jxr_keyword">new</strong> byte[length];
-<a class="jxr_linenumber" name="L284" href="#L284">284</a>                 success = readFully(compBuffer, 0, length);
-<a class="jxr_linenumber" name="L285" href="#L285">285</a>                 bytesRead += length;
-<a class="jxr_linenumber" name="L286" href="#L286">286</a> 
-<a class="jxr_linenumber" name="L287" href="#L287">287</a>                 <strong class="jxr_keyword">if</strong> (!decompress) {
-<a class="jxr_linenumber" name="L288" href="#L288">288</a>                     <em class="jxr_comment">// just in case someone reads the data.</em>
-<a class="jxr_linenumber" name="L289" href="#L289">289</a>                     Arrays.fill(blockBuffer, (byte) 0);
-<a class="jxr_linenumber" name="L290" href="#L290">290</a>                 } <strong class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="L291" href="#L291">291</a>                     <strong class="jxr_keyword">switch</strong> (DumpArchiveConstants.COMPRESSION_TYPE.find(flags &amp;
-<a class="jxr_linenumber" name="L292" href="#L292">292</a>                         0x03)) {
-<a class="jxr_linenumber" name="L293" href="#L293">293</a>                     <strong class="jxr_keyword">case</strong> ZLIB:
-<a class="jxr_linenumber" name="L294" href="#L294">294</a> 
-<a class="jxr_linenumber" name="L295" href="#L295">295</a>                         <strong class="jxr_keyword">try</strong> {
-<a class="jxr_linenumber" name="L296" href="#L296">296</a>                             Inflater inflator = <strong class="jxr_keyword">new</strong> Inflater();
-<a class="jxr_linenumber" name="L297" href="#L297">297</a>                             inflator.setInput(compBuffer, 0, compBuffer.length);
-<a class="jxr_linenumber" name="L298" href="#L298">298</a>                             length = inflator.inflate(blockBuffer);
-<a class="jxr_linenumber" name="L299" href="#L299">299</a> 
-<a class="jxr_linenumber" name="L300" href="#L300">300</a>                             <strong class="jxr_keyword">if</strong> (length != blockSize) {
-<a class="jxr_linenumber" name="L301" href="#L301">301</a>                                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/ShortFileException.html">ShortFileException</a>();
-<a class="jxr_linenumber" name="L302" href="#L302">302</a>                             }
-<a class="jxr_linenumber" name="L303" href="#L303">303</a> 
-<a class="jxr_linenumber" name="L304" href="#L304">304</a>                             inflator.end();
-<a class="jxr_linenumber" name="L305" href="#L305">305</a>                         } <strong class="jxr_keyword">catch</strong> (DataFormatException e) {
-<a class="jxr_linenumber" name="L306" href="#L306">306</a>                             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/DumpArchiveException.html">DumpArchiveException</a>(<span class="jxr_string">"bad data"</span>, e);
-<a class="jxr_linenumber" name="L307" href="#L307">307</a>                         }
-<a class="jxr_linenumber" name="L308" href="#L308">308</a> 
-<a class="jxr_linenumber" name="L309" href="#L309">309</a>                         <strong class="jxr_keyword">break</strong>;
+<a class="jxr_linenumber" name="L241" href="#L241">241</a>         <em class="jxr_comment">// the read implementation will loop internally as long as</em>
+<a class="jxr_linenumber" name="L242" href="#L242">242</a>         <em class="jxr_comment">// input is available</em>
+<a class="jxr_linenumber" name="L243" href="#L243">243</a>         <strong class="jxr_keyword">if</strong> (-1 == read(result, 0, result.length)) {
+<a class="jxr_linenumber" name="L244" href="#L244">244</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/ShortFileException.html">ShortFileException</a>();
+<a class="jxr_linenumber" name="L245" href="#L245">245</a>         }
+<a class="jxr_linenumber" name="L246" href="#L246">246</a> 
+<a class="jxr_linenumber" name="L247" href="#L247">247</a>         <strong class="jxr_keyword">return</strong> result;
+<a class="jxr_linenumber" name="L248" href="#L248">248</a>     }
+<a class="jxr_linenumber" name="L249" href="#L249">249</a> 
+<a class="jxr_linenumber" name="L250" href="#L250">250</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L251" href="#L251">251</a> <em class="jxr_javadoccomment">     * Read next block. All decompression is handled here.</em>
+<a class="jxr_linenumber" name="L252" href="#L252">252</a> <em class="jxr_javadoccomment">     *</em>
+<a class="jxr_linenumber" name="L253" href="#L253">253</a> <em class="jxr_javadoccomment">     * @param decompress if false the buffer will not be decompressed.</em>
+<a class="jxr_linenumber" name="L254" href="#L254">254</a> <em class="jxr_javadoccomment">     *        This is an optimization for longer seeks.</em>
+<a class="jxr_linenumber" name="L255" href="#L255">255</a> <em class="jxr_javadoccomment">     * @return false if End-Of-File, else true</em>
+<a class="jxr_linenumber" name="L256" href="#L256">256</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L257" href="#L257">257</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> readBlock(<strong class="jxr_keyword">boolean</strong> decompress) <strong class="jxr_keyword">throws</strong> IOException {
+<a class="jxr_linenumber" name="L258" href="#L258">258</a>         <strong class="jxr_keyword">boolean</strong> success = <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="L259" href="#L259">259</a> 
+<a class="jxr_linenumber" name="L260" href="#L260">260</a>         <strong class="jxr_keyword">if</strong> (in == <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="L261" href="#L261">261</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IOException(<span class="jxr_string">"input buffer is closed"</span>);
+<a class="jxr_linenumber" name="L262" href="#L262">262</a>         }
+<a class="jxr_linenumber" name="L263" href="#L263">263</a> 
+<a class="jxr_linenumber" name="L264" href="#L264">264</a>         <strong class="jxr_keyword">if</strong> (!isCompressed || (currBlkIdx == -1)) {
+<a class="jxr_linenumber" name="L265" href="#L265">265</a>             <em class="jxr_comment">// file is not compressed</em>
+<a class="jxr_linenumber" name="L266" href="#L266">266</a>             success = readFully(blockBuffer, 0, blockSize);
+<a class="jxr_linenumber" name="L267" href="#L267">267</a>             bytesRead += blockSize;
+<a class="jxr_linenumber" name="L268" href="#L268">268</a>         } <strong class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="L269" href="#L269">269</a>             <strong class="jxr_keyword">if</strong> (!readFully(blockBuffer, 0, 4)) {
+<a class="jxr_linenumber" name="L270" href="#L270">270</a>                 <strong class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="L271" href="#L271">271</a>             }
+<a class="jxr_linenumber" name="L272" href="#L272">272</a>             bytesRead += 4;
+<a class="jxr_linenumber" name="L273" href="#L273">273</a> 
+<a class="jxr_linenumber" name="L274" href="#L274">274</a>             <strong class="jxr_keyword">int</strong> h = DumpArchiveUtil.convert32(blockBuffer, 0);
+<a class="jxr_linenumber" name="L275" href="#L275">275</a>             <strong class="jxr_keyword">boolean</strong> compressed = (h &amp; 0x01) == 0x01;
+<a class="jxr_linenumber" name="L276" href="#L276">276</a> 
+<a class="jxr_linenumber" name="L277" href="#L277">277</a>             <strong class="jxr_keyword">if</strong> (!compressed) {
+<a class="jxr_linenumber" name="L278" href="#L278">278</a>                 <em class="jxr_comment">// file is compressed but this block is not.</em>
+<a class="jxr_linenumber" name="L279" href="#L279">279</a>                 success = readFully(blockBuffer, 0, blockSize);
+<a class="jxr_linenumber" name="L280" href="#L280">280</a>                 bytesRead += blockSize;
+<a class="jxr_linenumber" name="L281" href="#L281">281</a>             } <strong class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="L282" href="#L282">282</a>                 <em class="jxr_comment">// this block is compressed.</em>
+<a class="jxr_linenumber" name="L283" href="#L283">283</a>                 <strong class="jxr_keyword">int</strong> flags = (h &gt;&gt; 1) &amp; 0x07;
+<a class="jxr_linenumber" name="L284" href="#L284">284</a>                 <strong class="jxr_keyword">int</strong> length = (h &gt;&gt; 4) &amp; 0x0FFFFFFF;
+<a class="jxr_linenumber" name="L285" href="#L285">285</a>                 byte[] compBuffer = <strong class="jxr_keyword">new</strong> byte[length];
+<a class="jxr_linenumber" name="L286" href="#L286">286</a>                 success = readFully(compBuffer, 0, length);
+<a class="jxr_linenumber" name="L287" href="#L287">287</a>                 bytesRead += length;
+<a class="jxr_linenumber" name="L288" href="#L288">288</a> 
+<a class="jxr_linenumber" name="L289" href="#L289">289</a>                 <strong class="jxr_keyword">if</strong> (!decompress) {
+<a class="jxr_linenumber" name="L290" href="#L290">290</a>                     <em class="jxr_comment">// just in case someone reads the data.</em>
+<a class="jxr_linenumber" name="L291" href="#L291">291</a>                     Arrays.fill(blockBuffer, (byte) 0);
+<a class="jxr_linenumber" name="L292" href="#L292">292</a>                 } <strong class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="L293" href="#L293">293</a>                     <strong class="jxr_keyword">switch</strong> (DumpArchiveConstants.COMPRESSION_TYPE.find(flags &amp;
+<a class="jxr_linenumber" name="L294" href="#L294">294</a>                         0x03)) {
+<a class="jxr_linenumber" name="L295" href="#L295">295</a>                     <strong class="jxr_keyword">case</strong> ZLIB:
+<a class="jxr_linenumber" name="L296" href="#L296">296</a> 
+<a class="jxr_linenumber" name="L297" href="#L297">297</a>                         <strong class="jxr_keyword">try</strong> {
+<a class="jxr_linenumber" name="L298" href="#L298">298</a>                             Inflater inflator = <strong class="jxr_keyword">new</strong> Inflater();
+<a class="jxr_linenumber" name="L299" href="#L299">299</a>                             inflator.setInput(compBuffer, 0, compBuffer.length);
+<a class="jxr_linenumber" name="L300" href="#L300">300</a>                             length = inflator.inflate(blockBuffer);
+<a class="jxr_linenumber" name="L301" href="#L301">301</a> 
+<a class="jxr_linenumber" name="L302" href="#L302">302</a>                             <strong class="jxr_keyword">if</strong> (length != blockSize) {
+<a class="jxr_linenumber" name="L303" href="#L303">303</a>                                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/ShortFileException.html">ShortFileException</a>();
+<a class="jxr_linenumber" name="L304" href="#L304">304</a>                             }
+<a class="jxr_linenumber" name="L305" href="#L305">305</a> 
+<a class="jxr_linenumber" name="L306" href="#L306">306</a>                             inflator.end();
+<a class="jxr_linenumber" name="L307" href="#L307">307</a>                         } <strong class="jxr_keyword">catch</strong> (DataFormatException e) {
+<a class="jxr_linenumber" name="L308" href="#L308">308</a>                             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/DumpArchiveException.html">DumpArchiveException</a>(<span class="jxr_string">"bad data"</span>, e);
+<a class="jxr_linenumber" name="L309" href="#L309">309</a>                         }
 <a class="jxr_linenumber" name="L310" href="#L310">310</a> 
-<a class="jxr_linenumber" name="L311" href="#L311">311</a>                     <strong class="jxr_keyword">case</strong> BZLIB:
-<a class="jxr_linenumber" name="L312" href="#L312">312</a>                         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/UnsupportedCompressionAlgorithmException.html">UnsupportedCompressionAlgorithmException</a>(
-<a class="jxr_linenumber" name="L313" href="#L313">313</a>                             <span class="jxr_string">"BZLIB2"</span>);
-<a class="jxr_linenumber" name="L314" href="#L314">314</a> 
-<a class="jxr_linenumber" name="L315" href="#L315">315</a>                     <strong class="jxr_keyword">case</strong> LZO:
-<a class="jxr_linenumber" name="L316" href="#L316">316</a>                         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/UnsupportedCompressionAlgorithmException.html">UnsupportedCompressionAlgorithmException</a>(
-<a class="jxr_linenumber" name="L317" href="#L317">317</a>                             <span class="jxr_string">"LZO"</span>);
-<a class="jxr_linenumber" name="L318" href="#L318">318</a> 
-<a class="jxr_linenumber" name="L319" href="#L319">319</a>                     <strong class="jxr_keyword">default</strong>:
-<a class="jxr_linenumber" name="L320" href="#L320">320</a>                         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/UnsupportedCompressionAlgorithmException.html">UnsupportedCompressionAlgorithmException</a>();
-<a class="jxr_linenumber" name="L321" href="#L321">321</a>                     }
-<a class="jxr_linenumber" name="L322" href="#L322">322</a>                 }
-<a class="jxr_linenumber" name="L323" href="#L323">323</a>             }
-<a class="jxr_linenumber" name="L324" href="#L324">324</a>         }
-<a class="jxr_linenumber" name="L325" href="#L325">325</a> 
-<a class="jxr_linenumber" name="L326" href="#L326">326</a>         currBlkIdx++;
-<a class="jxr_linenumber" name="L327" href="#L327">327</a>         readOffset = 0;
-<a class="jxr_linenumber" name="L328" href="#L328">328</a> 
-<a class="jxr_linenumber" name="L329" href="#L329">329</a>         <strong class="jxr_keyword">return</strong> success;
-<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>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L333" href="#L333">333</a> <em class="jxr_javadoccomment">     * Read buffer</em>
-<a class="jxr_linenumber" name="L334" href="#L334">334</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L335" href="#L335">335</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> readFully(byte[] b, <strong class="jxr_keyword">int</strong> off, <strong class="jxr_keyword">int</strong> len)
-<a class="jxr_linenumber" name="L336" href="#L336">336</a>         <strong class="jxr_keyword">throws</strong> IOException {
-<a class="jxr_linenumber" name="L337" href="#L337">337</a>         <strong class="jxr_keyword">int</strong> count = IOUtils.readFully(in, b, off, len);
-<a class="jxr_linenumber" name="L338" href="#L338">338</a>         <strong class="jxr_keyword">if</strong> (count &lt; len) {
-<a class="jxr_linenumber" name="L339" href="#L339">339</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/ShortFileException.html">ShortFileException</a>();
-<a class="jxr_linenumber" name="L340" href="#L340">340</a>         }
-<a class="jxr_linenumber" name="L341" href="#L341">341</a> 
-<a class="jxr_linenumber" name="L342" href="#L342">342</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="L343" href="#L343">343</a>     }
-<a class="jxr_linenumber" name="L344" href="#L344">344</a> 
-<a class="jxr_linenumber" name="L345" href="#L345">345</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L346" href="#L346">346</a> <em class="jxr_javadoccomment">     * Get number of bytes read.</em>
-<a class="jxr_linenumber" name="L347" href="#L347">347</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L348" href="#L348">348</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong> getBytesRead() {
-<a class="jxr_linenumber" name="L349" href="#L349">349</a>         <strong class="jxr_keyword">return</strong> bytesRead;
-<a class="jxr_linenumber" name="L350" href="#L350">350</a>     }
-<a class="jxr_linenumber" name="L351" href="#L351">351</a> }
+<a class="jxr_linenumber" name="L311" href="#L311">311</a>                         <strong class="jxr_keyword">break</strong>;
+<a class="jxr_linenumber" name="L312" href="#L312">312</a> 
+<a class="jxr_linenumber" name="L313" href="#L313">313</a>                     <strong class="jxr_keyword">case</strong> BZLIB:
+<a class="jxr_linenumber" name="L314" href="#L314">314</a>                         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/UnsupportedCompressionAlgorithmException.html">UnsupportedCompressionAlgorithmException</a>(
+<a class="jxr_linenumber" name="L315" href="#L315">315</a>                             <span class="jxr_string">"BZLIB2"</span>);
+<a class="jxr_linenumber" name="L316" href="#L316">316</a> 
+<a class="jxr_linenumber" name="L317" href="#L317">317</a>                     <strong class="jxr_keyword">case</strong> LZO:
+<a class="jxr_linenumber" name="L318" href="#L318">318</a>                         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/UnsupportedCompressionAlgorithmException.html">UnsupportedCompressionAlgorithmException</a>(
+<a class="jxr_linenumber" name="L319" href="#L319">319</a>                             <span class="jxr_string">"LZO"</span>);
+<a class="jxr_linenumber" name="L320" href="#L320">320</a> 
+<a class="jxr_linenumber" name="L321" href="#L321">321</a>                     <strong class="jxr_keyword">default</strong>:
+<a class="jxr_linenumber" name="L322" href="#L322">322</a>                         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/UnsupportedCompressionAlgorithmException.html">UnsupportedCompressionAlgorithmException</a>();
+<a class="jxr_linenumber" name="L323" href="#L323">323</a>                     }
+<a class="jxr_linenumber" name="L324" href="#L324">324</a>                 }
+<a class="jxr_linenumber" name="L325" href="#L325">325</a>             }
+<a class="jxr_linenumber" name="L326" href="#L326">326</a>         }
+<a class="jxr_linenumber" name="L327" href="#L327">327</a> 
+<a class="jxr_linenumber" name="L328" href="#L328">328</a>         currBlkIdx++;
+<a class="jxr_linenumber" name="L329" href="#L329">329</a>         readOffset = 0;
+<a class="jxr_linenumber" name="L330" href="#L330">330</a> 
+<a class="jxr_linenumber" name="L331" href="#L331">331</a>         <strong class="jxr_keyword">return</strong> success;
+<a class="jxr_linenumber" name="L332" href="#L332">332</a>     }
+<a class="jxr_linenumber" name="L333" href="#L333">333</a> 
+<a class="jxr_linenumber" name="L334" href="#L334">334</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L335" href="#L335">335</a> <em class="jxr_javadoccomment">     * Read buffer</em>
+<a class="jxr_linenumber" name="L336" href="#L336">336</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L337" href="#L337">337</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> readFully(byte[] b, <strong class="jxr_keyword">int</strong> off, <strong class="jxr_keyword">int</strong> len)
+<a class="jxr_linenumber" name="L338" href="#L338">338</a>         <strong class="jxr_keyword">throws</strong> IOException {
+<a class="jxr_linenumber" name="L339" href="#L339">339</a>         <strong class="jxr_keyword">int</strong> count = IOUtils.readFully(in, b, off, len);
+<a class="jxr_linenumber" name="L340" href="#L340">340</a>         <strong class="jxr_keyword">if</strong> (count &lt; len) {
+<a class="jxr_linenumber" name="L341" href="#L341">341</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/dump/ShortFileException.html">ShortFileException</a>();
+<a class="jxr_linenumber" name="L342" href="#L342">342</a>         }
+<a class="jxr_linenumber" name="L343" href="#L343">343</a> 
+<a class="jxr_linenumber" name="L344" href="#L344">344</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="L345" href="#L345">345</a>     }
+<a class="jxr_linenumber" name="L346" href="#L346">346</a> 
+<a class="jxr_linenumber" name="L347" href="#L347">347</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L348" href="#L348">348</a> <em class="jxr_javadoccomment">     * Get number of bytes read.</em>
+<a class="jxr_linenumber" name="L349" href="#L349">349</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L350" href="#L350">350</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong> getBytesRead() {
+<a class="jxr_linenumber" name="L351" href="#L351">351</a>         <strong class="jxr_keyword">return</strong> bytesRead;
+<a class="jxr_linenumber" name="L352" href="#L352">352</a>     }
+<a class="jxr_linenumber" name="L353" href="#L353">353</a> }
 </pre>
 <hr/>
 <div id="footer">Copyright &#169; 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/dump/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/dump/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/dump/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.dump</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.dump</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/dump/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/dump/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/dump/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.dump</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.dump</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/jar/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/jar/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/jar/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.jar</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.jar</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/jar/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/jar/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/jar/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.jar</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.jar</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/sevenz/Coders.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/sevenz/Coders.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/sevenz/Coders.html Sat Apr 12 16:51:56 2014
@@ -101,7 +101,7 @@
 <a class="jxr_linenumber" name="L93" href="#L93">93</a>              <strong class="jxr_keyword">return</strong> in; 
 <a class="jxr_linenumber" name="L94" href="#L94">94</a>          }
 <a class="jxr_linenumber" name="L95" href="#L95">95</a>          @Override
-<a class="jxr_linenumber" name="L96" href="#L96">96</a>          OutputStream encode(<strong class="jxr_keyword">final</strong> OutputStream out, <strong class="jxr_keyword">final</strong> Object _) {
+<a class="jxr_linenumber" name="L96" href="#L96">96</a>          OutputStream encode(<strong class="jxr_keyword">final</strong> OutputStream out, <strong class="jxr_keyword">final</strong> Object options) {
 <a class="jxr_linenumber" name="L97" href="#L97">97</a>              <strong class="jxr_keyword">return</strong> out;
 <a class="jxr_linenumber" name="L98" href="#L98">98</a>          }
 <a class="jxr_linenumber" name="L99" href="#L99">99</a>      }
@@ -141,7 +141,7 @@
 <a class="jxr_linenumber" name="L133" href="#L133">133</a>             }
 <a class="jxr_linenumber" name="L134" href="#L134">134</a>         }
 <a class="jxr_linenumber" name="L135" href="#L135">135</a>         @Override
-<a class="jxr_linenumber" name="L136" href="#L136">136</a>         OutputStream encode(<strong class="jxr_keyword">final</strong> OutputStream out, <strong class="jxr_keyword">final</strong> Object _) {
+<a class="jxr_linenumber" name="L136" href="#L136">136</a>         OutputStream encode(<strong class="jxr_keyword">final</strong> OutputStream out, <strong class="jxr_keyword">final</strong> Object options) {
 <a class="jxr_linenumber" name="L137" href="#L137">137</a>             <strong class="jxr_keyword">final</strong> FinishableOutputStream fo = opts.getOutputStream(<strong class="jxr_keyword">new</strong> FinishableWrapperOutputStream(out));
 <a class="jxr_linenumber" name="L138" href="#L138">138</a>             <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> FilterOutputStream(fo) {
 <a class="jxr_linenumber" name="L139" href="#L139">139</a>                 @Override

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/sevenz/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/sevenz/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/sevenz/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.sevenz</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.sevenz</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/sevenz/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/sevenz/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/sevenz/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.sevenz</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.sevenz</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.html Sat Apr 12 16:51:56 2014
@@ -426,7 +426,7 @@
 <a class="jxr_linenumber" name="L418" href="#L418">418</a>                             String keyword = coll.toString(CharsetNames.UTF_8);
 <a class="jxr_linenumber" name="L419" href="#L419">419</a>                             <em class="jxr_comment">// Get rest of entry</em>
 <a class="jxr_linenumber" name="L420" href="#L420">420</a>                             byte[] <strong class="jxr_keyword">rest</strong> = <strong class="jxr_keyword">new</strong> byte[len - read];
-<a class="jxr_linenumber" name="L421" href="#L421">421</a>                             <strong class="jxr_keyword">int</strong> got = i.read(<strong class="jxr_keyword">rest</strong>);
+<a class="jxr_linenumber" name="L421" href="#L421">421</a>                             <strong class="jxr_keyword">int</strong> got = IOUtils.readFully(i, <strong class="jxr_keyword">rest</strong>);
 <a class="jxr_linenumber" name="L422" href="#L422">422</a>                             <strong class="jxr_keyword">if</strong> (got != len - read){
 <a class="jxr_linenumber" name="L423" href="#L423">423</a>                                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IOException(<span class="jxr_string">"Failed to read "</span>
 <a class="jxr_linenumber" name="L424" href="#L424">424</a>                                                       + <span class="jxr_string">"Paxheader. Expected "</span>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/tar/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/tar/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/tar/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.tar</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.tar</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/tar/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/tar/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/tar/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.tar</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.tar</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html Sat Apr 12 16:51:56 2014
@@ -82,7 +82,7 @@
 <a class="jxr_linenumber" name="L74" href="#L74">74</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> ByteBuffer buf = ByteBuffer.allocate(ZipArchiveOutputStream.BUFFER_SIZE);
 <a class="jxr_linenumber" name="L75" href="#L75">75</a>  
 <a class="jxr_linenumber" name="L76" href="#L76">76</a>      <em class="jxr_javadoccomment">/** The entry that is currently being read. */</em>
-<a class="jxr_linenumber" name="L77" href="#L77">77</a>      <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html">CurrentEntry</a> current = <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L77" href="#L77">77</a>      <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html">CurrentEntry</a> current = <strong class="jxr_keyword">null</strong>;
 <a class="jxr_linenumber" name="L78" href="#L78">78</a>  
 <a class="jxr_linenumber" name="L79" href="#L79">79</a>      <em class="jxr_javadoccomment">/** Whether the stream has been closed. */</em>
 <a class="jxr_linenumber" name="L80" href="#L80">80</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> closed = false;
@@ -226,7 +226,7 @@
 <a class="jxr_linenumber" name="L218" href="#L218">218</a>         }
 <a class="jxr_linenumber" name="L219" href="#L219">219</a> 
 <a class="jxr_linenumber" name="L220" href="#L220">220</a>         <strong class="jxr_keyword">int</strong> off = WORD;
-<a class="jxr_linenumber" name="L221" href="#L221">221</a>         current = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html">CurrentEntry</a>();
+<a class="jxr_linenumber" name="L221" href="#L221">221</a>         current = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html">CurrentEntry</a>();
 <a class="jxr_linenumber" name="L222" href="#L222">222</a> 
 <a class="jxr_linenumber" name="L223" href="#L223">223</a>         <strong class="jxr_keyword">int</strong> versionMadeBy = ZipShort.getValue(LFH_BUF, off);
 <a class="jxr_linenumber" name="L224" href="#L224">224</a>         off += SHORT;
@@ -959,7 +959,7 @@
 <a class="jxr_linenumber" name="L951" href="#L951">951</a> <em class="jxr_javadoccomment">     * Structure collecting information for the entry that is</em>
 <a class="jxr_linenumber" name="L952" href="#L952">952</a> <em class="jxr_javadoccomment">     * currently being read.</em>
 <a class="jxr_linenumber" name="L953" href="#L953">953</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L954" href="#L954">954</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html">CurrentEntry</a> {
+<a class="jxr_linenumber" name="L954" href="#L954">954</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html">CurrentEntry</a> {
 <a class="jxr_linenumber" name="L955" href="#L955">955</a> 
 <a class="jxr_linenumber" name="L956" href="#L956">956</a>         <em class="jxr_javadoccomment">/**</em>
 <a class="jxr_linenumber" name="L957" href="#L957">957</a> <em class="jxr_javadoccomment">         * Current ZIP entry.</em>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html Sat Apr 12 16:51:56 2014
@@ -129,7 +129,7 @@
 <a class="jxr_linenumber" name="L121" href="#L121">121</a>     <em class="jxr_javadoccomment">/**</em>
 <a class="jxr_linenumber" name="L122" href="#L122">122</a> <em class="jxr_javadoccomment">     * Current entry.</em>
 <a class="jxr_linenumber" name="L123" href="#L123">123</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L124" href="#L124">124</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html">CurrentEntry</a> entry;
+<a class="jxr_linenumber" name="L124" href="#L124">124</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html">CurrentEntry</a> entry;
 <a class="jxr_linenumber" name="L125" href="#L125">125</a> 
 <a class="jxr_linenumber" name="L126" href="#L126">126</a>     <em class="jxr_javadoccomment">/**</em>
 <a class="jxr_linenumber" name="L127" href="#L127">127</a> <em class="jxr_javadoccomment">     * The file comment.</em>
@@ -600,7 +600,7 @@
 <a class="jxr_linenumber" name="L592" href="#L592">592</a>             closeArchiveEntry();
 <a class="jxr_linenumber" name="L593" href="#L593">593</a>         }
 <a class="jxr_linenumber" name="L594" href="#L594">594</a> 
-<a class="jxr_linenumber" name="L595" href="#L595">595</a>         entry = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html">CurrentEntry</a>((ZipArchiveEntry) archiveEntry);
+<a class="jxr_linenumber" name="L595" href="#L595">595</a>         entry = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html">CurrentEntry</a>((ZipArchiveEntry) archiveEntry);
 <a class="jxr_linenumber" name="L596" href="#L596">596</a>         entries.add(entry.entry);
 <a class="jxr_linenumber" name="L597" href="#L597">597</a> 
 <a class="jxr_linenumber" name="L598" href="#L598">598</a>         setDefaults(entry.entry);
@@ -1469,8 +1469,8 @@
 <a class="jxr_linenumber" name="L1461" href="#L1461">1461</a> <em class="jxr_javadoccomment">     * Structure collecting information for the entry that is</em>
 <a class="jxr_linenumber" name="L1462" href="#L1462">1462</a> <em class="jxr_javadoccomment">     * currently being written.</em>
 <a class="jxr_linenumber" name="L1463" href="#L1463">1463</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L1464" href="#L1464">1464</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html">CurrentEntry</a> {
-<a class="jxr_linenumber" name="L1465" href="#L1465">1465</a>         <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html">CurrentEntry</a>(<a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveEntry.html">ZipArchiveEntry</a> entry) {
+<a class="jxr_linenumber" name="L1464" href="#L1464">1464</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html">CurrentEntry</a> {
+<a class="jxr_linenumber" name="L1465" href="#L1465">1465</a>         <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html">CurrentEntry</a>(<a href="../../../../../../org/apache/commons/compress/archivers/zip/ZipArchiveEntry.html">ZipArchiveEntry</a> entry) {
 <a class="jxr_linenumber" name="L1466" href="#L1466">1466</a>             <strong class="jxr_keyword">this</strong>.entry = entry;
 <a class="jxr_linenumber" name="L1467" href="#L1467">1467</a>         }
 <a class="jxr_linenumber" name="L1468" href="#L1468">1468</a>         <em class="jxr_javadoccomment">/**</em>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.zip</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.zip</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -34,7 +34,7 @@
             	<a href="CircularBuffer.html" target="classFrame">CircularBuffer</a>
           	</li>
           	          	<li>
-            	<a href="ZipArchiveOutputStream.html" target="classFrame">CurrentEntry</a>
+            	<a href="ZipArchiveInputStream.html" target="classFrame">CurrentEntry</a>
           	</li>
           	          	<li>
             	<a href="ZipFile.html" target="classFrame">Entry</a>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/archivers/zip/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.archivers.zip</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.archivers.zip</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -67,7 +67,7 @@
             	</tr>
 				            	<tr>
               		<td>
-                		<a href="ZipArchiveOutputStream.html" target="classFrame">CurrentEntry</a>
+                		<a href="ZipArchiveInputStream.html" target="classFrame">CurrentEntry</a>
               		</td>
             	</tr>
 				            	<tr>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/changes/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/changes/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/changes/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.changes</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.changes</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/changes/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/changes/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/changes/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.changes</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.changes</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/CompressorStreamFactory.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/CompressorStreamFactory.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/CompressorStreamFactory.html Sat Apr 12 16:51:56 2014
@@ -187,113 +187,117 @@
 <a class="jxr_linenumber" name="L179" href="#L179">179</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/snappy/FramedSnappyCompressorInputStream.html">FramedSnappyCompressorInputStream</a>(in);
 <a class="jxr_linenumber" name="L180" href="#L180">180</a>             }
 <a class="jxr_linenumber" name="L181" href="#L181">181</a> 
-<a class="jxr_linenumber" name="L182" href="#L182">182</a>         } <strong class="jxr_keyword">catch</strong> (IOException e) {
-<a class="jxr_linenumber" name="L183" href="#L183">183</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(<span class="jxr_string">"Failed to detect Compressor from InputStream."</span>, e);
-<a class="jxr_linenumber" name="L184" href="#L184">184</a>         }
+<a class="jxr_linenumber" name="L182" href="#L182">182</a>             <strong class="jxr_keyword">if</strong> (ZCompressorInputStream.matches(signature, signatureLength)) {
+<a class="jxr_linenumber" name="L183" href="#L183">183</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/z/ZCompressorInputStream.html">ZCompressorInputStream</a>(in);
+<a class="jxr_linenumber" name="L184" href="#L184">184</a>             }
 <a class="jxr_linenumber" name="L185" href="#L185">185</a> 
-<a class="jxr_linenumber" name="L186" href="#L186">186</a>         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(<span class="jxr_string">"No Compressor found for the stream signature."</span>);
-<a class="jxr_linenumber" name="L187" href="#L187">187</a>     }
-<a class="jxr_linenumber" name="L188" href="#L188">188</a> 
-<a class="jxr_linenumber" name="L189" href="#L189">189</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L190" href="#L190">190</a> <em class="jxr_javadoccomment">     * Create a compressor input stream from a compressor name and an input stream.</em>
-<a class="jxr_linenumber" name="L191" href="#L191">191</a> <em class="jxr_javadoccomment">     * </em>
-<a class="jxr_linenumber" name="L192" href="#L192">192</a> <em class="jxr_javadoccomment">     * @param name of the compressor, i.e. "gz", "bzip2", "xz",</em>
-<a class="jxr_linenumber" name="L193" href="#L193">193</a> <em class="jxr_javadoccomment">     *        "lzma", "snappy-raw", "snappy-framed", "pack200", "z"</em>
-<a class="jxr_linenumber" name="L194" href="#L194">194</a> <em class="jxr_javadoccomment">     * @param in the input stream</em>
-<a class="jxr_linenumber" name="L195" href="#L195">195</a> <em class="jxr_javadoccomment">     * @return compressor input stream</em>
-<a class="jxr_linenumber" name="L196" href="#L196">196</a> <em class="jxr_javadoccomment">     * @throws CompressorException if the compressor name is not known</em>
-<a class="jxr_linenumber" name="L197" href="#L197">197</a> <em class="jxr_javadoccomment">     * @throws IllegalArgumentException if the name or input stream is null</em>
-<a class="jxr_linenumber" name="L198" href="#L198">198</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L199" href="#L199">199</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorInputStream.html">CompressorInputStream</a> createCompressorInputStream(<strong class="jxr_keyword">final</strong> String name,
-<a class="jxr_linenumber" name="L200" href="#L200">200</a>             <strong class="jxr_keyword">final</strong> InputStream in) <strong class="jxr_keyword">throws</strong> CompressorException {
-<a class="jxr_linenumber" name="L201" href="#L201">201</a>         <strong class="jxr_keyword">if</strong> (name == <strong class="jxr_keyword">null</strong> || in == <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="L202" href="#L202">202</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(
-<a class="jxr_linenumber" name="L203" href="#L203">203</a>                     <span class="jxr_string">"Compressor name and stream must not be null."</span>);
-<a class="jxr_linenumber" name="L204" href="#L204">204</a>         }
-<a class="jxr_linenumber" name="L205" href="#L205">205</a> 
-<a class="jxr_linenumber" name="L206" href="#L206">206</a>         <strong class="jxr_keyword">try</strong> {
-<a class="jxr_linenumber" name="L207" href="#L207">207</a> 
-<a class="jxr_linenumber" name="L208" href="#L208">208</a>             <strong class="jxr_keyword">if</strong> (GZIP.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L209" href="#L209">209</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/gzip/GzipCompressorInputStream.html">GzipCompressorInputStream</a>(in, decompressConcatenated);
-<a class="jxr_linenumber" name="L210" href="#L210">210</a>             }
+<a class="jxr_linenumber" name="L186" href="#L186">186</a>         } <strong class="jxr_keyword">catch</strong> (IOException e) {
+<a class="jxr_linenumber" name="L187" href="#L187">187</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(<span class="jxr_string">"Failed to detect Compressor from InputStream."</span>, e);
+<a class="jxr_linenumber" name="L188" href="#L188">188</a>         }
+<a class="jxr_linenumber" name="L189" href="#L189">189</a> 
+<a class="jxr_linenumber" name="L190" href="#L190">190</a>         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(<span class="jxr_string">"No Compressor found for the stream signature."</span>);
+<a class="jxr_linenumber" name="L191" href="#L191">191</a>     }
+<a class="jxr_linenumber" name="L192" href="#L192">192</a> 
+<a class="jxr_linenumber" name="L193" href="#L193">193</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L194" href="#L194">194</a> <em class="jxr_javadoccomment">     * Create a compressor input stream from a compressor name and an input stream.</em>
+<a class="jxr_linenumber" name="L195" href="#L195">195</a> <em class="jxr_javadoccomment">     * </em>
+<a class="jxr_linenumber" name="L196" href="#L196">196</a> <em class="jxr_javadoccomment">     * @param name of the compressor, i.e. "gz", "bzip2", "xz",</em>
+<a class="jxr_linenumber" name="L197" href="#L197">197</a> <em class="jxr_javadoccomment">     *        "lzma", "snappy-raw", "snappy-framed", "pack200", "z"</em>
+<a class="jxr_linenumber" name="L198" href="#L198">198</a> <em class="jxr_javadoccomment">     * @param in the input stream</em>
+<a class="jxr_linenumber" name="L199" href="#L199">199</a> <em class="jxr_javadoccomment">     * @return compressor input stream</em>
+<a class="jxr_linenumber" name="L200" href="#L200">200</a> <em class="jxr_javadoccomment">     * @throws CompressorException if the compressor name is not known</em>
+<a class="jxr_linenumber" name="L201" href="#L201">201</a> <em class="jxr_javadoccomment">     * @throws IllegalArgumentException if the name or input stream is null</em>
+<a class="jxr_linenumber" name="L202" href="#L202">202</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L203" href="#L203">203</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorInputStream.html">CompressorInputStream</a> createCompressorInputStream(<strong class="jxr_keyword">final</strong> String name,
+<a class="jxr_linenumber" name="L204" href="#L204">204</a>             <strong class="jxr_keyword">final</strong> InputStream in) <strong class="jxr_keyword">throws</strong> CompressorException {
+<a class="jxr_linenumber" name="L205" href="#L205">205</a>         <strong class="jxr_keyword">if</strong> (name == <strong class="jxr_keyword">null</strong> || in == <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="L206" href="#L206">206</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(
+<a class="jxr_linenumber" name="L207" href="#L207">207</a>                     <span class="jxr_string">"Compressor name and stream must not be null."</span>);
+<a class="jxr_linenumber" name="L208" href="#L208">208</a>         }
+<a class="jxr_linenumber" name="L209" href="#L209">209</a> 
+<a class="jxr_linenumber" name="L210" href="#L210">210</a>         <strong class="jxr_keyword">try</strong> {
 <a class="jxr_linenumber" name="L211" href="#L211">211</a> 
-<a class="jxr_linenumber" name="L212" href="#L212">212</a>             <strong class="jxr_keyword">if</strong> (BZIP2.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L213" href="#L213">213</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">BZip2CompressorInputStream</a>(in, decompressConcatenated);
+<a class="jxr_linenumber" name="L212" href="#L212">212</a>             <strong class="jxr_keyword">if</strong> (GZIP.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L213" href="#L213">213</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/gzip/GzipCompressorInputStream.html">GzipCompressorInputStream</a>(in, decompressConcatenated);
 <a class="jxr_linenumber" name="L214" href="#L214">214</a>             }
 <a class="jxr_linenumber" name="L215" href="#L215">215</a> 
-<a class="jxr_linenumber" name="L216" href="#L216">216</a>             <strong class="jxr_keyword">if</strong> (XZ.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L217" href="#L217">217</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/xz/XZCompressorInputStream.html">XZCompressorInputStream</a>(in, decompressConcatenated);
+<a class="jxr_linenumber" name="L216" href="#L216">216</a>             <strong class="jxr_keyword">if</strong> (BZIP2.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L217" href="#L217">217</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">BZip2CompressorInputStream</a>(in, decompressConcatenated);
 <a class="jxr_linenumber" name="L218" href="#L218">218</a>             }
 <a class="jxr_linenumber" name="L219" href="#L219">219</a> 
-<a class="jxr_linenumber" name="L220" href="#L220">220</a>             <strong class="jxr_keyword">if</strong> (LZMA.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L221" href="#L221">221</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/lzma/LZMACompressorInputStream.html">LZMACompressorInputStream</a>(in);
+<a class="jxr_linenumber" name="L220" href="#L220">220</a>             <strong class="jxr_keyword">if</strong> (XZ.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L221" href="#L221">221</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/xz/XZCompressorInputStream.html">XZCompressorInputStream</a>(in, decompressConcatenated);
 <a class="jxr_linenumber" name="L222" href="#L222">222</a>             }
 <a class="jxr_linenumber" name="L223" href="#L223">223</a> 
-<a class="jxr_linenumber" name="L224" href="#L224">224</a>             <strong class="jxr_keyword">if</strong> (PACK200.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L225" href="#L225">225</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/pack200/Pack200CompressorInputStream.html">Pack200CompressorInputStream</a>(in);
+<a class="jxr_linenumber" name="L224" href="#L224">224</a>             <strong class="jxr_keyword">if</strong> (LZMA.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L225" href="#L225">225</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/lzma/LZMACompressorInputStream.html">LZMACompressorInputStream</a>(in);
 <a class="jxr_linenumber" name="L226" href="#L226">226</a>             }
 <a class="jxr_linenumber" name="L227" href="#L227">227</a> 
-<a class="jxr_linenumber" name="L228" href="#L228">228</a>             <strong class="jxr_keyword">if</strong> (SNAPPY_RAW.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L229" href="#L229">229</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/snappy/SnappyCompressorInputStream.html">SnappyCompressorInputStream</a>(in);
+<a class="jxr_linenumber" name="L228" href="#L228">228</a>             <strong class="jxr_keyword">if</strong> (PACK200.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L229" href="#L229">229</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/pack200/Pack200CompressorInputStream.html">Pack200CompressorInputStream</a>(in);
 <a class="jxr_linenumber" name="L230" href="#L230">230</a>             }
 <a class="jxr_linenumber" name="L231" href="#L231">231</a> 
-<a class="jxr_linenumber" name="L232" href="#L232">232</a>             <strong class="jxr_keyword">if</strong> (SNAPPY_FRAMED.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L233" href="#L233">233</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/snappy/FramedSnappyCompressorInputStream.html">FramedSnappyCompressorInputStream</a>(in);
+<a class="jxr_linenumber" name="L232" href="#L232">232</a>             <strong class="jxr_keyword">if</strong> (SNAPPY_RAW.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L233" href="#L233">233</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/snappy/SnappyCompressorInputStream.html">SnappyCompressorInputStream</a>(in);
 <a class="jxr_linenumber" name="L234" href="#L234">234</a>             }
 <a class="jxr_linenumber" name="L235" href="#L235">235</a> 
-<a class="jxr_linenumber" name="L236" href="#L236">236</a>             <strong class="jxr_keyword">if</strong> (Z.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L237" href="#L237">237</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/z/ZCompressorInputStream.html">ZCompressorInputStream</a>(in);
+<a class="jxr_linenumber" name="L236" href="#L236">236</a>             <strong class="jxr_keyword">if</strong> (SNAPPY_FRAMED.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L237" href="#L237">237</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/snappy/FramedSnappyCompressorInputStream.html">FramedSnappyCompressorInputStream</a>(in);
 <a class="jxr_linenumber" name="L238" href="#L238">238</a>             }
 <a class="jxr_linenumber" name="L239" href="#L239">239</a> 
-<a class="jxr_linenumber" name="L240" href="#L240">240</a>         } <strong class="jxr_keyword">catch</strong> (IOException e) {
-<a class="jxr_linenumber" name="L241" href="#L241">241</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(
-<a class="jxr_linenumber" name="L242" href="#L242">242</a>                     <span class="jxr_string">"Could not create CompressorInputStream."</span>, e);
-<a class="jxr_linenumber" name="L243" href="#L243">243</a>         }
-<a class="jxr_linenumber" name="L244" href="#L244">244</a>         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(<span class="jxr_string">"Compressor: "</span> + name + <span class="jxr_string">" not found."</span>);
-<a class="jxr_linenumber" name="L245" href="#L245">245</a>     }
-<a class="jxr_linenumber" name="L246" href="#L246">246</a> 
-<a class="jxr_linenumber" name="L247" href="#L247">247</a>     <em class="jxr_javadoccomment">/**</em>
-<a class="jxr_linenumber" name="L248" href="#L248">248</a> <em class="jxr_javadoccomment">     * Create an compressor output stream from an compressor name and an input stream.</em>
-<a class="jxr_linenumber" name="L249" href="#L249">249</a> <em class="jxr_javadoccomment">     * </em>
-<a class="jxr_linenumber" name="L250" href="#L250">250</a> <em class="jxr_javadoccomment">     * @param name the compressor name, i.e. "gz", "bzip2", "xz", or "pack200"</em>
-<a class="jxr_linenumber" name="L251" href="#L251">251</a> <em class="jxr_javadoccomment">     * @param out the output stream</em>
-<a class="jxr_linenumber" name="L252" href="#L252">252</a> <em class="jxr_javadoccomment">     * @return the compressor output stream</em>
-<a class="jxr_linenumber" name="L253" href="#L253">253</a> <em class="jxr_javadoccomment">     * @throws CompressorException if the archiver name is not known</em>
-<a class="jxr_linenumber" name="L254" href="#L254">254</a> <em class="jxr_javadoccomment">     * @throws IllegalArgumentException if the archiver name or stream is null</em>
-<a class="jxr_linenumber" name="L255" href="#L255">255</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L256" href="#L256">256</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorOutputStream.html">CompressorOutputStream</a> createCompressorOutputStream(
-<a class="jxr_linenumber" name="L257" href="#L257">257</a>             <strong class="jxr_keyword">final</strong> String name, <strong class="jxr_keyword">final</strong> OutputStream out)
-<a class="jxr_linenumber" name="L258" href="#L258">258</a>             <strong class="jxr_keyword">throws</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a> {
-<a class="jxr_linenumber" name="L259" href="#L259">259</a>         <strong class="jxr_keyword">if</strong> (name == <strong class="jxr_keyword">null</strong> || out == <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="L260" href="#L260">260</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(
-<a class="jxr_linenumber" name="L261" href="#L261">261</a>                     <span class="jxr_string">"Compressor name and stream must not be null."</span>);
-<a class="jxr_linenumber" name="L262" href="#L262">262</a>         }
-<a class="jxr_linenumber" name="L263" href="#L263">263</a> 
-<a class="jxr_linenumber" name="L264" href="#L264">264</a>         <strong class="jxr_keyword">try</strong> {
-<a class="jxr_linenumber" name="L265" href="#L265">265</a> 
-<a class="jxr_linenumber" name="L266" href="#L266">266</a>             <strong class="jxr_keyword">if</strong> (GZIP.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L267" href="#L267">267</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/gzip/GzipCompressorOutputStream.html">GzipCompressorOutputStream</a>(out);
-<a class="jxr_linenumber" name="L268" href="#L268">268</a>             }
+<a class="jxr_linenumber" name="L240" href="#L240">240</a>             <strong class="jxr_keyword">if</strong> (Z.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L241" href="#L241">241</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/z/ZCompressorInputStream.html">ZCompressorInputStream</a>(in);
+<a class="jxr_linenumber" name="L242" href="#L242">242</a>             }
+<a class="jxr_linenumber" name="L243" href="#L243">243</a> 
+<a class="jxr_linenumber" name="L244" href="#L244">244</a>         } <strong class="jxr_keyword">catch</strong> (IOException e) {
+<a class="jxr_linenumber" name="L245" href="#L245">245</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(
+<a class="jxr_linenumber" name="L246" href="#L246">246</a>                     <span class="jxr_string">"Could not create CompressorInputStream."</span>, e);
+<a class="jxr_linenumber" name="L247" href="#L247">247</a>         }
+<a class="jxr_linenumber" name="L248" href="#L248">248</a>         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(<span class="jxr_string">"Compressor: "</span> + name + <span class="jxr_string">" not found."</span>);
+<a class="jxr_linenumber" name="L249" href="#L249">249</a>     }
+<a class="jxr_linenumber" name="L250" href="#L250">250</a> 
+<a class="jxr_linenumber" name="L251" href="#L251">251</a>     <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L252" href="#L252">252</a> <em class="jxr_javadoccomment">     * Create an compressor output stream from an compressor name and an input stream.</em>
+<a class="jxr_linenumber" name="L253" href="#L253">253</a> <em class="jxr_javadoccomment">     * </em>
+<a class="jxr_linenumber" name="L254" href="#L254">254</a> <em class="jxr_javadoccomment">     * @param name the compressor name, i.e. "gz", "bzip2", "xz", or "pack200"</em>
+<a class="jxr_linenumber" name="L255" href="#L255">255</a> <em class="jxr_javadoccomment">     * @param out the output stream</em>
+<a class="jxr_linenumber" name="L256" href="#L256">256</a> <em class="jxr_javadoccomment">     * @return the compressor output stream</em>
+<a class="jxr_linenumber" name="L257" href="#L257">257</a> <em class="jxr_javadoccomment">     * @throws CompressorException if the archiver name is not known</em>
+<a class="jxr_linenumber" name="L258" href="#L258">258</a> <em class="jxr_javadoccomment">     * @throws IllegalArgumentException if the archiver name or stream is null</em>
+<a class="jxr_linenumber" name="L259" href="#L259">259</a> <em class="jxr_javadoccomment">     */</em>
+<a class="jxr_linenumber" name="L260" href="#L260">260</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorOutputStream.html">CompressorOutputStream</a> createCompressorOutputStream(
+<a class="jxr_linenumber" name="L261" href="#L261">261</a>             <strong class="jxr_keyword">final</strong> String name, <strong class="jxr_keyword">final</strong> OutputStream out)
+<a class="jxr_linenumber" name="L262" href="#L262">262</a>             <strong class="jxr_keyword">throws</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a> {
+<a class="jxr_linenumber" name="L263" href="#L263">263</a>         <strong class="jxr_keyword">if</strong> (name == <strong class="jxr_keyword">null</strong> || out == <strong class="jxr_keyword">null</strong>) {
+<a class="jxr_linenumber" name="L264" href="#L264">264</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalArgumentException(
+<a class="jxr_linenumber" name="L265" href="#L265">265</a>                     <span class="jxr_string">"Compressor name and stream must not be null."</span>);
+<a class="jxr_linenumber" name="L266" href="#L266">266</a>         }
+<a class="jxr_linenumber" name="L267" href="#L267">267</a> 
+<a class="jxr_linenumber" name="L268" href="#L268">268</a>         <strong class="jxr_keyword">try</strong> {
 <a class="jxr_linenumber" name="L269" href="#L269">269</a> 
-<a class="jxr_linenumber" name="L270" href="#L270">270</a>             <strong class="jxr_keyword">if</strong> (BZIP2.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L271" href="#L271">271</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">BZip2CompressorOutputStream</a>(out);
+<a class="jxr_linenumber" name="L270" href="#L270">270</a>             <strong class="jxr_keyword">if</strong> (GZIP.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L271" href="#L271">271</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/gzip/GzipCompressorOutputStream.html">GzipCompressorOutputStream</a>(out);
 <a class="jxr_linenumber" name="L272" href="#L272">272</a>             }
 <a class="jxr_linenumber" name="L273" href="#L273">273</a> 
-<a class="jxr_linenumber" name="L274" href="#L274">274</a>             <strong class="jxr_keyword">if</strong> (XZ.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L275" href="#L275">275</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/xz/XZCompressorOutputStream.html">XZCompressorOutputStream</a>(out);
+<a class="jxr_linenumber" name="L274" href="#L274">274</a>             <strong class="jxr_keyword">if</strong> (BZIP2.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L275" href="#L275">275</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">BZip2CompressorOutputStream</a>(out);
 <a class="jxr_linenumber" name="L276" href="#L276">276</a>             }
 <a class="jxr_linenumber" name="L277" href="#L277">277</a> 
-<a class="jxr_linenumber" name="L278" href="#L278">278</a>             <strong class="jxr_keyword">if</strong> (PACK200.equalsIgnoreCase(name)) {
-<a class="jxr_linenumber" name="L279" href="#L279">279</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/pack200/Pack200CompressorOutputStream.html">Pack200CompressorOutputStream</a>(out);
+<a class="jxr_linenumber" name="L278" href="#L278">278</a>             <strong class="jxr_keyword">if</strong> (XZ.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L279" href="#L279">279</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/xz/XZCompressorOutputStream.html">XZCompressorOutputStream</a>(out);
 <a class="jxr_linenumber" name="L280" href="#L280">280</a>             }
 <a class="jxr_linenumber" name="L281" href="#L281">281</a> 
-<a class="jxr_linenumber" name="L282" href="#L282">282</a>         } <strong class="jxr_keyword">catch</strong> (IOException e) {
-<a class="jxr_linenumber" name="L283" href="#L283">283</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(
-<a class="jxr_linenumber" name="L284" href="#L284">284</a>                     <span class="jxr_string">"Could not create CompressorOutputStream"</span>, e);
-<a class="jxr_linenumber" name="L285" href="#L285">285</a>         }
-<a class="jxr_linenumber" name="L286" href="#L286">286</a>         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(<span class="jxr_string">"Compressor: "</span> + name + <span class="jxr_string">" not found."</span>);
-<a class="jxr_linenumber" name="L287" href="#L287">287</a>     }
-<a class="jxr_linenumber" name="L288" href="#L288">288</a> }
+<a class="jxr_linenumber" name="L282" href="#L282">282</a>             <strong class="jxr_keyword">if</strong> (PACK200.equalsIgnoreCase(name)) {
+<a class="jxr_linenumber" name="L283" href="#L283">283</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/pack200/Pack200CompressorOutputStream.html">Pack200CompressorOutputStream</a>(out);
+<a class="jxr_linenumber" name="L284" href="#L284">284</a>             }
+<a class="jxr_linenumber" name="L285" href="#L285">285</a> 
+<a class="jxr_linenumber" name="L286" href="#L286">286</a>         } <strong class="jxr_keyword">catch</strong> (IOException e) {
+<a class="jxr_linenumber" name="L287" href="#L287">287</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(
+<a class="jxr_linenumber" name="L288" href="#L288">288</a>                     <span class="jxr_string">"Could not create CompressorOutputStream"</span>, e);
+<a class="jxr_linenumber" name="L289" href="#L289">289</a>         }
+<a class="jxr_linenumber" name="L290" href="#L290">290</a>         <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/compress/compressors/CompressorException.html">CompressorException</a>(<span class="jxr_string">"Compressor: "</span> + name + <span class="jxr_string">" not found."</span>);
+<a class="jxr_linenumber" name="L291" href="#L291">291</a>     }
+<a class="jxr_linenumber" name="L292" href="#L292">292</a> }
 </pre>
 <hr/>
 <div id="footer">Copyright &#169; 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>