You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-commits@maven.apache.org by kh...@apache.org on 2015/04/03 13:23:41 UTC

svn commit: r946183 [23/23] - in /websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugin/docck/ apidocs/org/apache/maven/plugin/docck/class-use/ apidocs/org/apache/maven/plugin/docck...

Modified: websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/DocumentationReporter.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/DocumentationReporter.html (original)
+++ websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/DocumentationReporter.html Fri Apr  3 11:23:40 2015
@@ -1,113 +1,105 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
 <title>DocumentationReporter xref</title>
 <link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
 </head>
 <body>
 <div id="overview"><a href="../../../../../../../apidocs/org/apache/maven/plugin/docck/reports/DocumentationReporter.html">View Javadoc</a></div><pre>
-
-<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.docck.reports;
-<a name="2" href="#2">2</a>   
-<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
-<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
-<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
-<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
-<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
-<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
-<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
-<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
-<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
-<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
-<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
-<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
-<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
-<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
-<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
-<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
-<a name="19" href="#19">19</a>  <em class="jxr_comment"> * under the License.</em>
-<a name="20" href="#20">20</a>  <em class="jxr_comment"> */</em>
-<a name="21" href="#21">21</a>  
-<a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.util.List;
-<a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.util.ArrayList;
-<a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> java.util.Iterator;
-<a name="25" href="#25">25</a>  
-<a name="26" href="#26">26</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
-<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="29" href="#29">29</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/DocumentationReporter.html">DocumentationReporter</a>
-<a name="30" href="#30">30</a>  {
-<a name="31" href="#31">31</a>      <strong class="jxr_keyword">private</strong> List reports = <strong class="jxr_keyword">new</strong> ArrayList();
-<a name="32" href="#32">32</a>  
-<a name="33" href="#33">33</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> info( String message )
-<a name="34" href="#34">34</a>      {
-<a name="35" href="#35">35</a>          reports.add( <strong class="jxr_keyword">new</strong> InfoDocumentationReport( <span class="jxr_string">"[INFO]  "</span> + message ) );
-<a name="36" href="#36">36</a>      }
-<a name="37" href="#37">37</a>  
-<a name="38" href="#38">38</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> warn( String message )
-<a name="39" href="#39">39</a>      {
-<a name="40" href="#40">40</a>          reports.add( <strong class="jxr_keyword">new</strong> WarningDocumentationReport( <span class="jxr_string">"[WARN]  "</span> + message ) );
-<a name="41" href="#41">41</a>      }
-<a name="42" href="#42">42</a>  
-<a name="43" href="#43">43</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> error( String message )
-<a name="44" href="#44">44</a>      {
-<a name="45" href="#45">45</a>          reports.add( <strong class="jxr_keyword">new</strong> ErrorDocumentationReport( <span class="jxr_string">"[ERROR] "</span> + message ) );
-<a name="46" href="#46">46</a>      }
-<a name="47" href="#47">47</a>  
-<a name="48" href="#48">48</a>      <strong class="jxr_keyword">public</strong> List getMessagesByType( <strong class="jxr_keyword">int</strong> type )
-<a name="49" href="#49">49</a>      {
-<a name="50" href="#50">50</a>          List list = <strong class="jxr_keyword">new</strong> ArrayList();
-<a name="51" href="#51">51</a>  
-<a name="52" href="#52">52</a>          <strong class="jxr_keyword">for</strong> ( Iterator iter = reports.iterator(); iter.hasNext(); )
-<a name="53" href="#53">53</a>          {
-<a name="54" href="#54">54</a>              <a href="../../../../../../org/apache/maven/plugin/docck/reports/DocumentationReport.html">DocumentationReport</a> report = (DocumentationReport) iter.next();
-<a name="55" href="#55">55</a>  
-<a name="56" href="#56">56</a>              <strong class="jxr_keyword">if</strong> ( report.getType() == type )
-<a name="57" href="#57">57</a>              {
-<a name="58" href="#58">58</a>                  list.add( report.getMessage() );
-<a name="59" href="#59">59</a>              }
-<a name="60" href="#60">60</a>          }
-<a name="61" href="#61">61</a>  
-<a name="62" href="#62">62</a>          <strong class="jxr_keyword">return</strong> list;
-<a name="63" href="#63">63</a>      }
-<a name="64" href="#64">64</a>  
-<a name="65" href="#65">65</a>      <strong class="jxr_keyword">public</strong> List getMessages()
-<a name="66" href="#66">66</a>      {
-<a name="67" href="#67">67</a>          List list = <strong class="jxr_keyword">new</strong> ArrayList();
-<a name="68" href="#68">68</a>  
-<a name="69" href="#69">69</a>          <strong class="jxr_keyword">for</strong> ( Iterator iter = reports.iterator(); iter.hasNext(); )
-<a name="70" href="#70">70</a>          {
-<a name="71" href="#71">71</a>              <a href="../../../../../../org/apache/maven/plugin/docck/reports/DocumentationReport.html">DocumentationReport</a> report = (DocumentationReport) iter.next();
-<a name="72" href="#72">72</a>  
-<a name="73" href="#73">73</a>              list.add( report.getMessage() );
-<a name="74" href="#74">74</a>          }
-<a name="75" href="#75">75</a>  
-<a name="76" href="#76">76</a>          <strong class="jxr_keyword">return</strong> list;
-<a name="77" href="#77">77</a>      }
-<a name="78" href="#78">78</a>  
-<a name="79" href="#79">79</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasErrors()
-<a name="80" href="#80">80</a>      {
-<a name="81" href="#81">81</a>          <strong class="jxr_keyword">for</strong> ( Iterator iter = reports.iterator(); iter.hasNext(); )
-<a name="82" href="#82">82</a>          {
-<a name="83" href="#83">83</a>              <a href="../../../../../../org/apache/maven/plugin/docck/reports/DocumentationReport.html">DocumentationReport</a> report = (DocumentationReport) iter.next();
-<a name="84" href="#84">84</a>  
-<a name="85" href="#85">85</a>              <strong class="jxr_keyword">if</strong> ( report.getType() == DocumentationReport.TYPE_ERROR )
-<a name="86" href="#86">86</a>              {
-<a name="87" href="#87">87</a>                  <em class="jxr_comment">//first occurrence will do</em>
-<a name="88" href="#88">88</a>                  <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a name="89" href="#89">89</a>              }
-<a name="90" href="#90">90</a>          }
-<a name="91" href="#91">91</a>  
-<a name="92" href="#92">92</a>          <strong class="jxr_keyword">return</strong> false;
-<a name="93" href="#93">93</a>      }
-<a name="94" href="#94">94</a>  
-<a name="95" href="#95">95</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> clear()
-<a name="96" href="#96">96</a>      {
-<a name="97" href="#97">97</a>          reports.clear();
-<a name="98" href="#98">98</a>      }
-<a name="99" href="#99">99</a>  }
+<a class="jxr_linenumber" name="L1" href="#L1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.docck.reports;
+<a class="jxr_linenumber" name="L2" href="#L2">2</a>   
+<a class="jxr_linenumber" name="L3" href="#L3">3</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="L4" href="#L4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="L5" href="#L5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a class="jxr_linenumber" name="L6" href="#L6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="L7" href="#L7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a class="jxr_linenumber" name="L8" href="#L8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="L9" href="#L9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="L10" href="#L10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="L11" href="#L11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L12" href="#L12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em>
+<a class="jxr_linenumber" name="L13" href="#L13">13</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L14" href="#L14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="L15" href="#L15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="L16" href="#L16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="L17" href="#L17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a class="jxr_linenumber" name="L18" href="#L18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="L19" href="#L19">19</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="L20" href="#L20">20</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="L21" href="#L21">21</a>  
+<a class="jxr_linenumber" name="L22" href="#L22">22</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a class="jxr_linenumber" name="L23" href="#L23">23</a>  <strong class="jxr_keyword">import</strong> java.util.ArrayList;
+<a class="jxr_linenumber" name="L24" href="#L24">24</a>  
+<a class="jxr_linenumber" name="L25" href="#L25">25</a>  <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L26" href="#L26">26</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
+<a class="jxr_linenumber" name="L27" href="#L27">27</a>  <em class="jxr_javadoccomment"> */</em>
+<a class="jxr_linenumber" name="L28" href="#L28">28</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/DocumentationReporter.html">DocumentationReporter</a>
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>  {
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>      <strong class="jxr_keyword">private</strong> List&lt;DocumentationReport&gt; reports = <strong class="jxr_keyword">new</strong> ArrayList&lt;DocumentationReport&gt;();
+<a class="jxr_linenumber" name="L31" href="#L31">31</a>  
+<a class="jxr_linenumber" name="L32" href="#L32">32</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> info( String message )
+<a class="jxr_linenumber" name="L33" href="#L33">33</a>      {
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>          reports.add( <strong class="jxr_keyword">new</strong> InfoDocumentationReport( <span class="jxr_string">"[INFO]  "</span> + message ) );
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>      }
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>  
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> warn( String message )
+<a class="jxr_linenumber" name="L38" href="#L38">38</a>      {
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>          reports.add( <strong class="jxr_keyword">new</strong> WarningDocumentationReport( <span class="jxr_string">"[WARN]  "</span> + message ) );
+<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>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> error( String message )
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>      {
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>          reports.add( <strong class="jxr_keyword">new</strong> ErrorDocumentationReport( <span class="jxr_string">"[ERROR] "</span> + message ) );
+<a class="jxr_linenumber" name="L45" href="#L45">45</a>      }
+<a class="jxr_linenumber" name="L46" href="#L46">46</a>  
+<a class="jxr_linenumber" name="L47" href="#L47">47</a>      <strong class="jxr_keyword">public</strong> List&lt;String&gt; getMessagesByType( <strong class="jxr_keyword">int</strong> type )
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>      {
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>          List&lt;String&gt; list = <strong class="jxr_keyword">new</strong> ArrayList&lt;String&gt;();
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>  
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>          <strong class="jxr_keyword">for</strong> ( DocumentationReport report : reports )
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>          {
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>              <strong class="jxr_keyword">if</strong> ( report.getType() == type )
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>              {
+<a class="jxr_linenumber" name="L55" href="#L55">55</a>                  list.add( report.getMessage() );
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>              }
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>          }
+<a class="jxr_linenumber" name="L58" href="#L58">58</a>  
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>          <strong class="jxr_keyword">return</strong> list;
+<a class="jxr_linenumber" name="L60" href="#L60">60</a>      }
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>  
+<a class="jxr_linenumber" name="L62" href="#L62">62</a>      <strong class="jxr_keyword">public</strong> List&lt;String&gt; getMessages()
+<a class="jxr_linenumber" name="L63" href="#L63">63</a>      {
+<a class="jxr_linenumber" name="L64" href="#L64">64</a>          List&lt;String&gt; list = <strong class="jxr_keyword">new</strong> ArrayList&lt;String&gt;();
+<a class="jxr_linenumber" name="L65" href="#L65">65</a>  
+<a class="jxr_linenumber" name="L66" href="#L66">66</a>          <strong class="jxr_keyword">for</strong> ( DocumentationReport report : reports )
+<a class="jxr_linenumber" name="L67" href="#L67">67</a>          {
+<a class="jxr_linenumber" name="L68" href="#L68">68</a>              list.add( report.getMessage() );
+<a class="jxr_linenumber" name="L69" href="#L69">69</a>          }
+<a class="jxr_linenumber" name="L70" href="#L70">70</a>  
+<a class="jxr_linenumber" name="L71" href="#L71">71</a>          <strong class="jxr_keyword">return</strong> list;
+<a class="jxr_linenumber" name="L72" href="#L72">72</a>      }
+<a class="jxr_linenumber" name="L73" href="#L73">73</a>  
+<a class="jxr_linenumber" name="L74" href="#L74">74</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasErrors()
+<a class="jxr_linenumber" name="L75" href="#L75">75</a>      {
+<a class="jxr_linenumber" name="L76" href="#L76">76</a>          <strong class="jxr_keyword">for</strong> ( DocumentationReport report : reports )
+<a class="jxr_linenumber" name="L77" href="#L77">77</a>          {
+<a class="jxr_linenumber" name="L78" href="#L78">78</a>              <strong class="jxr_keyword">if</strong> ( report.getType() == DocumentationReport.TYPE_ERROR )
+<a class="jxr_linenumber" name="L79" href="#L79">79</a>              {
+<a class="jxr_linenumber" name="L80" href="#L80">80</a>                  <em class="jxr_comment">// first occurrence will do</em>
+<a class="jxr_linenumber" name="L81" href="#L81">81</a>                  <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="L82" href="#L82">82</a>              }
+<a class="jxr_linenumber" name="L83" href="#L83">83</a>          }
+<a class="jxr_linenumber" name="L84" href="#L84">84</a>  
+<a class="jxr_linenumber" name="L85" href="#L85">85</a>          <strong class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="L86" href="#L86">86</a>      }
+<a class="jxr_linenumber" name="L87" href="#L87">87</a>  
+<a class="jxr_linenumber" name="L88" href="#L88">88</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> clear()
+<a class="jxr_linenumber" name="L89" href="#L89">89</a>      {
+<a class="jxr_linenumber" name="L90" href="#L90">90</a>          reports.clear();
+<a class="jxr_linenumber" name="L91" href="#L91">91</a>      }
+<a class="jxr_linenumber" name="L92" href="#L92">92</a>  }
 </pre>
-<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
-</html>
-
+<hr/>
+<div id="footer">Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+</body>
+</html>
\ No newline at end of file

Modified: websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/ErrorDocumentationReport.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/ErrorDocumentationReport.html (original)
+++ websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/ErrorDocumentationReport.html Fri Apr  3 11:23:40 2015
@@ -1,51 +1,50 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
 <title>ErrorDocumentationReport xref</title>
 <link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
 </head>
 <body>
 <div id="overview"><a href="../../../../../../../apidocs/org/apache/maven/plugin/docck/reports/ErrorDocumentationReport.html">View Javadoc</a></div><pre>
-
-<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.docck.reports;
-<a name="2" href="#2">2</a>   
-<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
-<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
-<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
-<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
-<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
-<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
-<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
-<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
-<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
-<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
-<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
-<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
-<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
-<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
-<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
-<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
-<a name="19" href="#19">19</a>  <em class="jxr_comment"> * under the License.</em>
-<a name="20" href="#20">20</a>  <em class="jxr_comment"> */</em>
-<a name="21" href="#21">21</a>  
-<a name="22" href="#22">22</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="23" href="#23">23</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
-<a name="24" href="#24">24</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="25" href="#25">25</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/ErrorDocumentationReport.html">ErrorDocumentationReport</a>
-<a name="26" href="#26">26</a>      <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/AbstractDocumentationReport.html">AbstractDocumentationReport</a>
-<a name="27" href="#27">27</a>  {
-<a name="28" href="#28">28</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/ErrorDocumentationReport.html">ErrorDocumentationReport</a>( String message )
-<a name="29" href="#29">29</a>      {
-<a name="30" href="#30">30</a>          <strong class="jxr_keyword">super</strong>( message );
-<a name="31" href="#31">31</a>      }
-<a name="32" href="#32">32</a>  
-<a name="33" href="#33">33</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getType()
-<a name="34" href="#34">34</a>      {
-<a name="35" href="#35">35</a>          <strong class="jxr_keyword">return</strong> DocumentationReport.TYPE_ERROR;
-<a name="36" href="#36">36</a>      }
-<a name="37" href="#37">37</a>  }
+<a class="jxr_linenumber" name="L1" href="#L1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.docck.reports;
+<a class="jxr_linenumber" name="L2" href="#L2">2</a>   
+<a class="jxr_linenumber" name="L3" href="#L3">3</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="L4" href="#L4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="L5" href="#L5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a class="jxr_linenumber" name="L6" href="#L6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="L7" href="#L7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a class="jxr_linenumber" name="L8" href="#L8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="L9" href="#L9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="L10" href="#L10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="L11" href="#L11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L12" href="#L12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em>
+<a class="jxr_linenumber" name="L13" href="#L13">13</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L14" href="#L14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="L15" href="#L15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="L16" href="#L16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="L17" href="#L17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a class="jxr_linenumber" name="L18" href="#L18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="L19" href="#L19">19</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="L20" href="#L20">20</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="L21" href="#L21">21</a>  
+<a class="jxr_linenumber" name="L22" href="#L22">22</a>  <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L23" href="#L23">23</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
+<a class="jxr_linenumber" name="L24" href="#L24">24</a>  <em class="jxr_javadoccomment"> */</em>
+<a class="jxr_linenumber" name="L25" href="#L25">25</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/ErrorDocumentationReport.html">ErrorDocumentationReport</a>
+<a class="jxr_linenumber" name="L26" href="#L26">26</a>      <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/AbstractDocumentationReport.html">AbstractDocumentationReport</a>
+<a class="jxr_linenumber" name="L27" href="#L27">27</a>  {
+<a class="jxr_linenumber" name="L28" href="#L28">28</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/ErrorDocumentationReport.html">ErrorDocumentationReport</a>( String message )
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>      {
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>          <strong class="jxr_keyword">super</strong>( message );
+<a class="jxr_linenumber" name="L31" href="#L31">31</a>      }
+<a class="jxr_linenumber" name="L32" href="#L32">32</a>  
+<a class="jxr_linenumber" name="L33" href="#L33">33</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getType()
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>      {
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>          <strong class="jxr_keyword">return</strong> DocumentationReport.TYPE_ERROR;
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>      }
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>  }
 </pre>
-<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
-</html>
-
+<hr/>
+<div id="footer">Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+</body>
+</html>
\ No newline at end of file

Modified: websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/InfoDocumentationReport.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/InfoDocumentationReport.html (original)
+++ websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/InfoDocumentationReport.html Fri Apr  3 11:23:40 2015
@@ -1,51 +1,50 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
 <title>InfoDocumentationReport xref</title>
 <link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
 </head>
 <body>
 <div id="overview"><a href="../../../../../../../apidocs/org/apache/maven/plugin/docck/reports/InfoDocumentationReport.html">View Javadoc</a></div><pre>
-
-<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.docck.reports;
-<a name="2" href="#2">2</a>   
-<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
-<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
-<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
-<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
-<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
-<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
-<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
-<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
-<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
-<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
-<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
-<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
-<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
-<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
-<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
-<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
-<a name="19" href="#19">19</a>  <em class="jxr_comment"> * under the License.</em>
-<a name="20" href="#20">20</a>  <em class="jxr_comment"> */</em>
-<a name="21" href="#21">21</a>  
-<a name="22" href="#22">22</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="23" href="#23">23</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
-<a name="24" href="#24">24</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="25" href="#25">25</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/InfoDocumentationReport.html">InfoDocumentationReport</a>
-<a name="26" href="#26">26</a>      <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/AbstractDocumentationReport.html">AbstractDocumentationReport</a>
-<a name="27" href="#27">27</a>  {
-<a name="28" href="#28">28</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/InfoDocumentationReport.html">InfoDocumentationReport</a>( String message )
-<a name="29" href="#29">29</a>      {
-<a name="30" href="#30">30</a>          <strong class="jxr_keyword">super</strong>( message );
-<a name="31" href="#31">31</a>      }
-<a name="32" href="#32">32</a>  
-<a name="33" href="#33">33</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getType()
-<a name="34" href="#34">34</a>      {
-<a name="35" href="#35">35</a>          <strong class="jxr_keyword">return</strong> DocumentationReport.TYPE_INFO;
-<a name="36" href="#36">36</a>      }
-<a name="37" href="#37">37</a>  }
+<a class="jxr_linenumber" name="L1" href="#L1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.docck.reports;
+<a class="jxr_linenumber" name="L2" href="#L2">2</a>   
+<a class="jxr_linenumber" name="L3" href="#L3">3</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="L4" href="#L4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="L5" href="#L5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a class="jxr_linenumber" name="L6" href="#L6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="L7" href="#L7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a class="jxr_linenumber" name="L8" href="#L8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="L9" href="#L9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="L10" href="#L10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="L11" href="#L11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L12" href="#L12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em>
+<a class="jxr_linenumber" name="L13" href="#L13">13</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L14" href="#L14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="L15" href="#L15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="L16" href="#L16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="L17" href="#L17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a class="jxr_linenumber" name="L18" href="#L18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="L19" href="#L19">19</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="L20" href="#L20">20</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="L21" href="#L21">21</a>  
+<a class="jxr_linenumber" name="L22" href="#L22">22</a>  <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L23" href="#L23">23</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
+<a class="jxr_linenumber" name="L24" href="#L24">24</a>  <em class="jxr_javadoccomment"> */</em>
+<a class="jxr_linenumber" name="L25" href="#L25">25</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/InfoDocumentationReport.html">InfoDocumentationReport</a>
+<a class="jxr_linenumber" name="L26" href="#L26">26</a>      <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/AbstractDocumentationReport.html">AbstractDocumentationReport</a>
+<a class="jxr_linenumber" name="L27" href="#L27">27</a>  {
+<a class="jxr_linenumber" name="L28" href="#L28">28</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/InfoDocumentationReport.html">InfoDocumentationReport</a>( String message )
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>      {
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>          <strong class="jxr_keyword">super</strong>( message );
+<a class="jxr_linenumber" name="L31" href="#L31">31</a>      }
+<a class="jxr_linenumber" name="L32" href="#L32">32</a>  
+<a class="jxr_linenumber" name="L33" href="#L33">33</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getType()
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>      {
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>          <strong class="jxr_keyword">return</strong> DocumentationReport.TYPE_INFO;
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>      }
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>  }
 </pre>
-<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
-</html>
-
+<hr/>
+<div id="footer">Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+</body>
+</html>
\ No newline at end of file

Modified: websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/WarningDocumentationReport.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/WarningDocumentationReport.html (original)
+++ websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/WarningDocumentationReport.html Fri Apr  3 11:23:40 2015
@@ -1,51 +1,50 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
 <title>WarningDocumentationReport xref</title>
 <link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
 </head>
 <body>
 <div id="overview"><a href="../../../../../../../apidocs/org/apache/maven/plugin/docck/reports/WarningDocumentationReport.html">View Javadoc</a></div><pre>
-
-<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.docck.reports;
-<a name="2" href="#2">2</a>   
-<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
-<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
-<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
-<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
-<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
-<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
-<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
-<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
-<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
-<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
-<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
-<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
-<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
-<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
-<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
-<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
-<a name="19" href="#19">19</a>  <em class="jxr_comment"> * under the License.</em>
-<a name="20" href="#20">20</a>  <em class="jxr_comment"> */</em>
-<a name="21" href="#21">21</a>  
-<a name="22" href="#22">22</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="23" href="#23">23</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
-<a name="24" href="#24">24</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="25" href="#25">25</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/WarningDocumentationReport.html">WarningDocumentationReport</a>
-<a name="26" href="#26">26</a>      <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/AbstractDocumentationReport.html">AbstractDocumentationReport</a>
-<a name="27" href="#27">27</a>  {
-<a name="28" href="#28">28</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/WarningDocumentationReport.html">WarningDocumentationReport</a>( String message )
-<a name="29" href="#29">29</a>      {
-<a name="30" href="#30">30</a>          <strong class="jxr_keyword">super</strong>( message );
-<a name="31" href="#31">31</a>      }
-<a name="32" href="#32">32</a>  
-<a name="33" href="#33">33</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getType()
-<a name="34" href="#34">34</a>      {
-<a name="35" href="#35">35</a>          <strong class="jxr_keyword">return</strong> DocumentationReport.TYPE_WARN;
-<a name="36" href="#36">36</a>      }
-<a name="37" href="#37">37</a>  }
+<a class="jxr_linenumber" name="L1" href="#L1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.docck.reports;
+<a class="jxr_linenumber" name="L2" href="#L2">2</a>   
+<a class="jxr_linenumber" name="L3" href="#L3">3</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="L4" href="#L4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="L5" href="#L5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a class="jxr_linenumber" name="L6" href="#L6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="L7" href="#L7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a class="jxr_linenumber" name="L8" href="#L8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="L9" href="#L9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="L10" href="#L10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="L11" href="#L11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L12" href="#L12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em>
+<a class="jxr_linenumber" name="L13" href="#L13">13</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L14" href="#L14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="L15" href="#L15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="L16" href="#L16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="L17" href="#L17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a class="jxr_linenumber" name="L18" href="#L18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="L19" href="#L19">19</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="L20" href="#L20">20</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="L21" href="#L21">21</a>  
+<a class="jxr_linenumber" name="L22" href="#L22">22</a>  <em class="jxr_javadoccomment">/**</em>
+<a class="jxr_linenumber" name="L23" href="#L23">23</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
+<a class="jxr_linenumber" name="L24" href="#L24">24</a>  <em class="jxr_javadoccomment"> */</em>
+<a class="jxr_linenumber" name="L25" href="#L25">25</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/WarningDocumentationReport.html">WarningDocumentationReport</a>
+<a class="jxr_linenumber" name="L26" href="#L26">26</a>      <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/AbstractDocumentationReport.html">AbstractDocumentationReport</a>
+<a class="jxr_linenumber" name="L27" href="#L27">27</a>  {
+<a class="jxr_linenumber" name="L28" href="#L28">28</a>      <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/maven/plugin/docck/reports/WarningDocumentationReport.html">WarningDocumentationReport</a>( String message )
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>      {
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>          <strong class="jxr_keyword">super</strong>( message );
+<a class="jxr_linenumber" name="L31" href="#L31">31</a>      }
+<a class="jxr_linenumber" name="L32" href="#L32">32</a>  
+<a class="jxr_linenumber" name="L33" href="#L33">33</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getType()
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>      {
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>          <strong class="jxr_keyword">return</strong> DocumentationReport.TYPE_WARN;
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>      }
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>  }
 </pre>
-<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
-</html>
-
+<hr/>
+<div id="footer">Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+</body>
+</html>
\ No newline at end of file

Modified: websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/package-frame.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/package-frame.html (original)
+++ websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/package-frame.html Fri Apr  3 11:23:40 2015
@@ -1,39 +1,39 @@
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
-<html xml:lang="en" lang="en">
-	<head>
-		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Documentation Checker Plugin 1.0 Reference Package org.apache.maven.plugin.docck.reports</title>
-		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
-	</head>
-	<body>
-
-		<h3>
-        	<a href="package-summary.html" target="classFrame">org.apache.maven.plugin.docck.reports</a>
-      	</h3>
-
-      	<h3>Classes</h3>
-
-      	<ul>
-      		          	<li>
-            	<a href="AbstractDocumentationReport.html" target="classFrame">AbstractDocumentationReport</a>
-          	</li>
-          	          	<li>
-            	<a href="DocumentationReport.html" target="classFrame">DocumentationReport</a>
-          	</li>
-          	          	<li>
-            	<a href="DocumentationReporter.html" target="classFrame">DocumentationReporter</a>
-          	</li>
-          	          	<li>
-            	<a href="ErrorDocumentationReport.html" target="classFrame">ErrorDocumentationReport</a>
-          	</li>
-          	          	<li>
-            	<a href="InfoDocumentationReport.html" target="classFrame">InfoDocumentationReport</a>
-          	</li>
-          	          	<li>
-            	<a href="WarningDocumentationReport.html" target="classFrame">WarningDocumentationReport</a>
-          	</li>
-          	      	</ul>
-
-	</body>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+		<title>Apache Maven Documentation Checker Plugin 1.1 Reference Package org.apache.maven.plugin.docck.reports</title>
+		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
+	</head>
+	<body>
+
+		<h3>
+        	<a href="package-summary.html" target="classFrame">org.apache.maven.plugin.docck.reports</a>
+      	</h3>
+
+      	<h3>Classes</h3>
+
+      	<ul>
+      		          	<li>
+            	<a href="AbstractDocumentationReport.html" target="classFrame">AbstractDocumentationReport</a>
+          	</li>
+          	          	<li>
+            	<a href="DocumentationReport.html" target="classFrame">DocumentationReport</a>
+          	</li>
+          	          	<li>
+            	<a href="DocumentationReporter.html" target="classFrame">DocumentationReporter</a>
+          	</li>
+          	          	<li>
+            	<a href="ErrorDocumentationReport.html" target="classFrame">ErrorDocumentationReport</a>
+          	</li>
+          	          	<li>
+            	<a href="InfoDocumentationReport.html" target="classFrame">InfoDocumentationReport</a>
+          	</li>
+          	          	<li>
+            	<a href="WarningDocumentationReport.html" target="classFrame">WarningDocumentationReport</a>
+          	</li>
+          	      	</ul>
+
+	</body>
 </html>
\ No newline at end of file

Modified: websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/package-summary.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/package-summary.html (original)
+++ websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/org/apache/maven/plugin/docck/reports/package-summary.html Fri Apr  3 11:23:40 2015
@@ -1,92 +1,94 @@
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
-<html xml:lang="en" lang="en">
-	<head>
-		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Documentation Checker Plugin 1.0 Reference Package org.apache.maven.plugin.docck.reports</title>
-		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
-	</head>
-	<body>
-		      	<div class="overview">
-        	<ul>
-          		<li>
-            		<a href="../../../../../../overview-summary.html">Overview</a>
-          		</li>
-          		<li class="selected">Package</li>
-        	</ul>
-      	</div>
-      	<div class="framenoframe">
-        	<ul>
-          		<li>
-            		<a href="../../../../../../index.html" target="_top">FRAMES</a>
-          		</li>
-          		<li>
-            		<a href="package-summary.html" target="_top">NO FRAMES</a>
-          		</li>
-        	</ul>
-      	</div>
-		
-		      	<h2>Package org.apache.maven.plugin.docck.reports</h2>
-
-		<table class="summary">
-        	<thead>
-          		<tr>
-            		<th>Class Summary</th>
-          		</tr>
-        	</thead>
-        	<tbody>
-        		            	<tr>
-              		<td>
-                		<a href="AbstractDocumentationReport.html" target="classFrame">AbstractDocumentationReport</a>
-              		</td>
-            	</tr>
-				            	<tr>
-              		<td>
-                		<a href="DocumentationReport.html" target="classFrame">DocumentationReport</a>
-              		</td>
-            	</tr>
-				            	<tr>
-              		<td>
-                		<a href="DocumentationReporter.html" target="classFrame">DocumentationReporter</a>
-              		</td>
-            	</tr>
-				            	<tr>
-              		<td>
-                		<a href="ErrorDocumentationReport.html" target="classFrame">ErrorDocumentationReport</a>
-              		</td>
-            	</tr>
-				            	<tr>
-              		<td>
-                		<a href="InfoDocumentationReport.html" target="classFrame">InfoDocumentationReport</a>
-              		</td>
-            	</tr>
-				            	<tr>
-              		<td>
-                		<a href="WarningDocumentationReport.html" target="classFrame">WarningDocumentationReport</a>
-              		</td>
-            	</tr>
-				        	</tbody>
-      	</table>
-		
-		      	<div class="overview">
-        	<ul>
-          		<li>
-            		<a href="../../../../../../overview-summary.html">Overview</a>
-          		</li>
-          		<li class="selected">Package</li>
-        	</ul>
-      	</div>
-      	<div class="framenoframe">
-        	<ul>
-          		<li>
-            		<a href="../../../../../../index.html" target="_top">FRAMES</a>
-          		</li>
-          		<li>
-            		<a href="package-summary.html" target="_top">NO FRAMES</a>
-          		</li>
-        	</ul>
-      	</div>
-				<hr />
-		Copyright &copy; 2002-2008 The Apache Software Foundation. All Rights Reserved.
-	</body>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+		<title>Apache Maven Documentation Checker Plugin 1.1 Reference Package org.apache.maven.plugin.docck.reports</title>
+		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
+	</head>
+	<body>
+		      	<div class="overview">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../overview-summary.html">Overview</a>
+          		</li>
+          		<li class="selected">Package</li>
+        	</ul>
+      	</div>
+      	<div class="framenoframe">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../index.html" target="_top">FRAMES</a>
+          		</li>
+          		<li>
+            		<a href="package-summary.html" target="_top">NO FRAMES</a>
+          		</li>
+        	</ul>
+      	</div>
+		
+		      	<h2>Package org.apache.maven.plugin.docck.reports</h2>
+
+		<table class="summary">
+        	<thead>
+          		<tr>
+            		<th>Class Summary</th>
+          		</tr>
+        	</thead>
+        	<tbody>
+        		            	<tr>
+              		<td>
+                		<a href="AbstractDocumentationReport.html" target="classFrame">AbstractDocumentationReport</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="DocumentationReport.html" target="classFrame">DocumentationReport</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="DocumentationReporter.html" target="classFrame">DocumentationReporter</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ErrorDocumentationReport.html" target="classFrame">ErrorDocumentationReport</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="InfoDocumentationReport.html" target="classFrame">InfoDocumentationReport</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="WarningDocumentationReport.html" target="classFrame">WarningDocumentationReport</a>
+              		</td>
+            	</tr>
+				        	</tbody>
+      	</table>
+		
+		      	<div class="overview">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../overview-summary.html">Overview</a>
+          		</li>
+          		<li class="selected">Package</li>
+        	</ul>
+      	</div>
+      	<div class="framenoframe">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../index.html" target="_top">FRAMES</a>
+          		</li>
+          		<li>
+            		<a href="package-summary.html" target="_top">NO FRAMES</a>
+          		</li>
+        	</ul>
+      	</div>
+				<hr />
+		<div id="footer">
+			Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+		</div>
+	</body>
 </html>
\ No newline at end of file

Modified: websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/overview-frame.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/overview-frame.html (original)
+++ websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/overview-frame.html Fri Apr  3 11:23:40 2015
@@ -1,28 +1,27 @@
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
-<html xml:lang="en" lang="en">
-	<head>
-		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Documentation Checker Plugin 1.0 Reference</title>
-		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
-	</head>
-	<body>
-
-		<h3>
-			<a href="allclasses-frame.html" target="packageFrame">All Classes</a>
-		</h3>
-
-		<h3>Packages</h3>
-
-		<ul>
-						<li>
-				<a href="org/apache/maven/plugin/docck/package-frame.html" target="packageFrame">org.apache.maven.plugin.docck</a>
-			</li>
-						<li>
-				<a href="org/apache/maven/plugin/docck/reports/package-frame.html" target="packageFrame">org.apache.maven.plugin.docck.reports</a>
-			</li>
-					</ul>
-
-	</body>
-</html>
-
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+		<title>Apache Maven Documentation Checker Plugin 1.1 Reference</title>
+		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
+	</head>
+	<body>
+
+		<h3>
+			<a href="allclasses-frame.html" target="packageFrame">All Classes</a>
+		</h3>
+
+		<h3>Packages</h3>
+
+		<ul>
+						<li>
+				<a href="org/apache/maven/plugin/docck/package-frame.html" target="packageFrame">org.apache.maven.plugin.docck</a>
+			</li>
+						<li>
+				<a href="org/apache/maven/plugin/docck/reports/package-frame.html" target="packageFrame">org.apache.maven.plugin.docck.reports</a>
+			</li>
+					</ul>
+
+	</body>
+</html>

Modified: websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/overview-summary.html
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/overview-summary.html (original)
+++ websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/overview-summary.html Fri Apr  3 11:23:40 2015
@@ -1,69 +1,71 @@
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
-<html xml:lang="en" lang="en">
-	<head>
-		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Documentation Checker Plugin 1.0 Reference</title>
-		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
-	</head>
-	<body>
-				<div class="overview">
-			<ul>
-				<li class="selected">Overview</li>
-				<li>Package</li>
-			</ul>
-		</div>
-		<div class="framenoframe">
-			<ul>
-				<li>
-					<a href="index.html" target="_top">FRAMES</a>
-				</li>
-				<li>
-    	        	<a href="overview-summary.html" target="_top">NO FRAMES</a>
-        	  	</li>
-	        </ul>
-      	</div>
-		
-		      	<h2>Maven Documentation Checker Plugin 1.0 Reference</h2>
-
-		<table class="summary">
-        	<thead>
-          		<tr>
-            		<th>Packages</th>
-          		</tr>
-        	</thead>
-        	<tbody>
-    	    	            	<tr>
-              		<td>
-                		<a href="org/apache/maven/plugin/docck/package-summary.html">org.apache.maven.plugin.docck</a>
-              		</td>
-            	</tr>
-	          	            	<tr>
-              		<td>
-                		<a href="org/apache/maven/plugin/docck/reports/package-summary.html">org.apache.maven.plugin.docck.reports</a>
-              		</td>
-            	</tr>
-	          	        	</tbody>
-      	</table>
-		
-				<div class="overview">
-			<ul>
-				<li class="selected">Overview</li>
-				<li>Package</li>
-			</ul>
-		</div>
-		<div class="framenoframe">
-			<ul>
-				<li>
-					<a href="index.html" target="_top">FRAMES</a>
-				</li>
-				<li>
-    	        	<a href="overview-summary.html" target="_top">NO FRAMES</a>
-        	  	</li>
-	        </ul>
-      	</div>
-		
-		<hr />
-		Copyright &copy; 2002-2008 The Apache Software Foundation. All Rights Reserved.
-	</body>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+		<title>Apache Maven Documentation Checker Plugin 1.1 Reference</title>
+		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
+	</head>
+	<body>
+				<div class="overview">
+			<ul>
+				<li class="selected">Overview</li>
+				<li>Package</li>
+			</ul>
+		</div>
+		<div class="framenoframe">
+			<ul>
+				<li>
+					<a href="index.html" target="_top">FRAMES</a>
+				</li>
+				<li>
+    	        	<a href="overview-summary.html" target="_top">NO FRAMES</a>
+        	  	</li>
+	        </ul>
+      	</div>
+		
+		      	<h2>Apache Maven Documentation Checker Plugin 1.1 Reference</h2>
+
+		<table class="summary">
+        	<thead>
+          		<tr>
+            		<th>Packages</th>
+          		</tr>
+        	</thead>
+        	<tbody>
+    	    	            	<tr>
+              		<td>
+                		<a href="org/apache/maven/plugin/docck/package-summary.html">org.apache.maven.plugin.docck</a>
+              		</td>
+            	</tr>
+	          	            	<tr>
+              		<td>
+                		<a href="org/apache/maven/plugin/docck/reports/package-summary.html">org.apache.maven.plugin.docck.reports</a>
+              		</td>
+            	</tr>
+	          	        	</tbody>
+      	</table>
+		
+				<div class="overview">
+			<ul>
+				<li class="selected">Overview</li>
+				<li>Package</li>
+			</ul>
+		</div>
+		<div class="framenoframe">
+			<ul>
+				<li>
+					<a href="index.html" target="_top">FRAMES</a>
+				</li>
+				<li>
+    	        	<a href="overview-summary.html" target="_top">NO FRAMES</a>
+        	  	</li>
+	        </ul>
+      	</div>
+		
+		<hr />
+		<div id="footer">
+			Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+		</div>
+	</body>
 </html>
\ No newline at end of file

Modified: websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/stylesheet.css
==============================================================================
--- websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/stylesheet.css (original)
+++ websites/production/maven/components/plugins-archives/maven-docck-plugin-LATEST/xref/stylesheet.css Fri Apr  3 11:23:40 2015
@@ -1,116 +1,114 @@
-/* Javadoc style sheet */
-/* Define colors, fonts and other style attributes here to override the defaults  */
-body {
-    background-color: #fff;
-    font-family: Arial, Helvetica, sans-serif;
-}
-
-a:link {
-    color: #00f;
-}
-a:visited {
-    color: #00a;
-}
-
-a:active, a:hover {
-    color: #f30 !important;
-}
-
-ul, li {
-    list-style-type:none;
-    margin:0;
-    padding:0;
-}
-
-table td {
-    padding: 3px;
-    border: 1px solid #000;
-}
-table {
-    width:100%;
-    border: 1px solid #000;
-    border-collapse: collapse;
-}
-
-div.overview {
-    background-color:#ddd;
-    padding: 4px 4px 4px 0;
-}
-div.overview li, div.framenoframe li {
-    display: inline;
-}
-div.framenoframe {
-    text-align: center;
-    font-size: x-small;
-}
-div.framenoframe li {
-    margin: 0 3px 0 3px;
-}
-div.overview li {
-    margin:3px 3px 0 3px;
-    padding: 4px;
-}
-li.selected {
-    background-color:#888;
-    color: #fff;
-    font-weight: bold;
-}
-
-table.summary {
-    margin-bottom: 20px;
-}
-table.summary td, table.summary th {
-    font-weight: bold;
-    text-align: left;
-    padding: 3px;
-}
-table.summary th {
-    background-color:#036;
-    color: #fff;
-}
-table.summary td {
-    background-color:#eee;
-    border: 1px solid black;
-}
-
-em {
-    color: #A00;
-}
-em.comment {
-    color: #390;
-}
-.string {
-    color: #009;
-}
-div#footer {
-    text-align:center;
-}
-#overview {
-    padding:2px;
-}
-
-hr {
-    height: 1px;
-    color: #000;
-}
-
-/* JXR style sheet */
-.jxr_comment
-{
-    color: #390;
-}
-
-.jxr_javadoccomment
-{
-    color: #A00;
-}
-
-.jxr_string
-{
-    color: #009;
-}
-
-.jxr_keyword
-{
-    color: #000;
-}
+/* Javadoc style sheet */
+/* Define colors, fonts and other style attributes here to override the defaults  */
+body {
+    background-color: #fff;
+    font-family: Arial, Helvetica, sans-serif;
+}
+
+a:link {
+    color: #00f;
+}
+a:visited {
+    color: #00a;
+}
+
+a:active, a:hover {
+    color: #f30 !important;
+}
+
+ul, li {
+    list-style-type:none;
+    margin:0;
+    padding:0;
+}
+
+table td {
+    padding: 3px;
+    border: 1px solid #000;
+}
+table {
+    width:100%;
+    border: 1px solid #000;
+    border-collapse: collapse;
+}
+
+div.overview {
+    background-color:#ddd;
+    padding: 4px 4px 4px 0;
+}
+div.overview li, div.framenoframe li {
+    display: inline;
+}
+div.framenoframe {
+    text-align: center;
+    font-size: x-small;
+}
+div.framenoframe li {
+    margin: 0 3px 0 3px;
+}
+div.overview li {
+    margin:3px 3px 0 3px;
+    padding: 4px;
+}
+li.selected {
+    background-color:#888;
+    color: #fff;
+    font-weight: bold;
+}
+
+table.summary {
+    margin-bottom: 20px;
+}
+table.summary td, table.summary th {
+    font-weight: bold;
+    text-align: left;
+    padding: 3px;
+}
+table.summary th {
+    background-color:#036;
+    color: #fff;
+}
+table.summary td {
+    background-color:#eee;
+    border: 1px solid black;
+}
+
+em {
+    color: #A00;
+}
+em.comment {
+    color: #390;
+}
+.string {
+    color: #009;
+}
+
+#overview {
+    padding:2px;
+}
+
+hr {
+    height: 1px;
+    color: #000;
+}
+
+/* JXR style sheet */
+.jxr_comment
+{
+    color: #390;
+}
+
+.jxr_javadoccomment
+{
+    color: #A00;
+}
+
+.jxr_string
+{
+    color: #009;
+}
+
+.jxr_keyword
+{
+    color: #000;
+}
\ No newline at end of file