Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/AbstractRDFTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/AbstractRDFTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/AbstractRDFTest.html
 Thu Nov 17 14:48:10 2016
@@ -64,9 +64,9 @@
 <a class="jxr_linenumber" name="L56" href="#L56">56</a>  
 <a class="jxr_linenumber" name="L57" href="#L57">57</a>      @Test
 <a class="jxr_linenumber" name="L58" href="#L58">58</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateBlankNode() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L59" href="#L59">59</a>          BlankNode 
bnode = factory.createBlankNode();
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>          <strong 
class="jxr_keyword">final</strong> BlankNode bnode = factory.createBlankNode();
 <a class="jxr_linenumber" name="L60" href="#L60">60</a>  
-<a class="jxr_linenumber" name="L61" href="#L61">61</a>          BlankNode 
bnode2 = factory.createBlankNode();
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>          <strong 
class="jxr_keyword">final</strong> BlankNode bnode2 = factory.createBlankNode();
 <a class="jxr_linenumber" name="L62" href="#L62">62</a>          
assertNotEquals(<span class="jxr_string">"Second blank node has not got a 
unique internal identifier"</span>, bnode.uniqueReference(),
 <a class="jxr_linenumber" name="L63" href="#L63">63</a>                  
bnode2.uniqueReference());
 <a class="jxr_linenumber" name="L64" href="#L64">64</a>      }
@@ -75,7 +75,7 @@
 <a class="jxr_linenumber" name="L67" href="#L67">67</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateBlankNodeIdentifierEmpty() <strong 
class="jxr_keyword">throws</strong> Exception {
 <a class="jxr_linenumber" name="L68" href="#L68">68</a>          <strong 
class="jxr_keyword">try</strong> {
 <a class="jxr_linenumber" name="L69" href="#L69">69</a>              
factory.createBlankNode(<span class="jxr_string">""</span>);
-<a class="jxr_linenumber" name="L70" href="#L70">70</a>          } <strong 
class="jxr_keyword">catch</strong> (IllegalArgumentException e) {
+<a class="jxr_linenumber" name="L70" href="#L70">70</a>          } <strong 
class="jxr_keyword">catch</strong> (<strong class="jxr_keyword">final</strong> 
IllegalArgumentException e) {
 <a class="jxr_linenumber" name="L71" href="#L71">71</a>              <em 
class="jxr_comment">// Expected exception</em>
 <a class="jxr_linenumber" name="L72" href="#L72">72</a>          }
 <a class="jxr_linenumber" name="L73" href="#L73">73</a>      }
@@ -124,12 +124,12 @@
 <a class="jxr_linenumber" name="L116" href="#L116">116</a> 
 <a class="jxr_linenumber" name="L117" href="#L117">117</a>     @Test
 <a class="jxr_linenumber" name="L118" href="#L118">118</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateGraph() {
-<a class="jxr_linenumber" name="L119" href="#L119">119</a>         Graph graph 
= factory.createGraph();
+<a class="jxr_linenumber" name="L119" href="#L119">119</a>         <strong 
class="jxr_keyword">final</strong> Graph graph = factory.createGraph();
 <a class="jxr_linenumber" name="L120" href="#L120">120</a> 
 <a class="jxr_linenumber" name="L121" href="#L121">121</a>         
assertEquals(<span class="jxr_string">"Graph was not empty"</span>, 0, 
graph.size());
 <a class="jxr_linenumber" name="L122" href="#L122">122</a>         
graph.add(factory.createBlankNode(), factory.createIRI(<span 
class="jxr_string">"http://example.com/";</span>), factory.createBlankNode());
 <a class="jxr_linenumber" name="L123" href="#L123">123</a> 
-<a class="jxr_linenumber" name="L124" href="#L124">124</a>         Graph 
graph2 = factory.createGraph();
+<a class="jxr_linenumber" name="L124" href="#L124">124</a>         <strong 
class="jxr_keyword">final</strong> Graph graph2 = factory.createGraph();
 <a class="jxr_linenumber" name="L125" href="#L125">125</a>         
assertNotSame(graph, graph2);
 <a class="jxr_linenumber" name="L126" href="#L126">126</a>         
assertEquals(<span class="jxr_string">"Graph was empty after adding"</span>, 1, 
graph.size());
 <a class="jxr_linenumber" name="L127" href="#L127">127</a>         
assertEquals(<span class="jxr_string">"New graph was not empty"</span>, 0, 
graph2.size());
@@ -137,33 +137,33 @@
 <a class="jxr_linenumber" name="L129" href="#L129">129</a> 
 <a class="jxr_linenumber" name="L130" href="#L130">130</a>     @Test
 <a class="jxr_linenumber" name="L131" href="#L131">131</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateIRI() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L132" href="#L132">132</a>         IRI example 
= factory.createIRI(<span class="jxr_string">"http://example.com/";</span>);
+<a class="jxr_linenumber" name="L132" href="#L132">132</a>         <strong 
class="jxr_keyword">final</strong> IRI example = factory.createIRI(<span 
class="jxr_string">"http://example.com/";</span>);
 <a class="jxr_linenumber" name="L133" href="#L133">133</a> 
 <a class="jxr_linenumber" name="L134" href="#L134">134</a>         
assertEquals(<span class="jxr_string">"http://example.com/";</span>, 
example.getIRIString());
 <a class="jxr_linenumber" name="L135" href="#L135">135</a>         
assertEquals(<span class="jxr_string">"&lt;http://example.com/&gt;";</span>, 
example.ntriplesString());
 <a class="jxr_linenumber" name="L136" href="#L136">136</a> 
-<a class="jxr_linenumber" name="L137" href="#L137">137</a>         IRI term = 
factory.createIRI(<span 
class="jxr_string">"http://example.com/vocab#term";</span>);
+<a class="jxr_linenumber" name="L137" href="#L137">137</a>         <strong 
class="jxr_keyword">final</strong> IRI term = factory.createIRI(<span 
class="jxr_string">"http://example.com/vocab#term";</span>);
 <a class="jxr_linenumber" name="L138" href="#L138">138</a>         
assertEquals(<span class="jxr_string">"http://example.com/vocab#term";</span>, 
term.getIRIString());
 <a class="jxr_linenumber" name="L139" href="#L139">139</a>         
assertEquals(<span 
class="jxr_string">"&lt;http://example.com/vocab#term&gt;";</span>, 
term.ntriplesString());
 <a class="jxr_linenumber" name="L140" href="#L140">140</a> 
 <a class="jxr_linenumber" name="L141" href="#L141">141</a>         <em 
class="jxr_comment">// and now for the international fun!</em>
 <a class="jxr_linenumber" name="L142" href="#L142">142</a> 
-<a class="jxr_linenumber" name="L143" href="#L143">143</a>         IRI latin1 
= factory.createIRI(<span 
class="jxr_string">"http://accént.example.com/première";</span>);
+<a class="jxr_linenumber" name="L143" href="#L143">143</a>         <strong 
class="jxr_keyword">final</strong> IRI latin1 = factory.createIRI(<span 
class="jxr_string">"http://accént.example.com/première";</span>);
 <a class="jxr_linenumber" name="L144" href="#L144">144</a>         
assertEquals(<span 
class="jxr_string">"http://accént.example.com/première";</span>, 
latin1.getIRIString());
 <a class="jxr_linenumber" name="L145" href="#L145">145</a>         
assertEquals(<span 
class="jxr_string">"&lt;http://accént.example.com/première&gt;";</span>, 
latin1.ntriplesString());
 <a class="jxr_linenumber" name="L146" href="#L146">146</a> 
-<a class="jxr_linenumber" name="L147" href="#L147">147</a>         IRI 
cyrillic = factory.createIRI(<span 
class="jxr_string">"http://example.испытание/Кириллица";</span>);
+<a class="jxr_linenumber" name="L147" href="#L147">147</a>         <strong 
class="jxr_keyword">final</strong> IRI cyrillic = factory.createIRI(<span 
class="jxr_string">"http://example.испытание/Кириллица";</span>);
 <a class="jxr_linenumber" name="L148" href="#L148">148</a>         
assertEquals(<span 
class="jxr_string">"http://example.испытание/Кириллица";</span>,
 cyrillic.getIRIString());
 <a class="jxr_linenumber" name="L149" href="#L149">149</a>         
assertEquals(<span 
class="jxr_string">"&lt;http://example.испытание/Кириллица&gt;";</span>,
 cyrillic.ntriplesString());
 <a class="jxr_linenumber" name="L150" href="#L150">150</a> 
-<a class="jxr_linenumber" name="L151" href="#L151">151</a>         IRI deseret 
= factory.createIRI(<span 
class="jxr_string">"http://𐐀.example.com/𐐀";</span>);
+<a class="jxr_linenumber" name="L151" href="#L151">151</a>         <strong 
class="jxr_keyword">final</strong> IRI deseret = factory.createIRI(<span 
class="jxr_string">"http://𐐀.example.com/𐐀";</span>);
 <a class="jxr_linenumber" name="L152" href="#L152">152</a>         
assertEquals(<span class="jxr_string">"http://𐐀.example.com/𐐀";</span>, 
deseret.getIRIString());
 <a class="jxr_linenumber" name="L153" href="#L153">153</a>         
assertEquals(<span 
class="jxr_string">"&lt;http://𐐀.example.com/𐐀&gt;";</span>, 
deseret.ntriplesString());
 <a class="jxr_linenumber" name="L154" href="#L154">154</a>     }
 <a class="jxr_linenumber" name="L155" href="#L155">155</a> 
 <a class="jxr_linenumber" name="L156" href="#L156">156</a>     @Test
 <a class="jxr_linenumber" name="L157" href="#L157">157</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateLiteral() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L158" href="#L158">158</a>         Literal 
example = factory.createLiteral(<span class="jxr_string">"Example"</span>);
+<a class="jxr_linenumber" name="L158" href="#L158">158</a>         <strong 
class="jxr_keyword">final</strong> Literal example = 
factory.createLiteral(<span class="jxr_string">"Example"</span>);
 <a class="jxr_linenumber" name="L159" href="#L159">159</a>         
assertEquals(<span class="jxr_string">"Example"</span>, 
example.getLexicalForm());
 <a class="jxr_linenumber" name="L160" href="#L160">160</a>         
assertFalse(example.getLanguageTag().isPresent());
 <a class="jxr_linenumber" name="L161" href="#L161">161</a>         
assertEquals(<span 
class="jxr_string">"http://www.w3.org/2001/XMLSchema#string";</span>, 
example.getDatatype().getIRIString());
@@ -173,7 +173,7 @@
 <a class="jxr_linenumber" name="L165" href="#L165">165</a> 
 <a class="jxr_linenumber" name="L166" href="#L166">166</a>     @Test
 <a class="jxr_linenumber" name="L167" href="#L167">167</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateLiteralDateTime() <strong class="jxr_keyword">throws</strong> 
Exception {
-<a class="jxr_linenumber" name="L168" href="#L168">168</a>         Literal 
dateTime = factory.createLiteral(<span 
class="jxr_string">"2014-12-27T00:50:00T-0600"</span>,
+<a class="jxr_linenumber" name="L168" href="#L168">168</a>         <strong 
class="jxr_keyword">final</strong> Literal dateTime = 
factory.createLiteral(<span 
class="jxr_string">"2014-12-27T00:50:00T-0600"</span>,
 <a class="jxr_linenumber" name="L169" href="#L169">169</a>                 
factory.createIRI(<span 
class="jxr_string">"http://www.w3.org/2001/XMLSchema#dateTime";</span>));
 <a class="jxr_linenumber" name="L170" href="#L170">170</a>         
assertEquals(<span class="jxr_string">"2014-12-27T00:50:00T-0600"</span>, 
dateTime.getLexicalForm());
 <a class="jxr_linenumber" name="L171" href="#L171">171</a>         
assertFalse(dateTime.getLanguageTag().isPresent());
@@ -184,7 +184,7 @@
 <a class="jxr_linenumber" name="L176" href="#L176">176</a> 
 <a class="jxr_linenumber" name="L177" href="#L177">177</a>     @Test
 <a class="jxr_linenumber" name="L178" href="#L178">178</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateLiteralLang() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L179" href="#L179">179</a>         Literal 
example = factory.createLiteral(<span class="jxr_string">"Example"</span>, 
<span class="jxr_string">"en"</span>);
+<a class="jxr_linenumber" name="L179" href="#L179">179</a>         <strong 
class="jxr_keyword">final</strong> Literal example = 
factory.createLiteral(<span class="jxr_string">"Example"</span>, <span 
class="jxr_string">"en"</span>);
 <a class="jxr_linenumber" name="L180" href="#L180">180</a> 
 <a class="jxr_linenumber" name="L181" href="#L181">181</a>         
assertEquals(<span class="jxr_string">"Example"</span>, 
example.getLexicalForm());
 <a class="jxr_linenumber" name="L182" href="#L182">182</a>         
assertEquals(<span class="jxr_string">"en"</span>, 
example.getLanguageTag().get());
@@ -195,7 +195,7 @@
 <a class="jxr_linenumber" name="L187" href="#L187">187</a>     @Test
 <a class="jxr_linenumber" name="L188" href="#L188">188</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateLiteralLangISO693_3() <strong class="jxr_keyword">throws</strong> 
Exception {
 <a class="jxr_linenumber" name="L189" href="#L189">189</a>         <em 
class="jxr_comment">// see https://issues.apache.org/jira/browse/JENA-827</em>
-<a class="jxr_linenumber" name="L190" href="#L190">190</a>         Literal vls 
= factory.createLiteral(<span class="jxr_string">"Herbert Van de 
Sompel"</span>, <span class="jxr_string">"vls"</span>); <em 
class="jxr_comment">// JENA-827</em>
+<a class="jxr_linenumber" name="L190" href="#L190">190</a>         <strong 
class="jxr_keyword">final</strong> Literal vls = factory.createLiteral(<span 
class="jxr_string">"Herbert Van de Sompel"</span>, <span 
class="jxr_string">"vls"</span>); <em class="jxr_comment">// JENA-827</em>
 <a class="jxr_linenumber" name="L191" href="#L191">191</a> 
 <a class="jxr_linenumber" name="L192" href="#L192">192</a>         
assertEquals(<span class="jxr_string">"vls"</span>, vls.getLanguageTag().get());
 <a class="jxr_linenumber" name="L193" href="#L193">193</a>         
assertEquals(<span 
class="jxr_string">"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString";</span>,
 vls.getDatatype().getIRIString());
@@ -204,7 +204,7 @@
 <a class="jxr_linenumber" name="L196" href="#L196">196</a> 
 <a class="jxr_linenumber" name="L197" href="#L197">197</a>     @Test
 <a class="jxr_linenumber" name="L198" href="#L198">198</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateLiteralString() <strong class="jxr_keyword">throws</strong> Exception 
{
-<a class="jxr_linenumber" name="L199" href="#L199">199</a>         Literal 
example = factory.createLiteral(<span class="jxr_string">"Example"</span>,
+<a class="jxr_linenumber" name="L199" href="#L199">199</a>         <strong 
class="jxr_keyword">final</strong> Literal example = 
factory.createLiteral(<span class="jxr_string">"Example"</span>,
 <a class="jxr_linenumber" name="L200" href="#L200">200</a>                 
factory.createIRI(<span 
class="jxr_string">"http://www.w3.org/2001/XMLSchema#string";</span>));
 <a class="jxr_linenumber" name="L201" href="#L201">201</a>         
assertEquals(<span class="jxr_string">"Example"</span>, 
example.getLexicalForm());
 <a class="jxr_linenumber" name="L202" href="#L202">202</a>         
assertFalse(example.getLanguageTag().isPresent());
@@ -215,10 +215,10 @@
 <a class="jxr_linenumber" name="L207" href="#L207">207</a> 
 <a class="jxr_linenumber" name="L208" href="#L208">208</a>     @Test
 <a class="jxr_linenumber" name="L209" href="#L209">209</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateTripleBnodeBnode() {
-<a class="jxr_linenumber" name="L210" href="#L210">210</a>         BlankNode 
subject = factory.createBlankNode(<span class="jxr_string">"b1"</span>);
-<a class="jxr_linenumber" name="L211" href="#L211">211</a>         IRI 
predicate = factory.createIRI(<span 
class="jxr_string">"http://example.com/pred";</span>);
-<a class="jxr_linenumber" name="L212" href="#L212">212</a>         BlankNode 
object = factory.createBlankNode(<span class="jxr_string">"b2"</span>);
-<a class="jxr_linenumber" name="L213" href="#L213">213</a>         Triple 
triple = factory.createTriple(subject, predicate, object);
+<a class="jxr_linenumber" name="L210" href="#L210">210</a>         <strong 
class="jxr_keyword">final</strong> BlankNode subject = 
factory.createBlankNode(<span class="jxr_string">"b1"</span>);
+<a class="jxr_linenumber" name="L211" href="#L211">211</a>         <strong 
class="jxr_keyword">final</strong> IRI predicate = factory.createIRI(<span 
class="jxr_string">"http://example.com/pred";</span>);
+<a class="jxr_linenumber" name="L212" href="#L212">212</a>         <strong 
class="jxr_keyword">final</strong> BlankNode object = 
factory.createBlankNode(<span class="jxr_string">"b2"</span>);
+<a class="jxr_linenumber" name="L213" href="#L213">213</a>         <strong 
class="jxr_keyword">final</strong> Triple triple = 
factory.createTriple(subject, predicate, object);
 <a class="jxr_linenumber" name="L214" href="#L214">214</a> 
 <a class="jxr_linenumber" name="L215" href="#L215">215</a>         <em 
class="jxr_comment">// bnode equivalence should be OK as we used the same</em>
 <a class="jxr_linenumber" name="L216" href="#L216">216</a>         <em 
class="jxr_comment">// factory and have not yet inserted Triple into a 
Graph</em>
@@ -229,10 +229,10 @@
 <a class="jxr_linenumber" name="L221" href="#L221">221</a> 
 <a class="jxr_linenumber" name="L222" href="#L222">222</a>     @Test
 <a class="jxr_linenumber" name="L223" href="#L223">223</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateTripleBnodeIRI() {
-<a class="jxr_linenumber" name="L224" href="#L224">224</a>         BlankNode 
subject = factory.createBlankNode(<span class="jxr_string">"b1"</span>);
-<a class="jxr_linenumber" name="L225" href="#L225">225</a>         IRI 
predicate = factory.createIRI(<span 
class="jxr_string">"http://example.com/pred";</span>);
-<a class="jxr_linenumber" name="L226" href="#L226">226</a>         IRI object 
= factory.createIRI(<span class="jxr_string">"http://example.com/obj";</span>);
-<a class="jxr_linenumber" name="L227" href="#L227">227</a>         Triple 
triple = factory.createTriple(subject, predicate, object);
+<a class="jxr_linenumber" name="L224" href="#L224">224</a>         <strong 
class="jxr_keyword">final</strong> BlankNode subject = 
factory.createBlankNode(<span class="jxr_string">"b1"</span>);
+<a class="jxr_linenumber" name="L225" href="#L225">225</a>         <strong 
class="jxr_keyword">final</strong> IRI predicate = factory.createIRI(<span 
class="jxr_string">"http://example.com/pred";</span>);
+<a class="jxr_linenumber" name="L226" href="#L226">226</a>         <strong 
class="jxr_keyword">final</strong> IRI object = factory.createIRI(<span 
class="jxr_string">"http://example.com/obj";</span>);
+<a class="jxr_linenumber" name="L227" href="#L227">227</a>         <strong 
class="jxr_keyword">final</strong> Triple triple = 
factory.createTriple(subject, predicate, object);
 <a class="jxr_linenumber" name="L228" href="#L228">228</a> 
 <a class="jxr_linenumber" name="L229" href="#L229">229</a>         <em 
class="jxr_comment">// bnode equivalence should be OK as we used the same</em>
 <a class="jxr_linenumber" name="L230" href="#L230">230</a>         <em 
class="jxr_comment">// factory and have not yet inserted Triple into a 
Graph</em>
@@ -243,10 +243,10 @@
 <a class="jxr_linenumber" name="L235" href="#L235">235</a> 
 <a class="jxr_linenumber" name="L236" href="#L236">236</a>     @Test
 <a class="jxr_linenumber" name="L237" href="#L237">237</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testCreateTripleBnodeTriple() {
-<a class="jxr_linenumber" name="L238" href="#L238">238</a>         BlankNode 
subject = factory.createBlankNode();
-<a class="jxr_linenumber" name="L239" href="#L239">239</a>         IRI 
predicate = factory.createIRI(<span 
class="jxr_string">"http://example.com/pred";</span>);
-<a class="jxr_linenumber" name="L240" href="#L240">240</a>         Literal 
object = factory.createLiteral(<span class="jxr_string">"Example"</span>, <span 
class="jxr_string">"en"</span>);
-<a class="jxr_linenumber" name="L241" href="#L241">241</a>         Triple 
triple = factory.createTriple(subject, predicate, object);
+<a class="jxr_linenumber" name="L238" href="#L238">238</a>         <strong 
class="jxr_keyword">final</strong> BlankNode subject = 
factory.createBlankNode();
+<a class="jxr_linenumber" name="L239" href="#L239">239</a>         <strong 
class="jxr_keyword">final</strong> IRI predicate = factory.createIRI(<span 
class="jxr_string">"http://example.com/pred";</span>);
+<a class="jxr_linenumber" name="L240" href="#L240">240</a>         <strong 
class="jxr_keyword">final</strong> Literal object = factory.createLiteral(<span 
class="jxr_string">"Example"</span>, <span class="jxr_string">"en"</span>);
+<a class="jxr_linenumber" name="L241" href="#L241">241</a>         <strong 
class="jxr_keyword">final</strong> Triple triple = 
factory.createTriple(subject, predicate, object);
 <a class="jxr_linenumber" name="L242" href="#L242">242</a> 
 <a class="jxr_linenumber" name="L243" href="#L243">243</a>         <em 
class="jxr_comment">// bnode equivalence should be OK as we used the same</em>
 <a class="jxr_linenumber" name="L244" href="#L244">244</a>         <em 
class="jxr_comment">// factory and have not yet inserted Triple into a 
Graph</em>
@@ -260,7 +260,7 @@
 <a class="jxr_linenumber" name="L252" href="#L252">252</a>         BlankNode 
withColon;
 <a class="jxr_linenumber" name="L253" href="#L253">253</a>         <strong 
class="jxr_keyword">try</strong> {
 <a class="jxr_linenumber" name="L254" href="#L254">254</a>             
withColon = factory.createBlankNode(<span 
class="jxr_string">"with:colon"</span>);
-<a class="jxr_linenumber" name="L255" href="#L255">255</a>         } <strong 
class="jxr_keyword">catch</strong> (IllegalArgumentException ex) {
+<a class="jxr_linenumber" name="L255" href="#L255">255</a>         } <strong 
class="jxr_keyword">catch</strong> (<strong class="jxr_keyword">final</strong> 
IllegalArgumentException ex) {
 <a class="jxr_linenumber" name="L256" href="#L256">256</a>             <em 
class="jxr_comment">// Good!</em>
 <a class="jxr_linenumber" name="L257" href="#L257">257</a>             <strong 
class="jxr_keyword">return</strong>;
 <a class="jxr_linenumber" name="L258" href="#L258">258</a>         }
@@ -284,35 +284,35 @@
 <a class="jxr_linenumber" name="L276" href="#L276">276</a> 
 <a class="jxr_linenumber" name="L277" href="#L277">277</a>     @Test(expected 
= Exception.<strong class="jxr_keyword">class</strong>)
 <a class="jxr_linenumber" name="L278" href="#L278">278</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testInvalidTriplePredicate() {
-<a class="jxr_linenumber" name="L279" href="#L279">279</a>         BlankNode 
subject = factory.createBlankNode(<span class="jxr_string">"b1"</span>);
-<a class="jxr_linenumber" name="L280" href="#L280">280</a>         BlankNode 
predicate = factory.createBlankNode(<span class="jxr_string">"b2"</span>);
-<a class="jxr_linenumber" name="L281" href="#L281">281</a>         BlankNode 
object = factory.createBlankNode(<span class="jxr_string">"b3"</span>);
+<a class="jxr_linenumber" name="L279" href="#L279">279</a>         <strong 
class="jxr_keyword">final</strong> BlankNode subject = 
factory.createBlankNode(<span class="jxr_string">"b1"</span>);
+<a class="jxr_linenumber" name="L280" href="#L280">280</a>         <strong 
class="jxr_keyword">final</strong> BlankNode predicate = 
factory.createBlankNode(<span class="jxr_string">"b2"</span>);
+<a class="jxr_linenumber" name="L281" href="#L281">281</a>         <strong 
class="jxr_keyword">final</strong> BlankNode object = 
factory.createBlankNode(<span class="jxr_string">"b3"</span>);
 <a class="jxr_linenumber" name="L282" href="#L282">282</a>         
factory.createTriple(subject, (IRI) predicate, object);
 <a class="jxr_linenumber" name="L283" href="#L283">283</a>     }
 <a class="jxr_linenumber" name="L284" href="#L284">284</a> 
 <a class="jxr_linenumber" name="L285" href="#L285">285</a>     @Test
 <a class="jxr_linenumber" name="L286" href="#L286">286</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
hashCodeBlankNode() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L287" href="#L287">287</a>         BlankNode 
bnode1 = factory.createBlankNode();
+<a class="jxr_linenumber" name="L287" href="#L287">287</a>         <strong 
class="jxr_keyword">final</strong> BlankNode bnode1 = factory.createBlankNode();
 <a class="jxr_linenumber" name="L288" href="#L288">288</a>         
assertEquals(bnode1.uniqueReference().hashCode(), bnode1.hashCode());
 <a class="jxr_linenumber" name="L289" href="#L289">289</a>     }
 <a class="jxr_linenumber" name="L290" href="#L290">290</a> 
 <a class="jxr_linenumber" name="L291" href="#L291">291</a>     @Test
 <a class="jxr_linenumber" name="L292" href="#L292">292</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
hashCodeIRI() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L293" href="#L293">293</a>         IRI iri = 
factory.createIRI(<span class="jxr_string">"http://example.com/";</span>);
+<a class="jxr_linenumber" name="L293" href="#L293">293</a>         <strong 
class="jxr_keyword">final</strong> IRI iri = factory.createIRI(<span 
class="jxr_string">"http://example.com/";</span>);
 <a class="jxr_linenumber" name="L294" href="#L294">294</a>         
assertEquals(iri.getIRIString().hashCode(), iri.hashCode());
 <a class="jxr_linenumber" name="L295" href="#L295">295</a>     }
 <a class="jxr_linenumber" name="L296" href="#L296">296</a> 
 <a class="jxr_linenumber" name="L297" href="#L297">297</a>     @Test
 <a class="jxr_linenumber" name="L298" href="#L298">298</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
hashCodeLiteral() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L299" href="#L299">299</a>         Literal 
literal = factory.createLiteral(<span class="jxr_string">"Hello"</span>);
+<a class="jxr_linenumber" name="L299" href="#L299">299</a>         <strong 
class="jxr_keyword">final</strong> Literal literal = 
factory.createLiteral(<span class="jxr_string">"Hello"</span>);
 <a class="jxr_linenumber" name="L300" href="#L300">300</a>         
assertEquals(Objects.hash(literal.getLexicalForm(), literal.getDatatype(), 
literal.getLanguageTag()),
 <a class="jxr_linenumber" name="L301" href="#L301">301</a>                 
literal.hashCode());
 <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>     @Test
 <a class="jxr_linenumber" name="L305" href="#L305">305</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
hashCodeTriple() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L306" href="#L306">306</a>         IRI iri = 
factory.createIRI(<span class="jxr_string">"http://example.com/";</span>);
-<a class="jxr_linenumber" name="L307" href="#L307">307</a>         Triple 
triple = factory.createTriple(iri, iri, iri);
+<a class="jxr_linenumber" name="L306" href="#L306">306</a>         <strong 
class="jxr_keyword">final</strong> IRI iri = factory.createIRI(<span 
class="jxr_string">"http://example.com/";</span>);
+<a class="jxr_linenumber" name="L307" href="#L307">307</a>         <strong 
class="jxr_keyword">final</strong> Triple triple = factory.createTriple(iri, 
iri, iri);
 <a class="jxr_linenumber" name="L308" href="#L308">308</a>         
assertEquals(Objects.hash(iri, iri, iri), triple.hashCode());
 <a class="jxr_linenumber" name="L309" href="#L309">309</a>     }
 <a class="jxr_linenumber" name="L310" href="#L310">310</a> }
@@ -320,4 +320,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultDatasetTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultDatasetTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultDatasetTest.html
 Thu Nov 17 14:48:10 2016
@@ -44,7 +44,7 @@
 <a class="jxr_linenumber" name="L36" href="#L36">36</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
defaultIterate() <strong class="jxr_keyword">throws</strong> Exception {
 <a class="jxr_linenumber" name="L37" href="#L37">37</a>          
assertFalse(dataset.streamCalled);
 <a class="jxr_linenumber" name="L38" href="#L38">38</a>          
assertFalse(dataset.filteredStreamCalled);
-<a class="jxr_linenumber" name="L39" href="#L39">39</a>          <strong 
class="jxr_keyword">for</strong> (Quad t : dataset.iterate()) {
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>          <strong 
class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> 
Quad t : dataset.iterate()) {
 <a class="jxr_linenumber" name="L40" href="#L40">40</a>              
assertEquals(t, <strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyQuad.html">DummyQuad</a>());
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>          }
 <a class="jxr_linenumber" name="L42" href="#L42">42</a>          
assertTrue(dataset.streamCalled);
@@ -55,7 +55,7 @@
 <a class="jxr_linenumber" name="L47" href="#L47">47</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
defaultFilteredIterate() <strong class="jxr_keyword">throws</strong> Exception {
 <a class="jxr_linenumber" name="L48" href="#L48">48</a>          
assertFalse(dataset.streamCalled);
 <a class="jxr_linenumber" name="L49" href="#L49">49</a>          
assertFalse(dataset.filteredStreamCalled);
-<a class="jxr_linenumber" name="L50" href="#L50">50</a>          <strong 
class="jxr_keyword">for</strong> (Quad t : dataset.iterate(<strong 
class="jxr_keyword">null</strong>, <strong class="jxr_keyword">null</strong>, 
<strong class="jxr_keyword">new</strong> DummyIRI(2), <strong 
class="jxr_keyword">null</strong>)) {
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>          <strong 
class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> 
Quad t : dataset.iterate(<strong class="jxr_keyword">null</strong>, <strong 
class="jxr_keyword">null</strong>, <strong class="jxr_keyword">new</strong> 
DummyIRI(2), <strong class="jxr_keyword">null</strong>)) {
 <a class="jxr_linenumber" name="L51" href="#L51">51</a>              
assertEquals(t, <strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyQuad.html">DummyQuad</a>());
 <a class="jxr_linenumber" name="L52" href="#L52">52</a>          }
 <a class="jxr_linenumber" name="L53" href="#L53">53</a>          
assertTrue(dataset.filteredStreamCalled);
@@ -68,4 +68,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultGraphTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultGraphTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultGraphTest.html
 Thu Nov 17 14:48:10 2016
@@ -64,7 +64,7 @@
 <a class="jxr_linenumber" name="L56" href="#L56">56</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
defaultIterate() <strong class="jxr_keyword">throws</strong> Exception {
 <a class="jxr_linenumber" name="L57" href="#L57">57</a>          
assertFalse(graph.streamCalled);
 <a class="jxr_linenumber" name="L58" href="#L58">58</a>          
assertFalse(graph.filteredStreamCalled);
-<a class="jxr_linenumber" name="L59" href="#L59">59</a>          <strong 
class="jxr_keyword">for</strong> (Triple t : graph.iterate()) {
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>          <strong 
class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> 
Triple t : graph.iterate()) {
 <a class="jxr_linenumber" name="L60" href="#L60">60</a>              
assertEquals(t, <strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyTriple.html">DummyTriple</a>());
 <a class="jxr_linenumber" name="L61" href="#L61">61</a>          }
 <a class="jxr_linenumber" name="L62" href="#L62">62</a>          
assertTrue(graph.streamCalled);
@@ -75,7 +75,7 @@
 <a class="jxr_linenumber" name="L67" href="#L67">67</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
defaultFilteredIterate() <strong class="jxr_keyword">throws</strong> Exception {
 <a class="jxr_linenumber" name="L68" href="#L68">68</a>          
assertFalse(graph.streamCalled);
 <a class="jxr_linenumber" name="L69" href="#L69">69</a>          
assertFalse(graph.filteredStreamCalled);
-<a class="jxr_linenumber" name="L70" href="#L70">70</a>          <strong 
class="jxr_keyword">for</strong> (Triple t : graph.iterate(<strong 
class="jxr_keyword">null</strong>, <strong class="jxr_keyword">new</strong> 
DummyIRI(2), <strong class="jxr_keyword">null</strong>)) {
+<a class="jxr_linenumber" name="L70" href="#L70">70</a>          <strong 
class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> 
Triple t : graph.iterate(<strong class="jxr_keyword">null</strong>, <strong 
class="jxr_keyword">new</strong> DummyIRI(2), <strong 
class="jxr_keyword">null</strong>)) {
 <a class="jxr_linenumber" name="L71" href="#L71">71</a>              
assertEquals(t, <strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyTriple.html">DummyTriple</a>());
 <a class="jxr_linenumber" name="L72" href="#L72">72</a>          }
 <a class="jxr_linenumber" name="L73" href="#L73">73</a>          
assertTrue(graph.filteredStreamCalled);
@@ -88,4 +88,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultQuadTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultQuadTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultQuadTest.html
 Thu Nov 17 14:48:10 2016
@@ -34,8 +34,8 @@
 <a class="jxr_linenumber" name="L26" href="#L26">26</a>  <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> 
<a 
href="../../../../../org/apache/commons/rdf/api/DefaultQuadTest.html">DefaultQuadTest</a>
 {
 <a class="jxr_linenumber" name="L27" href="#L27">27</a>      @Test
 <a class="jxr_linenumber" name="L28" href="#L28">28</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
asQuad() <strong class="jxr_keyword">throws</strong> Exception {
-<a class="jxr_linenumber" name="L29" href="#L29">29</a>          Quad q = 
<strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyQuad.html">DummyQuad</a>();
-<a class="jxr_linenumber" name="L30" href="#L30">30</a>          Triple t = 
q.asTriple();
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>          <strong 
class="jxr_keyword">final</strong> Quad q = <strong 
class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyQuad.html">DummyQuad</a>();
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>          <strong 
class="jxr_keyword">final</strong> Triple t = q.asTriple();
 <a class="jxr_linenumber" name="L31" href="#L31">31</a>          
assertEquals(t, t);
 <a class="jxr_linenumber" name="L32" href="#L32">32</a>          
assertNotEquals(t,  q);
 <a class="jxr_linenumber" name="L33" href="#L33">33</a>          
assertEquals(t, <strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyTriple.html">DummyTriple</a>());
@@ -57,4 +57,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultRDFTermFactoryTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultRDFTermFactoryTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DefaultRDFTermFactoryTest.html
 Thu Nov 17 14:48:10 2016
@@ -73,4 +73,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyDataset.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyDataset.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyDataset.html
 Thu Nov 17 14:48:10 2016
@@ -35,39 +35,39 @@
 <a class="jxr_linenumber" name="L27" href="#L27">27</a>      <strong 
class="jxr_keyword">boolean</strong> filteredStreamCalled;
 <a class="jxr_linenumber" name="L28" href="#L28">28</a>      
 <a class="jxr_linenumber" name="L29" href="#L29">29</a>      @Override
-<a class="jxr_linenumber" name="L30" href="#L30">30</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
add(Quad Quad) {
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
add(<strong class="jxr_keyword">final</strong> Quad Quad) {
 <a class="jxr_linenumber" name="L31" href="#L31">31</a>          <strong 
class="jxr_keyword">if</strong> (! contains(Quad)) {
 <a class="jxr_linenumber" name="L32" href="#L32">32</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalStateException(<span class="jxr_string">"DummyDataset can't be 
modified"</span>);
 <a class="jxr_linenumber" name="L33" href="#L33">33</a>          }
 <a class="jxr_linenumber" name="L34" href="#L34">34</a>      }
 <a class="jxr_linenumber" name="L35" href="#L35">35</a>      
 <a class="jxr_linenumber" name="L36" href="#L36">36</a>      @Override
-<a class="jxr_linenumber" name="L37" href="#L37">37</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
add(BlankNodeOrIRI graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm 
object) {
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
add(<strong class="jxr_keyword">final</strong> BlankNodeOrIRI graphName, 
<strong class="jxr_keyword">final</strong> BlankNodeOrIRI subject, <strong 
class="jxr_keyword">final</strong> IRI predicate, <strong 
class="jxr_keyword">final</strong> RDFTerm object) {
 <a class="jxr_linenumber" name="L38" href="#L38">38</a>          <strong 
class="jxr_keyword">if</strong> (! contains(Optional.ofNullable(graphName), 
subject, predicate, object)) { 
 <a class="jxr_linenumber" name="L39" href="#L39">39</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalStateException(<span class="jxr_string">"DummyDataset can't be 
modified"</span>);
 <a class="jxr_linenumber" name="L40" href="#L40">40</a>          }
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>      }
 <a class="jxr_linenumber" name="L42" href="#L42">42</a>      
 <a class="jxr_linenumber" name="L43" href="#L43">43</a>      @Override
-<a class="jxr_linenumber" name="L44" href="#L44">44</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> contains(Quad Quad) {
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> contains(<strong 
class="jxr_keyword">final</strong> Quad Quad) {
 <a class="jxr_linenumber" name="L45" href="#L45">45</a>          <strong 
class="jxr_keyword">return</strong> Quad.equals(<strong 
class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyQuad.html">DummyQuad</a>());
 <a class="jxr_linenumber" name="L46" href="#L46">46</a>      }
 <a class="jxr_linenumber" name="L47" href="#L47">47</a>      
 <a class="jxr_linenumber" name="L48" href="#L48">48</a>      @Override
-<a class="jxr_linenumber" name="L49" href="#L49">49</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> contains(Optional&lt;BlankNodeOrIRI&gt; 
graphName, BlankNodeOrIRI subject, IRI predicate, RDFTerm object) {        
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> contains(<strong 
class="jxr_keyword">final</strong> Optional&lt;BlankNodeOrIRI&gt; graphName, 
<strong class="jxr_keyword">final</strong> BlankNodeOrIRI subject, <strong 
class="jxr_keyword">final</strong> IRI predicate, <strong 
class="jxr_keyword">final</strong> RDFTerm object) {        
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>          <strong 
class="jxr_keyword">return</strong> (graphName == <strong 
class="jxr_keyword">null</strong> || ! graphName.isPresent()) &amp;&amp;
 <a class="jxr_linenumber" name="L51" href="#L51">51</a>                  
(subject == <strong class="jxr_keyword">null</strong> || subject.equals(<strong 
class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyIRI.html">DummyIRI</a>(1)))
 &amp;&amp; 
 <a class="jxr_linenumber" name="L52" href="#L52">52</a>                  
(predicate == <strong class="jxr_keyword">null</strong> || 
predicate.equals(<strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyIRI.html">DummyIRI</a>(2)))
 &amp;&amp; 
 <a class="jxr_linenumber" name="L53" href="#L53">53</a>                  
(object == <strong class="jxr_keyword">null</strong> || object.equals(<strong 
class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyIRI.html">DummyIRI</a>(3)));
 <a class="jxr_linenumber" name="L54" href="#L54">54</a>      }
 <a class="jxr_linenumber" name="L55" href="#L55">55</a>      @Override
-<a class="jxr_linenumber" name="L56" href="#L56">56</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
remove(Quad Quad) {
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
remove(<strong class="jxr_keyword">final</strong> Quad Quad) {
 <a class="jxr_linenumber" name="L57" href="#L57">57</a>          <strong 
class="jxr_keyword">if</strong> (contains(Quad)) {
 <a class="jxr_linenumber" name="L58" href="#L58">58</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalStateException(<span class="jxr_string">"DummyDataset can't be 
modified"</span>);
 <a class="jxr_linenumber" name="L59" href="#L59">59</a>          }
 <a class="jxr_linenumber" name="L60" href="#L60">60</a>      }
 <a class="jxr_linenumber" name="L61" href="#L61">61</a>      @Override
-<a class="jxr_linenumber" name="L62" href="#L62">62</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
remove(Optional&lt;BlankNodeOrIRI&gt; graphName, BlankNodeOrIRI subject, IRI 
predicate, RDFTerm object) {
+<a class="jxr_linenumber" name="L62" href="#L62">62</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
remove(<strong class="jxr_keyword">final</strong> 
Optional&lt;BlankNodeOrIRI&gt; graphName, <strong 
class="jxr_keyword">final</strong> BlankNodeOrIRI subject, <strong 
class="jxr_keyword">final</strong> IRI predicate, <strong 
class="jxr_keyword">final</strong> RDFTerm object) {
 <a class="jxr_linenumber" name="L63" href="#L63">63</a>          <strong 
class="jxr_keyword">if</strong> (contains(graphName, subject, predicate, 
object)) {
 <a class="jxr_linenumber" name="L64" href="#L64">64</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalStateException(<span class="jxr_string">"DummyDataset can't be 
modified"</span>);
 <a class="jxr_linenumber" name="L65" href="#L65">65</a>          }
@@ -87,8 +87,8 @@
 <a class="jxr_linenumber" name="L79" href="#L79">79</a>      }
 <a class="jxr_linenumber" name="L80" href="#L80">80</a>  
 <a class="jxr_linenumber" name="L81" href="#L81">81</a>      @Override
-<a class="jxr_linenumber" name="L82" href="#L82">82</a>      <strong 
class="jxr_keyword">public</strong> Stream&lt;? <strong 
class="jxr_keyword">extends</strong> Quad&gt; 
stream(Optional&lt;BlankNodeOrIRI&gt; graphName, BlankNodeOrIRI subject, IRI 
predicate,
-<a class="jxr_linenumber" name="L83" href="#L83">83</a>              RDFTerm 
object) {
+<a class="jxr_linenumber" name="L82" href="#L82">82</a>      <strong 
class="jxr_keyword">public</strong> Stream&lt;? <strong 
class="jxr_keyword">extends</strong> Quad&gt; stream(<strong 
class="jxr_keyword">final</strong> Optional&lt;BlankNodeOrIRI&gt; graphName, 
<strong class="jxr_keyword">final</strong> BlankNodeOrIRI subject, <strong 
class="jxr_keyword">final</strong> IRI predicate,
+<a class="jxr_linenumber" name="L83" href="#L83">83</a>              <strong 
class="jxr_keyword">final</strong> RDFTerm object) {
 <a class="jxr_linenumber" name="L84" href="#L84">84</a>          
filteredStreamCalled = <strong class="jxr_keyword">true</strong>;
 <a class="jxr_linenumber" name="L85" href="#L85">85</a>          <strong 
class="jxr_keyword">if</strong> (contains(graphName, subject, predicate, 
object)) { 
 <a class="jxr_linenumber" name="L86" href="#L86">86</a>              <strong 
class="jxr_keyword">return</strong> Stream.of(<strong 
class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyQuad.html">DummyQuad</a>());
@@ -103,7 +103,7 @@
 <a class="jxr_linenumber" name="L95" href="#L95">95</a>      }
 <a class="jxr_linenumber" name="L96" href="#L96">96</a>  
 <a class="jxr_linenumber" name="L97" href="#L97">97</a>      @Override
-<a class="jxr_linenumber" name="L98" href="#L98">98</a>      <strong 
class="jxr_keyword">public</strong> Optional&lt;Graph&gt; 
getGraph(BlankNodeOrIRI graphName) {
+<a class="jxr_linenumber" name="L98" href="#L98">98</a>      <strong 
class="jxr_keyword">public</strong> Optional&lt;Graph&gt; getGraph(<strong 
class="jxr_keyword">final</strong> BlankNodeOrIRI graphName) {
 <a class="jxr_linenumber" name="L99" href="#L99">99</a>          <strong 
class="jxr_keyword">if</strong> (graphName == <strong 
class="jxr_keyword">null</strong>) { 
 <a class="jxr_linenumber" name="L100" href="#L100">100</a>             <strong 
class="jxr_keyword">return</strong> Optional.of(getGraph());
 <a class="jxr_linenumber" name="L101" href="#L101">101</a>         } <strong 
class="jxr_keyword">else</strong> {
@@ -120,4 +120,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyDatasetTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyDatasetTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyDatasetTest.html
 Thu Nov 17 14:48:10 2016
@@ -111,4 +111,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyGraph.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyGraph.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyGraph.html
 Thu Nov 17 14:48:10 2016
@@ -34,35 +34,35 @@
 <a class="jxr_linenumber" name="L26" href="#L26">26</a>      <strong 
class="jxr_keyword">boolean</strong> filteredStreamCalled;
 <a class="jxr_linenumber" name="L27" href="#L27">27</a>      
 <a class="jxr_linenumber" name="L28" href="#L28">28</a>      @Override
-<a class="jxr_linenumber" name="L29" href="#L29">29</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
add(Triple triple) {
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
add(<strong class="jxr_keyword">final</strong> Triple triple) {
 <a class="jxr_linenumber" name="L30" href="#L30">30</a>          <strong 
class="jxr_keyword">if</strong> (! contains(triple)) {
 <a class="jxr_linenumber" name="L31" href="#L31">31</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalStateException(<span class="jxr_string">"DummyGraph can't be 
modified"</span>);
 <a class="jxr_linenumber" name="L32" href="#L32">32</a>          }
 <a class="jxr_linenumber" name="L33" href="#L33">33</a>      }
 <a class="jxr_linenumber" name="L34" href="#L34">34</a>      @Override
-<a class="jxr_linenumber" name="L35" href="#L35">35</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
add(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) {
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
add(<strong class="jxr_keyword">final</strong> BlankNodeOrIRI subject, <strong 
class="jxr_keyword">final</strong> IRI predicate, <strong 
class="jxr_keyword">final</strong> RDFTerm object) {
 <a class="jxr_linenumber" name="L36" href="#L36">36</a>          <strong 
class="jxr_keyword">if</strong> (! contains(subject, predicate, object)) { 
 <a class="jxr_linenumber" name="L37" href="#L37">37</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalStateException(<span class="jxr_string">"DummyGraph can't be 
modified"</span>);
 <a class="jxr_linenumber" name="L38" href="#L38">38</a>          }
 <a class="jxr_linenumber" name="L39" href="#L39">39</a>      }
 <a class="jxr_linenumber" name="L40" href="#L40">40</a>      @Override
-<a class="jxr_linenumber" name="L41" href="#L41">41</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> contains(Triple triple) {
+<a class="jxr_linenumber" name="L41" href="#L41">41</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> contains(<strong 
class="jxr_keyword">final</strong> Triple triple) {
 <a class="jxr_linenumber" name="L42" href="#L42">42</a>          <strong 
class="jxr_keyword">return</strong> triple.equals(<strong 
class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyTriple.html">DummyTriple</a>());
 <a class="jxr_linenumber" name="L43" href="#L43">43</a>      }
 <a class="jxr_linenumber" name="L44" href="#L44">44</a>      @Override
-<a class="jxr_linenumber" name="L45" href="#L45">45</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> contains(BlankNodeOrIRI subject, IRI 
predicate, RDFTerm object) {
+<a class="jxr_linenumber" name="L45" href="#L45">45</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> contains(<strong 
class="jxr_keyword">final</strong> BlankNodeOrIRI subject, <strong 
class="jxr_keyword">final</strong> IRI predicate, <strong 
class="jxr_keyword">final</strong> RDFTerm object) {
 <a class="jxr_linenumber" name="L46" href="#L46">46</a>          <strong 
class="jxr_keyword">return</strong> (subject == <strong 
class="jxr_keyword">null</strong> || subject.equals(<strong 
class="jxr_keyword">new</strong> DummyIRI(1))) &amp;&amp; 
 <a class="jxr_linenumber" name="L47" href="#L47">47</a>                  
(predicate == <strong class="jxr_keyword">null</strong> || 
predicate.equals(<strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyIRI.html">DummyIRI</a>(2)))
 &amp;&amp; 
 <a class="jxr_linenumber" name="L48" href="#L48">48</a>                  
(object == <strong class="jxr_keyword">null</strong> || object.equals(<strong 
class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyIRI.html">DummyIRI</a>(3)));
 <a class="jxr_linenumber" name="L49" href="#L49">49</a>      }
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>      @Override
-<a class="jxr_linenumber" name="L51" href="#L51">51</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
remove(Triple triple) {
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
remove(<strong class="jxr_keyword">final</strong> Triple triple) {
 <a class="jxr_linenumber" name="L52" href="#L52">52</a>          <strong 
class="jxr_keyword">if</strong> (contains(triple)) {
 <a class="jxr_linenumber" name="L53" href="#L53">53</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalStateException(<span class="jxr_string">"DummyGraph can't be 
modified"</span>);
 <a class="jxr_linenumber" name="L54" href="#L54">54</a>          }
 <a class="jxr_linenumber" name="L55" href="#L55">55</a>      }
 <a class="jxr_linenumber" name="L56" href="#L56">56</a>      @Override
-<a class="jxr_linenumber" name="L57" href="#L57">57</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
remove(BlankNodeOrIRI subject, IRI predicate, RDFTerm object) {
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
remove(<strong class="jxr_keyword">final</strong> BlankNodeOrIRI subject, 
<strong class="jxr_keyword">final</strong> IRI predicate, <strong 
class="jxr_keyword">final</strong> RDFTerm object) {
 <a class="jxr_linenumber" name="L58" href="#L58">58</a>          <strong 
class="jxr_keyword">if</strong> (contains(subject, predicate, object)) {
 <a class="jxr_linenumber" name="L59" href="#L59">59</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalStateException(<span class="jxr_string">"DummyGraph can't be 
modified"</span>);
 <a class="jxr_linenumber" name="L60" href="#L60">60</a>          }
@@ -82,7 +82,7 @@
 <a class="jxr_linenumber" name="L74" href="#L74">74</a>      }
 <a class="jxr_linenumber" name="L75" href="#L75">75</a>  
 <a class="jxr_linenumber" name="L76" href="#L76">76</a>      @Override
-<a class="jxr_linenumber" name="L77" href="#L77">77</a>      <strong 
class="jxr_keyword">public</strong> Stream&lt;? <strong 
class="jxr_keyword">extends</strong> Triple&gt; stream(BlankNodeOrIRI subject, 
IRI predicate, RDFTerm object) {
+<a class="jxr_linenumber" name="L77" href="#L77">77</a>      <strong 
class="jxr_keyword">public</strong> Stream&lt;? <strong 
class="jxr_keyword">extends</strong> Triple&gt; stream(<strong 
class="jxr_keyword">final</strong> BlankNodeOrIRI subject, <strong 
class="jxr_keyword">final</strong> IRI predicate, <strong 
class="jxr_keyword">final</strong> RDFTerm object) {
 <a class="jxr_linenumber" name="L78" href="#L78">78</a>          
filteredStreamCalled = <strong class="jxr_keyword">true</strong>;
 <a class="jxr_linenumber" name="L79" href="#L79">79</a>          <strong 
class="jxr_keyword">if</strong> (contains(subject, predicate, object)) { 
 <a class="jxr_linenumber" name="L80" href="#L80">80</a>              <strong 
class="jxr_keyword">return</strong> Stream.of(<strong 
class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyTriple.html">DummyTriple</a>());
@@ -95,4 +95,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyGraphTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyGraphTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyGraphTest.html
 Thu Nov 17 14:48:10 2016
@@ -94,4 +94,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyIRI.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyIRI.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyIRI.html
 Thu Nov 17 14:48:10 2016
@@ -29,7 +29,7 @@
 <a class="jxr_linenumber" name="L21" href="#L21">21</a>      <strong 
class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> 
String EXAMPLE_COM = <span class="jxr_string">"http://example.com/";</span>;
 <a class="jxr_linenumber" name="L22" href="#L22">22</a>      <strong 
class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> i;
 <a class="jxr_linenumber" name="L23" href="#L23">23</a>  
-<a class="jxr_linenumber" name="L24" href="#L24">24</a>      <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyIRI.html">DummyIRI</a>(<strong
 class="jxr_keyword">int</strong> i) {
+<a class="jxr_linenumber" name="L24" href="#L24">24</a>      <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyIRI.html">DummyIRI</a>(<strong
 class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> i) 
{
 <a class="jxr_linenumber" name="L25" href="#L25">25</a>          <strong 
class="jxr_keyword">this</strong>.i = i;
 <a class="jxr_linenumber" name="L26" href="#L26">26</a>      }
 <a class="jxr_linenumber" name="L27" href="#L27">27</a>  
@@ -44,7 +44,7 @@
 <a class="jxr_linenumber" name="L36" href="#L36">36</a>      }
 <a class="jxr_linenumber" name="L37" href="#L37">37</a>  
 <a class="jxr_linenumber" name="L38" href="#L38">38</a>      @Override
-<a class="jxr_linenumber" name="L39" href="#L39">39</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> equals(Object obj) {
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> equals(<strong 
class="jxr_keyword">final</strong> Object obj) {
 <a class="jxr_linenumber" name="L40" href="#L40">40</a>          <strong 
class="jxr_keyword">return</strong> (obj instanceof IRI) &amp;&amp; ((IRI) 
obj).getIRIString().equals(EXAMPLE_COM + i);
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>      }
 <a class="jxr_linenumber" name="L42" href="#L42">42</a>  
@@ -57,4 +57,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyIRITest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyIRITest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyIRITest.html
 Thu Nov 17 14:48:10 2016
@@ -66,4 +66,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyQuad.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyQuad.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyQuad.html
 Thu Nov 17 14:48:10 2016
@@ -48,7 +48,7 @@
 <a class="jxr_linenumber" name="L40" href="#L40">40</a>          <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyIRI.html">DummyIRI</a>(3);
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>      }
 <a class="jxr_linenumber" name="L42" href="#L42">42</a>  
-<a class="jxr_linenumber" name="L43" href="#L43">43</a>      <strong 
class="jxr_keyword">private</strong> <strong 
class="jxr_keyword">static</strong> List&lt;RDFTerm&gt; quadList(Quad q) {
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>      <strong 
class="jxr_keyword">private</strong> <strong 
class="jxr_keyword">static</strong> List&lt;RDFTerm&gt; quadList(<strong 
class="jxr_keyword">final</strong> Quad q) {
 <a class="jxr_linenumber" name="L44" href="#L44">44</a>           <strong 
class="jxr_keyword">return</strong> Arrays.asList(
 <a class="jxr_linenumber" name="L45" href="#L45">45</a>               
q.getGraphName().orElse(<strong class="jxr_keyword">null</strong>),
 <a class="jxr_linenumber" name="L46" href="#L46">46</a>               
q.getSubject(),
@@ -57,7 +57,7 @@
 <a class="jxr_linenumber" name="L49" href="#L49">49</a>      }
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>  
 <a class="jxr_linenumber" name="L51" href="#L51">51</a>      @Override
-<a class="jxr_linenumber" name="L52" href="#L52">52</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> equals(Object obj) {
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> equals(<strong 
class="jxr_keyword">final</strong> Object obj) {
 <a class="jxr_linenumber" name="L53" href="#L53">53</a>          <strong 
class="jxr_keyword">if</strong> (!(obj instanceof Quad)) {
 <a class="jxr_linenumber" name="L54" href="#L54">54</a>              <strong 
class="jxr_keyword">return</strong> false;
 <a class="jxr_linenumber" name="L55" href="#L55">55</a>          }
@@ -73,4 +73,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyQuadTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyQuadTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyQuadTest.html
 Thu Nov 17 14:48:10 2016
@@ -59,7 +59,7 @@
 <a class="jxr_linenumber" name="L51" href="#L51">51</a>      
 <a class="jxr_linenumber" name="L52" href="#L52">52</a>      @Test
 <a class="jxr_linenumber" name="L53" href="#L53">53</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testHashCode() {
-<a class="jxr_linenumber" name="L54" href="#L54">54</a>          <strong 
class="jxr_keyword">int</strong> expected = Objects.hash(quad.getSubject(), 
quad.getPredicate(), quad.getObject(), quad.getGraphName()); 
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>          <strong 
class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> 
expected = Objects.hash(quad.getSubject(), quad.getPredicate(), 
quad.getObject(), quad.getGraphName()); 
 <a class="jxr_linenumber" name="L55" href="#L55">55</a>          
assertEquals(expected, quad.hashCode());
 <a class="jxr_linenumber" name="L56" href="#L56">56</a>      }
 <a class="jxr_linenumber" name="L57" href="#L57">57</a>  }
@@ -68,4 +68,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyTriple.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyTriple.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyTriple.html
 Thu Nov 17 14:48:10 2016
@@ -43,7 +43,7 @@
 <a class="jxr_linenumber" name="L35" href="#L35">35</a>          <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/api/DummyIRI.html">DummyIRI</a>(3);
 <a class="jxr_linenumber" name="L36" href="#L36">36</a>      }
 <a class="jxr_linenumber" name="L37" href="#L37">37</a>  
-<a class="jxr_linenumber" name="L38" href="#L38">38</a>      <strong 
class="jxr_keyword">private</strong> <strong 
class="jxr_keyword">static</strong> List&lt;RDFTerm&gt; tripleList(Triple q) {
+<a class="jxr_linenumber" name="L38" href="#L38">38</a>      <strong 
class="jxr_keyword">private</strong> <strong 
class="jxr_keyword">static</strong> List&lt;RDFTerm&gt; tripleList(<strong 
class="jxr_keyword">final</strong> Triple q) {
 <a class="jxr_linenumber" name="L39" href="#L39">39</a>           <strong 
class="jxr_keyword">return</strong> Arrays.asList(             
 <a class="jxr_linenumber" name="L40" href="#L40">40</a>               
q.getSubject(),
 <a class="jxr_linenumber" name="L41" href="#L41">41</a>               
q.getPredicate(),
@@ -51,7 +51,7 @@
 <a class="jxr_linenumber" name="L43" href="#L43">43</a>      }
 <a class="jxr_linenumber" name="L44" href="#L44">44</a>  
 <a class="jxr_linenumber" name="L45" href="#L45">45</a>      @Override
-<a class="jxr_linenumber" name="L46" href="#L46">46</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> equals(Object obj) {
+<a class="jxr_linenumber" name="L46" href="#L46">46</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> equals(<strong 
class="jxr_keyword">final</strong> Object obj) {
 <a class="jxr_linenumber" name="L47" href="#L47">47</a>          <strong 
class="jxr_keyword">if</strong> (!(obj instanceof Triple)) {
 <a class="jxr_linenumber" name="L48" href="#L48">48</a>              <strong 
class="jxr_keyword">return</strong> false;
 <a class="jxr_linenumber" name="L49" href="#L49">49</a>          }
@@ -67,4 +67,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyTripleTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyTripleTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/DummyTripleTest.html
 Thu Nov 17 14:48:10 2016
@@ -54,7 +54,7 @@
 <a class="jxr_linenumber" name="L46" href="#L46">46</a>      
 <a class="jxr_linenumber" name="L47" href="#L47">47</a>      @Test
 <a class="jxr_linenumber" name="L48" href="#L48">48</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
testHashCode() {
-<a class="jxr_linenumber" name="L49" href="#L49">49</a>          <strong 
class="jxr_keyword">int</strong> expected = Objects.hash(triple.getSubject(), 
triple.getPredicate(), triple.getObject()); 
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>          <strong 
class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> 
expected = Objects.hash(triple.getSubject(), triple.getPredicate(), 
triple.getObject()); 
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>          
assertEquals(expected, triple.hashCode());
 <a class="jxr_linenumber" name="L51" href="#L51">51</a>      }
 <a class="jxr_linenumber" name="L52" href="#L52">52</a>  }
@@ -63,4 +63,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/RDFSyntaxTest.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/RDFSyntaxTest.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/RDFSyntaxTest.html
 Thu Nov 17 14:48:10 2016
@@ -131,4 +131,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/package-frame.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/package-frame.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/package-frame.html
 Thu Nov 17 14:48:10 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
        <head>
                <meta http-equiv="content-type" content="text/html; 
charset=UTF-8" />
-               <title>Commons RDF API 0.3.0-incubating Reference Package 
org.apache.commons.rdf.api</title>
+               <title>Commons RDF API 0.4.0-incubating-SNAPSHOT Reference 
Package org.apache.commons.rdf.api</title>
                <link rel="stylesheet" type="text/css" 
href="../../../../../stylesheet.css" title="style" />
        </head>
        <body>

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/package-summary.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/package-summary.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/org/apache/commons/rdf/api/package-summary.html
 Thu Nov 17 14:48:10 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
        <head>
                <meta http-equiv="content-type" content="text/html; 
charset=UTF-8" />
-               <title>Commons RDF API 0.3.0-incubating Reference Package 
org.apache.commons.rdf.api</title>
+               <title>Commons RDF API 0.4.0-incubating-SNAPSHOT Reference 
Package org.apache.commons.rdf.api</title>
                <link rel="stylesheet" type="text/css" 
href="../../../../../stylesheet.css" title="style" />
        </head>
        <body>

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/overview-frame.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/overview-frame.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/overview-frame.html
 Thu Nov 17 14:48:10 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
        <head>
                <meta http-equiv="content-type" content="text/html; 
charset=UTF-8" />
-               <title>Commons RDF API 0.3.0-incubating Reference</title>
+               <title>Commons RDF API 0.4.0-incubating-SNAPSHOT 
Reference</title>
                <link rel="stylesheet" type="text/css" href="stylesheet.css" 
title="style" />
        </head>
        <body>
@@ -22,4 +22,3 @@
 
        </body>
 </html>
-

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/overview-summary.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/overview-summary.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/overview-summary.html
 Thu Nov 17 14:48:10 2016
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
        <head>
                <meta http-equiv="content-type" content="text/html; 
charset=UTF-8" />
-               <title>Commons RDF API 0.3.0-incubating Reference</title>
+               <title>Commons RDF API 0.4.0-incubating-SNAPSHOT 
Reference</title>
                <link rel="stylesheet" type="text/css" href="stylesheet.css" 
title="style" />
        </head>
        <body>
@@ -24,7 +24,7 @@
                </ul>
        </div>
                
-                       <h2>Commons RDF API 0.3.0-incubating Reference</h2>
+                       <h2>Commons RDF API 0.4.0-incubating-SNAPSHOT 
Reference</h2>
 
                <table class="summary">
                <thead>

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/stylesheet.css
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/stylesheet.css 
(original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref-test/stylesheet.css 
Thu Nov 17 14:48:10 2016
@@ -111,4 +111,4 @@ hr {
 .jxr_keyword
 {
     color: #000;
-}
+}
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref/allclasses-frame.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref/allclasses-frame.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref/allclasses-frame.html
 Thu Nov 17 14:48:10 2016
@@ -65,4 +65,4 @@
                              </ul>
 
     </body>
-  </html>
+  </html>
\ No newline at end of file

Modified: websites/production/commonsrdf/content/commons-rdf-api/xref/index.html
==============================================================================
--- websites/production/commonsrdf/content/commons-rdf-api/xref/index.html 
(original)
+++ websites/production/commonsrdf/content/commons-rdf-api/xref/index.html Thu 
Nov 17 14:48:10 2016
@@ -4,7 +4,7 @@
 <!-- this is a JXR report set -->
        <head>
                <meta http-equiv="content-type" content="text/html; 
charset=UTF-8" />
-               <title>Commons RDF API 0.3.0-incubating Reference</title>
+               <title>Commons RDF API 0.4.0-incubating-SNAPSHOT 
Reference</title>
        </head>
     <frameset cols="20%,80%">
                <frameset rows="30%,70%">
@@ -22,4 +22,3 @@
         </noframes>
     </frameset>
 </html>
-

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref/org/apache/commons/rdf/api/BlankNode.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref/org/apache/commons/rdf/api/BlankNode.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref/org/apache/commons/rdf/api/BlankNode.html
 Thu Nov 17 14:48:10 2016
@@ -130,4 +130,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file

Modified: 
websites/production/commonsrdf/content/commons-rdf-api/xref/org/apache/commons/rdf/api/BlankNodeOrIRI.html
==============================================================================
--- 
websites/production/commonsrdf/content/commons-rdf-api/xref/org/apache/commons/rdf/api/BlankNodeOrIRI.html
 (original)
+++ 
websites/production/commonsrdf/content/commons-rdf-api/xref/org/apache/commons/rdf/api/BlankNodeOrIRI.html
 Thu Nov 17 14:48:10 2016
@@ -38,4 +38,4 @@
 <hr/>
 <div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
-</html>
+</html>
\ No newline at end of file


Reply via email to