You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/05/08 15:58:28 UTC

svn commit: r816660 [27/33] - in /websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest: ./ apidocs/ apidocs/org/apache/maven/plugin/checkstyle/ apidocs/org/apache/maven/plugin/checkstyle/class-use/ apidocs/org/apache/maven/plugi...

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/CheckstyleResultsTest.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/CheckstyleResultsTest.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/CheckstyleResultsTest.html Tue May  8 13:58:21 2012
@@ -35,124 +35,123 @@
 <a name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> com.puppycrawl.tools.checkstyle.api.LocalizedMessage;
 <a name="26" href="#26">26</a>  
 <a name="27" href="#27">27</a>  <strong class="jxr_keyword">import</strong> java.util.Collections;
-<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.util.Locale;
-<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
-<a name="30" href="#30">30</a>  <strong class="jxr_keyword">import</strong> java.util.HashMap;
-<a name="31" href="#31">31</a>  <strong class="jxr_keyword">import</strong> java.util.List;
-<a name="32" href="#32">32</a>  <strong class="jxr_keyword">import</strong> java.util.ArrayList;
-<a name="33" href="#33">33</a>  
-<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
-<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment"> * @version $Id$</em>
-<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="38" href="#38">38</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/maven/plugin/checkstyle/CheckstyleResultsTest.html">CheckstyleResultsTest</a>
-<a name="39" href="#39">39</a>      <strong class="jxr_keyword">extends</strong> TestCase
-<a name="40" href="#40">40</a>  {
-<a name="41" href="#41">41</a>      <strong class="jxr_keyword">private</strong> CheckstyleResults results;
-<a name="42" href="#42">42</a>  
-<a name="43" href="#43">43</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
-<a name="44" href="#44">44</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> setUp()
-<a name="45" href="#45">45</a>          <strong class="jxr_keyword">throws</strong> Exception
-<a name="46" href="#46">46</a>      {
-<a name="47" href="#47">47</a>          results = <strong class="jxr_keyword">new</strong> CheckstyleResults();
-<a name="48" href="#48">48</a>      }
-<a name="49" href="#49">49</a>  
-<a name="50" href="#50">50</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
-<a name="51" href="#51">51</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> tearDown()
-<a name="52" href="#52">52</a>          <strong class="jxr_keyword">throws</strong> Exception
-<a name="53" href="#53">53</a>      {
-<a name="54" href="#54">54</a>          results = <strong class="jxr_keyword">null</strong>;
-<a name="55" href="#55">55</a>      }
-<a name="56" href="#56">56</a>  
-<a name="57" href="#57">57</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testEmptyResults()
-<a name="58" href="#58">58</a>      {
-<a name="59" href="#59">59</a>          assertEquals( <span class="jxr_string">"test total files"</span>, 0, results.getFiles().size() );
-<a name="60" href="#60">60</a>  
-<a name="61" href="#61">61</a>          assertEquals( <span class="jxr_string">"test file count"</span>, 0, results.getFileCount() );
-<a name="62" href="#62">62</a>  
-<a name="63" href="#63">63</a>          assertEquals( <span class="jxr_string">"test zero file violations"</span>, 0, results.getFileViolations( <span class="jxr_string">"filename"</span> ).size() );
-<a name="64" href="#64">64</a>  
-<a name="65" href="#65">65</a>          assertEquals( <span class="jxr_string">"test INFO severity count"</span>, 0, results.getSeverityCount( SeverityLevel.INFO ) );
-<a name="66" href="#66">66</a>  
-<a name="67" href="#67">67</a>          assertEquals( <span class="jxr_string">"test WARNING severity count"</span>, 0, results.getSeverityCount( SeverityLevel.WARNING ) );
-<a name="68" href="#68">68</a>  
-<a name="69" href="#69">69</a>          assertEquals( <span class="jxr_string">"test ERROR severity count"</span>, 0, results.getSeverityCount( SeverityLevel.ERROR ) );
-<a name="70" href="#70">70</a>  
-<a name="71" href="#71">71</a>          assertEquals( <span class="jxr_string">"test IGNORE severity count"</span>, 0, results.getSeverityCount( SeverityLevel.IGNORE ) );
-<a name="72" href="#72">72</a>      }
-<a name="73" href="#73">73</a>  
-<a name="74" href="#74">74</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testResults()
-<a name="75" href="#75">75</a>      {
-<a name="76" href="#76">76</a>          Map files = <strong class="jxr_keyword">new</strong> HashMap();
-<a name="77" href="#77">77</a>  
-<a name="78" href="#78">78</a>          LocalizedMessage message = <strong class="jxr_keyword">new</strong> LocalizedMessage( 0, 0, <span class="jxr_string">""</span>, <span class="jxr_string">""</span>, <strong class="jxr_keyword">null</strong>, SeverityLevel.INFO, <strong class="jxr_keyword">null</strong>, getClass(), <strong class="jxr_keyword">null</strong> );
-<a name="79" href="#79">79</a>          AuditEvent event = <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file1"</span>, message );
-<a name="80" href="#80">80</a>          files.put( <span class="jxr_string">"file1"</span>, Collections.singletonList( event ) );
-<a name="81" href="#81">81</a>  
-<a name="82" href="#82">82</a>          message = <strong class="jxr_keyword">new</strong> LocalizedMessage( 0, 0, <span class="jxr_string">""</span>, <span class="jxr_string">""</span>, <strong class="jxr_keyword">null</strong>, SeverityLevel.WARNING, <strong class="jxr_keyword">null</strong>, getClass(), <strong class="jxr_keyword">null</strong> );
-<a name="83" href="#83">83</a>          List events = <strong class="jxr_keyword">new</strong> ArrayList();
+<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
+<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> java.util.HashMap;
+<a name="30" href="#30">30</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="31" href="#31">31</a>  <strong class="jxr_keyword">import</strong> java.util.ArrayList;
+<a name="32" href="#32">32</a>  
+<a name="33" href="#33">33</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
+<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> * @version $Id$</em>
+<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="37" href="#37">37</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/maven/plugin/checkstyle/CheckstyleResultsTest.html">CheckstyleResultsTest</a>
+<a name="38" href="#38">38</a>      <strong class="jxr_keyword">extends</strong> TestCase
+<a name="39" href="#39">39</a>  {
+<a name="40" href="#40">40</a>      <strong class="jxr_keyword">private</strong> CheckstyleResults results;
+<a name="41" href="#41">41</a>  
+<a name="42" href="#42">42</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
+<a name="43" href="#43">43</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> setUp()
+<a name="44" href="#44">44</a>          <strong class="jxr_keyword">throws</strong> Exception
+<a name="45" href="#45">45</a>      {
+<a name="46" href="#46">46</a>          results = <strong class="jxr_keyword">new</strong> CheckstyleResults();
+<a name="47" href="#47">47</a>      }
+<a name="48" href="#48">48</a>  
+<a name="49" href="#49">49</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
+<a name="50" href="#50">50</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> tearDown()
+<a name="51" href="#51">51</a>          <strong class="jxr_keyword">throws</strong> Exception
+<a name="52" href="#52">52</a>      {
+<a name="53" href="#53">53</a>          results = <strong class="jxr_keyword">null</strong>;
+<a name="54" href="#54">54</a>      }
+<a name="55" href="#55">55</a>  
+<a name="56" href="#56">56</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testEmptyResults()
+<a name="57" href="#57">57</a>      {
+<a name="58" href="#58">58</a>          assertEquals( <span class="jxr_string">"test total files"</span>, 0, results.getFiles().size() );
+<a name="59" href="#59">59</a>  
+<a name="60" href="#60">60</a>          assertEquals( <span class="jxr_string">"test file count"</span>, 0, results.getFileCount() );
+<a name="61" href="#61">61</a>  
+<a name="62" href="#62">62</a>          assertEquals( <span class="jxr_string">"test zero file violations"</span>, 0, results.getFileViolations( <span class="jxr_string">"filename"</span> ).size() );
+<a name="63" href="#63">63</a>  
+<a name="64" href="#64">64</a>          assertEquals( <span class="jxr_string">"test INFO severity count"</span>, 0, results.getSeverityCount( SeverityLevel.INFO ) );
+<a name="65" href="#65">65</a>  
+<a name="66" href="#66">66</a>          assertEquals( <span class="jxr_string">"test WARNING severity count"</span>, 0, results.getSeverityCount( SeverityLevel.WARNING ) );
+<a name="67" href="#67">67</a>  
+<a name="68" href="#68">68</a>          assertEquals( <span class="jxr_string">"test ERROR severity count"</span>, 0, results.getSeverityCount( SeverityLevel.ERROR ) );
+<a name="69" href="#69">69</a>  
+<a name="70" href="#70">70</a>          assertEquals( <span class="jxr_string">"test IGNORE severity count"</span>, 0, results.getSeverityCount( SeverityLevel.IGNORE ) );
+<a name="71" href="#71">71</a>      }
+<a name="72" href="#72">72</a>  
+<a name="73" href="#73">73</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testResults()
+<a name="74" href="#74">74</a>      {
+<a name="75" href="#75">75</a>          Map&lt;String, List&lt;AuditEvent&gt;&gt; files = <strong class="jxr_keyword">new</strong> HashMap&lt;String, List&lt;AuditEvent&gt;&gt;();
+<a name="76" href="#76">76</a>  
+<a name="77" href="#77">77</a>          LocalizedMessage message = <strong class="jxr_keyword">new</strong> LocalizedMessage( 0, 0, <span class="jxr_string">""</span>, <span class="jxr_string">""</span>, <strong class="jxr_keyword">null</strong>, SeverityLevel.INFO, <strong class="jxr_keyword">null</strong>, getClass(), <strong class="jxr_keyword">null</strong> );
+<a name="78" href="#78">78</a>          AuditEvent event = <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file1"</span>, message );
+<a name="79" href="#79">79</a>          files.put( <span class="jxr_string">"file1"</span>, Collections.singletonList( event ) );
+<a name="80" href="#80">80</a>  
+<a name="81" href="#81">81</a>          message = <strong class="jxr_keyword">new</strong> LocalizedMessage( 0, 0, <span class="jxr_string">""</span>, <span class="jxr_string">""</span>, <strong class="jxr_keyword">null</strong>, SeverityLevel.WARNING, <strong class="jxr_keyword">null</strong>, getClass(), <strong class="jxr_keyword">null</strong> );
+<a name="82" href="#82">82</a>          List&lt;AuditEvent&gt; events = <strong class="jxr_keyword">new</strong> ArrayList&lt;AuditEvent&gt;();
+<a name="83" href="#83">83</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file2"</span>, message ) );
 <a name="84" href="#84">84</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file2"</span>, message ) );
-<a name="85" href="#85">85</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file2"</span>, message ) );
-<a name="86" href="#86">86</a>          files.put( <span class="jxr_string">"file2"</span>, events );
-<a name="87" href="#87">87</a>  
-<a name="88" href="#88">88</a>          message = <strong class="jxr_keyword">new</strong> LocalizedMessage( 0, 0, <span class="jxr_string">""</span>, <span class="jxr_string">""</span>, <strong class="jxr_keyword">null</strong>, SeverityLevel.ERROR, <strong class="jxr_keyword">null</strong>, getClass(), <strong class="jxr_keyword">null</strong> );
-<a name="89" href="#89">89</a>          events = <strong class="jxr_keyword">new</strong> ArrayList();
+<a name="85" href="#85">85</a>          files.put( <span class="jxr_string">"file2"</span>, events );
+<a name="86" href="#86">86</a>  
+<a name="87" href="#87">87</a>          message = <strong class="jxr_keyword">new</strong> LocalizedMessage( 0, 0, <span class="jxr_string">""</span>, <span class="jxr_string">""</span>, <strong class="jxr_keyword">null</strong>, SeverityLevel.ERROR, <strong class="jxr_keyword">null</strong>, getClass(), <strong class="jxr_keyword">null</strong> );
+<a name="88" href="#88">88</a>          events = <strong class="jxr_keyword">new</strong> ArrayList&lt;AuditEvent&gt;();
+<a name="89" href="#89">89</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file3"</span>, message ) );
 <a name="90" href="#90">90</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file3"</span>, message ) );
 <a name="91" href="#91">91</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file3"</span>, message ) );
-<a name="92" href="#92">92</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file3"</span>, message ) );
-<a name="93" href="#93">93</a>          files.put( <span class="jxr_string">"file3"</span>, events );
-<a name="94" href="#94">94</a>  
-<a name="95" href="#95">95</a>          message = <strong class="jxr_keyword">new</strong> LocalizedMessage( 0, 0, <span class="jxr_string">""</span>, <span class="jxr_string">""</span>, <strong class="jxr_keyword">null</strong>, SeverityLevel.IGNORE, <strong class="jxr_keyword">null</strong>, getClass(), <strong class="jxr_keyword">null</strong> );
-<a name="96" href="#96">96</a>          events = <strong class="jxr_keyword">new</strong> ArrayList();
+<a name="92" href="#92">92</a>          files.put( <span class="jxr_string">"file3"</span>, events );
+<a name="93" href="#93">93</a>  
+<a name="94" href="#94">94</a>          message = <strong class="jxr_keyword">new</strong> LocalizedMessage( 0, 0, <span class="jxr_string">""</span>, <span class="jxr_string">""</span>, <strong class="jxr_keyword">null</strong>, SeverityLevel.IGNORE, <strong class="jxr_keyword">null</strong>, getClass(), <strong class="jxr_keyword">null</strong> );
+<a name="95" href="#95">95</a>          events = <strong class="jxr_keyword">new</strong> ArrayList&lt;AuditEvent&gt;();
+<a name="96" href="#96">96</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file4"</span>, message ) );
 <a name="97" href="#97">97</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file4"</span>, message ) );
 <a name="98" href="#98">98</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file4"</span>, message ) );
 <a name="99" href="#99">99</a>          events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file4"</span>, message ) );
-<a name="100" href="#100">100</a>         events.add( <strong class="jxr_keyword">new</strong> AuditEvent( <strong class="jxr_keyword">this</strong>, <span class="jxr_string">"file4"</span>, message ) );
-<a name="101" href="#101">101</a>         files.put( <span class="jxr_string">"file4"</span>, events );
-<a name="102" href="#102">102</a> 
-<a name="103" href="#103">103</a>         results.setFiles( files );
-<a name="104" href="#104">104</a> 
-<a name="105" href="#105">105</a>         assertEquals( <span class="jxr_string">"test total files"</span>, 4, results.getFiles().size() );
-<a name="106" href="#106">106</a>         assertEquals( <span class="jxr_string">"test file count"</span>, 4, results.getFileCount() );
-<a name="107" href="#107">107</a> 
-<a name="108" href="#108">108</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file0"</span>, SeverityLevel.INFO ) );
-<a name="109" href="#109">109</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file0"</span>, SeverityLevel.WARNING ) );
-<a name="110" href="#110">110</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file0"</span>, SeverityLevel.ERROR ) );
-<a name="111" href="#111">111</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file0"</span>, SeverityLevel.IGNORE ) );
-<a name="112" href="#112">112</a> 
-<a name="113" href="#113">113</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 1, results.getFileViolations( <span class="jxr_string">"file1"</span> ).size() );
-<a name="114" href="#114">114</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 1, results.getSeverityCount( <span class="jxr_string">"file1"</span>, SeverityLevel.INFO ) );
-<a name="115" href="#115">115</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file1"</span>, SeverityLevel.WARNING ) );
-<a name="116" href="#116">116</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file1"</span>, SeverityLevel.ERROR ) );
-<a name="117" href="#117">117</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file1"</span>, SeverityLevel.IGNORE ) );
-<a name="118" href="#118">118</a> 
-<a name="119" href="#119">119</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 2, results.getFileViolations( <span class="jxr_string">"file2"</span> ).size() );
-<a name="120" href="#120">120</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file2"</span>, SeverityLevel.INFO ) );
-<a name="121" href="#121">121</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 2, results.getSeverityCount( <span class="jxr_string">"file2"</span>, SeverityLevel.WARNING ) );
-<a name="122" href="#122">122</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file2"</span>, SeverityLevel.ERROR ) );
-<a name="123" href="#123">123</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file2"</span>, SeverityLevel.IGNORE ) );
-<a name="124" href="#124">124</a> 
-<a name="125" href="#125">125</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 3, results.getFileViolations( <span class="jxr_string">"file3"</span> ).size() );
-<a name="126" href="#126">126</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file3"</span>, SeverityLevel.INFO ) );
-<a name="127" href="#127">127</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file3"</span>, SeverityLevel.WARNING ) );
-<a name="128" href="#128">128</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 3, results.getSeverityCount( <span class="jxr_string">"file3"</span>, SeverityLevel.ERROR ) );
-<a name="129" href="#129">129</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file3"</span>, SeverityLevel.IGNORE ) );
-<a name="130" href="#130">130</a> 
-<a name="131" href="#131">131</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 4, results.getFileViolations( <span class="jxr_string">"file4"</span> ).size() );
-<a name="132" href="#132">132</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file4"</span>, SeverityLevel.INFO ) );
-<a name="133" href="#133">133</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file4"</span>, SeverityLevel.WARNING ) );
-<a name="134" href="#134">134</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file4"</span>, SeverityLevel.ERROR ) );
-<a name="135" href="#135">135</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 4, results.getSeverityCount( <span class="jxr_string">"file4"</span>, SeverityLevel.IGNORE ) );
-<a name="136" href="#136">136</a> 
-<a name="137" href="#137">137</a>         assertEquals( <span class="jxr_string">"test INFO severity count"</span>, 1, results.getSeverityCount( SeverityLevel.INFO ) );
-<a name="138" href="#138">138</a>         assertEquals( <span class="jxr_string">"test WARNING severity count"</span>, 2, results.getSeverityCount( SeverityLevel.WARNING ) );
-<a name="139" href="#139">139</a>         assertEquals( <span class="jxr_string">"test ERROR severity count"</span>, 3, results.getSeverityCount( SeverityLevel.ERROR ) );
-<a name="140" href="#140">140</a>         assertEquals( <span class="jxr_string">"test IGNORE severity count"</span>, 4, results.getSeverityCount( SeverityLevel.IGNORE ) );
-<a name="141" href="#141">141</a> 
-<a name="142" href="#142">142</a>         results.setFileViolations( <span class="jxr_string">"file"</span>, Collections.EMPTY_LIST );
-<a name="143" href="#143">143</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 0, results.getFileViolations( <span class="jxr_string">"file"</span> ).size() );
-<a name="144" href="#144">144</a>     }
-<a name="145" href="#145">145</a> }
+<a name="100" href="#100">100</a>         files.put( <span class="jxr_string">"file4"</span>, events );
+<a name="101" href="#101">101</a> 
+<a name="102" href="#102">102</a>         results.setFiles( files );
+<a name="103" href="#103">103</a> 
+<a name="104" href="#104">104</a>         assertEquals( <span class="jxr_string">"test total files"</span>, 4, results.getFiles().size() );
+<a name="105" href="#105">105</a>         assertEquals( <span class="jxr_string">"test file count"</span>, 4, results.getFileCount() );
+<a name="106" href="#106">106</a> 
+<a name="107" href="#107">107</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file0"</span>, SeverityLevel.INFO ) );
+<a name="108" href="#108">108</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file0"</span>, SeverityLevel.WARNING ) );
+<a name="109" href="#109">109</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file0"</span>, SeverityLevel.ERROR ) );
+<a name="110" href="#110">110</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file0"</span>, SeverityLevel.IGNORE ) );
+<a name="111" href="#111">111</a> 
+<a name="112" href="#112">112</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 1, results.getFileViolations( <span class="jxr_string">"file1"</span> ).size() );
+<a name="113" href="#113">113</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 1, results.getSeverityCount( <span class="jxr_string">"file1"</span>, SeverityLevel.INFO ) );
+<a name="114" href="#114">114</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file1"</span>, SeverityLevel.WARNING ) );
+<a name="115" href="#115">115</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file1"</span>, SeverityLevel.ERROR ) );
+<a name="116" href="#116">116</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file1"</span>, SeverityLevel.IGNORE ) );
+<a name="117" href="#117">117</a> 
+<a name="118" href="#118">118</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 2, results.getFileViolations( <span class="jxr_string">"file2"</span> ).size() );
+<a name="119" href="#119">119</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file2"</span>, SeverityLevel.INFO ) );
+<a name="120" href="#120">120</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 2, results.getSeverityCount( <span class="jxr_string">"file2"</span>, SeverityLevel.WARNING ) );
+<a name="121" href="#121">121</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file2"</span>, SeverityLevel.ERROR ) );
+<a name="122" href="#122">122</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file2"</span>, SeverityLevel.IGNORE ) );
+<a name="123" href="#123">123</a> 
+<a name="124" href="#124">124</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 3, results.getFileViolations( <span class="jxr_string">"file3"</span> ).size() );
+<a name="125" href="#125">125</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file3"</span>, SeverityLevel.INFO ) );
+<a name="126" href="#126">126</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file3"</span>, SeverityLevel.WARNING ) );
+<a name="127" href="#127">127</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 3, results.getSeverityCount( <span class="jxr_string">"file3"</span>, SeverityLevel.ERROR ) );
+<a name="128" href="#128">128</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file3"</span>, SeverityLevel.IGNORE ) );
+<a name="129" href="#129">129</a> 
+<a name="130" href="#130">130</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 4, results.getFileViolations( <span class="jxr_string">"file4"</span> ).size() );
+<a name="131" href="#131">131</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file4"</span>, SeverityLevel.INFO ) );
+<a name="132" href="#132">132</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file4"</span>, SeverityLevel.WARNING ) );
+<a name="133" href="#133">133</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 0, results.getSeverityCount( <span class="jxr_string">"file4"</span>, SeverityLevel.ERROR ) );
+<a name="134" href="#134">134</a>         assertEquals( <span class="jxr_string">"test file severities"</span>, 4, results.getSeverityCount( <span class="jxr_string">"file4"</span>, SeverityLevel.IGNORE ) );
+<a name="135" href="#135">135</a> 
+<a name="136" href="#136">136</a>         assertEquals( <span class="jxr_string">"test INFO severity count"</span>, 1, results.getSeverityCount( SeverityLevel.INFO ) );
+<a name="137" href="#137">137</a>         assertEquals( <span class="jxr_string">"test WARNING severity count"</span>, 2, results.getSeverityCount( SeverityLevel.WARNING ) );
+<a name="138" href="#138">138</a>         assertEquals( <span class="jxr_string">"test ERROR severity count"</span>, 3, results.getSeverityCount( SeverityLevel.ERROR ) );
+<a name="139" href="#139">139</a>         assertEquals( <span class="jxr_string">"test IGNORE severity count"</span>, 4, results.getSeverityCount( SeverityLevel.IGNORE ) );
+<a name="140" href="#140">140</a> 
+<a name="141" href="#141">141</a>         results.setFileViolations( <span class="jxr_string">"file"</span>, Collections.EMPTY_LIST );
+<a name="142" href="#142">142</a>         assertEquals( <span class="jxr_string">"test file violations"</span>, 0, results.getFileViolations( <span class="jxr_string">"file"</span> ).size() );
+<a name="143" href="#143">143</a>     }
+<a name="144" href="#144">144</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/CheckstyleViolationCheckMojoTest.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/CheckstyleViolationCheckMojoTest.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/CheckstyleViolationCheckMojoTest.html Tue May  8 13:58:21 2012
@@ -61,111 +61,109 @@
 <a name="51" href="#51">51</a>          
 <a name="52" href="#52">52</a>          assertNotNull( <span class="jxr_string">"project null."</span>, mojo.project );
 <a name="53" href="#53">53</a>          
-<a name="54" href="#54">54</a>          assertNotNull( <span class="jxr_string">"locator null."</span>, mojo.locator );
-<a name="55" href="#55">55</a>          
-<a name="56" href="#56">56</a>          <strong class="jxr_keyword">try</strong>
-<a name="57" href="#57">57</a>          {
-<a name="58" href="#58">58</a>              mojo.execute();
-<a name="59" href="#59">59</a>  
-<a name="60" href="#60">60</a>              fail( <span class="jxr_string">"Must throw an exception on violations"</span> );
-<a name="61" href="#61">61</a>          }
-<a name="62" href="#62">62</a>          <strong class="jxr_keyword">catch</strong> ( MojoFailureException e )
-<a name="63" href="#63">63</a>          {
-<a name="64" href="#64">64</a>              <em class="jxr_comment">//expected</em>
-<a name="65" href="#65">65</a>          }
-<a name="66" href="#66">66</a>      }
-<a name="67" href="#67">67</a>  
-<a name="68" href="#68">68</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testInvalidFormat()
-<a name="69" href="#69">69</a>          <strong class="jxr_keyword">throws</strong> Exception
-<a name="70" href="#70">70</a>      {
-<a name="71" href="#71">71</a>          File pluginXmlFile = <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"src/test/plugin-configs/check-plugin-config.xml"</span> );
+<a name="54" href="#54">54</a>          <strong class="jxr_keyword">try</strong>
+<a name="55" href="#55">55</a>          {
+<a name="56" href="#56">56</a>              mojo.execute();
+<a name="57" href="#57">57</a>  
+<a name="58" href="#58">58</a>              fail( <span class="jxr_string">"Must throw an exception on violations"</span> );
+<a name="59" href="#59">59</a>          }
+<a name="60" href="#60">60</a>          <strong class="jxr_keyword">catch</strong> ( MojoFailureException e )
+<a name="61" href="#61">61</a>          {
+<a name="62" href="#62">62</a>              <em class="jxr_comment">//expected</em>
+<a name="63" href="#63">63</a>          }
+<a name="64" href="#64">64</a>      }
+<a name="65" href="#65">65</a>  
+<a name="66" href="#66">66</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testInvalidFormat()
+<a name="67" href="#67">67</a>          <strong class="jxr_keyword">throws</strong> Exception
+<a name="68" href="#68">68</a>      {
+<a name="69" href="#69">69</a>          File pluginXmlFile = <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"src/test/plugin-configs/check-plugin-config.xml"</span> );
+<a name="70" href="#70">70</a>  
+<a name="71" href="#71">71</a>          Mojo mojo = lookupMojo( <span class="jxr_string">"check"</span>, pluginXmlFile );
 <a name="72" href="#72">72</a>  
-<a name="73" href="#73">73</a>          Mojo mojo = lookupMojo( <span class="jxr_string">"check"</span>, pluginXmlFile );
+<a name="73" href="#73">73</a>          assertNotNull( <span class="jxr_string">"Mojo found."</span>, mojo );
 <a name="74" href="#74">74</a>  
-<a name="75" href="#75">75</a>          assertNotNull( <span class="jxr_string">"Mojo found."</span>, mojo );
-<a name="76" href="#76">76</a>  
-<a name="77" href="#77">77</a>          mojoSetup( mojo );
-<a name="78" href="#78">78</a>          
-<a name="79" href="#79">79</a>          setVariableValueToObject( mojo, <span class="jxr_string">"outputFileFormat"</span>, <span class="jxr_string">"plain"</span> );
-<a name="80" href="#80">80</a>  
-<a name="81" href="#81">81</a>          <strong class="jxr_keyword">try</strong>
-<a name="82" href="#82">82</a>          {
-<a name="83" href="#83">83</a>              mojo.execute();
-<a name="84" href="#84">84</a>  
-<a name="85" href="#85">85</a>              fail( <span class="jxr_string">"Must throw an exception invalid format: plain"</span> );
-<a name="86" href="#86">86</a>          }
-<a name="87" href="#87">87</a>          <strong class="jxr_keyword">catch</strong> ( MojoExecutionException e )
-<a name="88" href="#88">88</a>          {
-<a name="89" href="#89">89</a>              <em class="jxr_comment">//expected</em>
-<a name="90" href="#90">90</a>          }
-<a name="91" href="#91">91</a>      }
-<a name="92" href="#92">92</a>  
-<a name="93" href="#93">93</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testNoOutputFile()
-<a name="94" href="#94">94</a>          <strong class="jxr_keyword">throws</strong> Exception
-<a name="95" href="#95">95</a>      {
-<a name="96" href="#96">96</a>          File pluginXmlFile = <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"src/test/plugin-configs/check-plugin-config.xml"</span> );
+<a name="75" href="#75">75</a>          mojoSetup( mojo );
+<a name="76" href="#76">76</a>          
+<a name="77" href="#77">77</a>          setVariableValueToObject( mojo, <span class="jxr_string">"outputFileFormat"</span>, <span class="jxr_string">"plain"</span> );
+<a name="78" href="#78">78</a>  
+<a name="79" href="#79">79</a>          <strong class="jxr_keyword">try</strong>
+<a name="80" href="#80">80</a>          {
+<a name="81" href="#81">81</a>              mojo.execute();
+<a name="82" href="#82">82</a>  
+<a name="83" href="#83">83</a>              fail( <span class="jxr_string">"Must throw an exception invalid format: plain"</span> );
+<a name="84" href="#84">84</a>          }
+<a name="85" href="#85">85</a>          <strong class="jxr_keyword">catch</strong> ( MojoExecutionException e )
+<a name="86" href="#86">86</a>          {
+<a name="87" href="#87">87</a>              <em class="jxr_comment">//expected</em>
+<a name="88" href="#88">88</a>          }
+<a name="89" href="#89">89</a>      }
+<a name="90" href="#90">90</a>  
+<a name="91" href="#91">91</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testNoOutputFile()
+<a name="92" href="#92">92</a>          <strong class="jxr_keyword">throws</strong> Exception
+<a name="93" href="#93">93</a>      {
+<a name="94" href="#94">94</a>          File pluginXmlFile = <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"src/test/plugin-configs/check-plugin-config.xml"</span> );
+<a name="95" href="#95">95</a>  
+<a name="96" href="#96">96</a>          Mojo mojo = lookupMojo( <span class="jxr_string">"check"</span>, pluginXmlFile );
 <a name="97" href="#97">97</a>  
-<a name="98" href="#98">98</a>          Mojo mojo = lookupMojo( <span class="jxr_string">"check"</span>, pluginXmlFile );
+<a name="98" href="#98">98</a>          assertNotNull( <span class="jxr_string">"Mojo found."</span>, mojo );
 <a name="99" href="#99">99</a>  
-<a name="100" href="#100">100</a>         assertNotNull( <span class="jxr_string">"Mojo found."</span>, mojo );
-<a name="101" href="#101">101</a> 
-<a name="102" href="#102">102</a>         mojoSetup( mojo );
-<a name="103" href="#103">103</a>         
-<a name="104" href="#104">104</a>         setVariableValueToObject( mojo, <span class="jxr_string">"outputFile"</span>, <strong class="jxr_keyword">new</strong> File( <span class="jxr_string">"target/NoSuchFile.xml"</span> ) );
-<a name="105" href="#105">105</a> 
-<a name="106" href="#106">106</a>         mojo.execute();
-<a name="107" href="#107">107</a>     }
-<a name="108" href="#108">108</a> 
-<a name="109" href="#109">109</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testNoFail()
-<a name="110" href="#110">110</a>         <strong class="jxr_keyword">throws</strong> Exception
-<a name="111" href="#111">111</a>     {
-<a name="112" href="#112">112</a>         File pluginXmlFile = <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"src/test/plugin-configs/check-plugin-config.xml"</span> );
+<a name="100" href="#100">100</a>         mojoSetup( mojo );
+<a name="101" href="#101">101</a>         
+<a name="102" href="#102">102</a>         setVariableValueToObject( mojo, <span class="jxr_string">"outputFile"</span>, <strong class="jxr_keyword">new</strong> File( <span class="jxr_string">"target/NoSuchFile.xml"</span> ) );
+<a name="103" href="#103">103</a> 
+<a name="104" href="#104">104</a>         mojo.execute();
+<a name="105" href="#105">105</a>     }
+<a name="106" href="#106">106</a> 
+<a name="107" href="#107">107</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testNoFail()
+<a name="108" href="#108">108</a>         <strong class="jxr_keyword">throws</strong> Exception
+<a name="109" href="#109">109</a>     {
+<a name="110" href="#110">110</a>         File pluginXmlFile = <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"src/test/plugin-configs/check-plugin-config.xml"</span> );
+<a name="111" href="#111">111</a> 
+<a name="112" href="#112">112</a>         Mojo mojo = lookupMojo( <span class="jxr_string">"check"</span>, pluginXmlFile );
 <a name="113" href="#113">113</a> 
-<a name="114" href="#114">114</a>         Mojo mojo = lookupMojo( <span class="jxr_string">"check"</span>, pluginXmlFile );
+<a name="114" href="#114">114</a>         assertNotNull( <span class="jxr_string">"Mojo found."</span>, mojo );
 <a name="115" href="#115">115</a> 
-<a name="116" href="#116">116</a>         assertNotNull( <span class="jxr_string">"Mojo found."</span>, mojo );
-<a name="117" href="#117">117</a> 
-<a name="118" href="#118">118</a>         mojoSetup( mojo );
-<a name="119" href="#119">119</a>         
-<a name="120" href="#120">120</a>         setVariableValueToObject( mojo, <span class="jxr_string">"failOnViolation"</span>, Boolean.FALSE );
-<a name="121" href="#121">121</a> 
-<a name="122" href="#122">122</a>         mojo.execute();
-<a name="123" href="#123">123</a>     }
-<a name="124" href="#124">124</a>     
-<a name="125" href="#125">125</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> mojoSetup( Mojo mojo )
-<a name="126" href="#126">126</a>         <strong class="jxr_keyword">throws</strong> Exception
-<a name="127" href="#127">127</a>     {
-<a name="128" href="#128">128</a>         <em class="jxr_comment">// mojo setup</em>
-<a name="129" href="#129">129</a> 
-<a name="130" href="#130">130</a>         setVariableValueToObject( mojo, <span class="jxr_string">"project"</span>, <strong class="jxr_keyword">new</strong> MavenProjectStub()
-<a name="131" href="#131">131</a>         {
-<a name="132" href="#132">132</a> 
-<a name="133" href="#133">133</a>             <strong class="jxr_keyword">public</strong> File getFile()
-<a name="134" href="#134">134</a>             {
-<a name="135" href="#135">135</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"target/classes"</span> );
-<a name="136" href="#136">136</a>             }
-<a name="137" href="#137">137</a> 
-<a name="138" href="#138">138</a>             <strong class="jxr_keyword">public</strong> Build getBuild()
-<a name="139" href="#139">139</a>             {
-<a name="140" href="#140">140</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> Build()
-<a name="141" href="#141">141</a>                 {
-<a name="142" href="#142">142</a>                     <strong class="jxr_keyword">public</strong> String getDirectory()
-<a name="143" href="#143">143</a>                     {
-<a name="144" href="#144">144</a>                         <strong class="jxr_keyword">return</strong> getBasedir() + <span class="jxr_string">"/target/classes"</span>;
-<a name="145" href="#145">145</a>                     }
-<a name="146" href="#146">146</a>                 };
-<a name="147" href="#147">147</a>             }
+<a name="116" href="#116">116</a>         mojoSetup( mojo );
+<a name="117" href="#117">117</a>         
+<a name="118" href="#118">118</a>         setVariableValueToObject( mojo, <span class="jxr_string">"failOnViolation"</span>, Boolean.FALSE );
+<a name="119" href="#119">119</a> 
+<a name="120" href="#120">120</a>         mojo.execute();
+<a name="121" href="#121">121</a>     }
+<a name="122" href="#122">122</a>     
+<a name="123" href="#123">123</a>     <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> mojoSetup( Mojo mojo )
+<a name="124" href="#124">124</a>         <strong class="jxr_keyword">throws</strong> Exception
+<a name="125" href="#125">125</a>     {
+<a name="126" href="#126">126</a>         <em class="jxr_comment">// mojo setup</em>
+<a name="127" href="#127">127</a> 
+<a name="128" href="#128">128</a>         setVariableValueToObject( mojo, <span class="jxr_string">"project"</span>, <strong class="jxr_keyword">new</strong> MavenProjectStub()
+<a name="129" href="#129">129</a>         {
+<a name="130" href="#130">130</a> 
+<a name="131" href="#131">131</a>             <strong class="jxr_keyword">public</strong> File getFile()
+<a name="132" href="#132">132</a>             {
+<a name="133" href="#133">133</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"target/classes"</span> );
+<a name="134" href="#134">134</a>             }
+<a name="135" href="#135">135</a> 
+<a name="136" href="#136">136</a>             <strong class="jxr_keyword">public</strong> Build getBuild()
+<a name="137" href="#137">137</a>             {
+<a name="138" href="#138">138</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> Build()
+<a name="139" href="#139">139</a>                 {
+<a name="140" href="#140">140</a>                     <strong class="jxr_keyword">public</strong> String getDirectory()
+<a name="141" href="#141">141</a>                     {
+<a name="142" href="#142">142</a>                         <strong class="jxr_keyword">return</strong> getBasedir() + <span class="jxr_string">"/target/classes"</span>;
+<a name="143" href="#143">143</a>                     }
+<a name="144" href="#144">144</a>                 };
+<a name="145" href="#145">145</a>             }
+<a name="146" href="#146">146</a> 
+<a name="147" href="#147">147</a>         } );
 <a name="148" href="#148">148</a> 
-<a name="149" href="#149">149</a>         } );
-<a name="150" href="#150">150</a> 
-<a name="151" href="#151">151</a>         setVariableValueToObject( mojo, <span class="jxr_string">"configLocation"</span>, <span class="jxr_string">"config/sun_checks.xml"</span> );
-<a name="152" href="#152">152</a>         setVariableValueToObject( mojo, <span class="jxr_string">"cacheFile"</span>, getBasedir() + <span class="jxr_string">"/target/classes/checkstyle-cachefile"</span> );
-<a name="153" href="#153">153</a>         setVariableValueToObject( mojo, <span class="jxr_string">"sourceDirectory"</span>, <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"src/test/plugin-configs/src"</span> ));<em class="jxr_comment">// new File( getBasedir() + "/target" ) );</em>
-<a name="154" href="#154">154</a>         setVariableValueToObject( mojo, <span class="jxr_string">"encoding"</span>, <span class="jxr_string">"UTF-8"</span> );
-<a name="155" href="#155">155</a>         setVariableValueToObject( mojo, <span class="jxr_string">"skipExec"</span>, Boolean.TRUE );
-<a name="156" href="#156">156</a> 
-<a name="157" href="#157">157</a>     }
-<a name="158" href="#158">158</a> }
+<a name="149" href="#149">149</a>         setVariableValueToObject( mojo, <span class="jxr_string">"configLocation"</span>, <span class="jxr_string">"config/sun_checks.xml"</span> );
+<a name="150" href="#150">150</a>         setVariableValueToObject( mojo, <span class="jxr_string">"cacheFile"</span>, getBasedir() + <span class="jxr_string">"/target/classes/checkstyle-cachefile"</span> );
+<a name="151" href="#151">151</a>         setVariableValueToObject( mojo, <span class="jxr_string">"sourceDirectory"</span>, <strong class="jxr_keyword">new</strong> File( getBasedir(), <span class="jxr_string">"src/test/plugin-configs/src"</span> ));<em class="jxr_comment">// new File( getBasedir() + "/target" ) );</em>
+<a name="152" href="#152">152</a>         setVariableValueToObject( mojo, <span class="jxr_string">"encoding"</span>, <span class="jxr_string">"UTF-8"</span> );
+<a name="153" href="#153">153</a>         setVariableValueToObject( mojo, <span class="jxr_string">"skipExec"</span>, Boolean.TRUE );
+<a name="154" href="#154">154</a> 
+<a name="155" href="#155">155</a>     }
+<a name="156" href="#156">156</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/package-frame.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/package-frame.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/package-frame.html Tue May  8 13:58:21 2012
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Checkstyle Plugin 2.5 Reference Package org.apache.maven.plugin.checkstyle</title>
+		<title>Maven Checkstyle Plugin 2.6 Reference Package org.apache.maven.plugin.checkstyle</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/package-summary.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/package-summary.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/package-summary.html Tue May  8 13:58:21 2012
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Checkstyle Plugin 2.5 Reference Package org.apache.maven.plugin.checkstyle</title>
+		<title>Maven Checkstyle Plugin 2.6 Reference Package org.apache.maven.plugin.checkstyle</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/MavenProjectWithExceptionsStub.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/MavenProjectWithExceptionsStub.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/MavenProjectWithExceptionsStub.html Tue May  8 13:58:21 2012
@@ -42,7 +42,7 @@
 <a name="32" href="#32">32</a>      <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/plugin/checkstyle/stubs/MinMavenProjectStub.html">MinMavenProjectStub</a>
 <a name="33" href="#33">33</a>  {
 <a name="34" href="#34">34</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
-<a name="35" href="#35">35</a>      <strong class="jxr_keyword">public</strong> List getCompileClasspathElements()
+<a name="35" href="#35">35</a>      <strong class="jxr_keyword">public</strong> List&lt;String&gt; getCompileClasspathElements()
 <a name="36" href="#36">36</a>          <strong class="jxr_keyword">throws</strong> DependencyResolutionRequiredException
 <a name="37" href="#37">37</a>      {
 <a name="38" href="#38">38</a>          <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> DependencyResolutionRequiredException( <strong class="jxr_keyword">new</strong> ArtifactStub() );

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/MavenProjectWithNoJxrPluginStub.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/MavenProjectWithNoJxrPluginStub.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/MavenProjectWithNoJxrPluginStub.html Tue May  8 13:58:21 2012
@@ -32,25 +32,27 @@
 <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.Collections;
 <a name="24" href="#24">24</a>  
-<a name="25" href="#25">25</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="26" href="#26">26</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
-<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * @version $Id$</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/checkstyle/stubs/MavenProjectWithNoJxrPluginStub.html">MavenProjectWithNoJxrPluginStub</a>
-<a name="30" href="#30">30</a>      <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/plugin/checkstyle/stubs/MinMavenProjectStub.html">MinMavenProjectStub</a>
-<a name="31" href="#31">31</a>  {
-<a name="32" href="#32">32</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
-<a name="33" href="#33">33</a>      <strong class="jxr_keyword">public</strong> String getInceptionYear()
-<a name="34" href="#34">34</a>      {
-<a name="35" href="#35">35</a>          <strong class="jxr_keyword">return</strong> <span class="jxr_string">"2005"</span>;
-<a name="36" href="#36">36</a>      }
-<a name="37" href="#37">37</a>  
-<a name="38" href="#38">38</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
-<a name="39" href="#39">39</a>      <strong class="jxr_keyword">public</strong> List getReportPlugins()
-<a name="40" href="#40">40</a>      {
-<a name="41" href="#41">41</a>          <strong class="jxr_keyword">return</strong> Collections.EMPTY_LIST;
-<a name="42" href="#42">42</a>      }
-<a name="43" href="#43">43</a>  }
+<a name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> org.apache.maven.model.ReportPlugin;
+<a name="26" href="#26">26</a>  
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> * @author Edwin Punzalan</em>
+<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment"> * @version $Id$</em>
+<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="31" href="#31">31</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugin/checkstyle/stubs/MavenProjectWithNoJxrPluginStub.html">MavenProjectWithNoJxrPluginStub</a>
+<a name="32" href="#32">32</a>      <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/maven/plugin/checkstyle/stubs/MinMavenProjectStub.html">MinMavenProjectStub</a>
+<a name="33" href="#33">33</a>  {
+<a name="34" href="#34">34</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
+<a name="35" href="#35">35</a>      <strong class="jxr_keyword">public</strong> String getInceptionYear()
+<a name="36" href="#36">36</a>      {
+<a name="37" href="#37">37</a>          <strong class="jxr_keyword">return</strong> <span class="jxr_string">"2005"</span>;
+<a name="38" href="#38">38</a>      }
+<a name="39" href="#39">39</a>  
+<a name="40" href="#40">40</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
+<a name="41" href="#41">41</a>      <strong class="jxr_keyword">public</strong> List&lt;ReportPlugin&gt; getReportPlugins()
+<a name="42" href="#42">42</a>      {
+<a name="43" href="#43">43</a>          <strong class="jxr_keyword">return</strong> Collections.EMPTY_LIST;
+<a name="44" href="#44">44</a>      }
+<a name="45" href="#45">45</a>  }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/MinMavenProjectStub.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/MinMavenProjectStub.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/MinMavenProjectStub.html Tue May  8 13:58:21 2012
@@ -48,17 +48,17 @@
 <a name="38" href="#38">38</a>      <strong class="jxr_keyword">extends</strong> org.apache.maven.plugin.testing.stubs.MavenProjectStub
 <a name="39" href="#39">39</a>  {
 <a name="40" href="#40">40</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
-<a name="41" href="#41">41</a>      <strong class="jxr_keyword">public</strong> List getCompileClasspathElements()
+<a name="41" href="#41">41</a>      <strong class="jxr_keyword">public</strong> List&lt;String&gt; getCompileClasspathElements()
 <a name="42" href="#42">42</a>          <strong class="jxr_keyword">throws</strong> DependencyResolutionRequiredException
 <a name="43" href="#43">43</a>      {
 <a name="44" href="#44">44</a>          <strong class="jxr_keyword">return</strong> Collections.singletonList( PlexusTestCase.getBasedir() + <span class="jxr_string">"/target/classes"</span> );
 <a name="45" href="#45">45</a>      }
 <a name="46" href="#46">46</a>  
 <a name="47" href="#47">47</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
-<a name="48" href="#48">48</a>      <strong class="jxr_keyword">public</strong> List getTestClasspathElements()
+<a name="48" href="#48">48</a>      <strong class="jxr_keyword">public</strong> List&lt;String&gt; getTestClasspathElements()
 <a name="49" href="#49">49</a>          <strong class="jxr_keyword">throws</strong> DependencyResolutionRequiredException
 <a name="50" href="#50">50</a>      {
-<a name="51" href="#51">51</a>          List list = <strong class="jxr_keyword">new</strong> ArrayList( getCompileClasspathElements() );
+<a name="51" href="#51">51</a>          List&lt;String&gt; list = <strong class="jxr_keyword">new</strong> ArrayList&lt;String&gt;( getCompileClasspathElements() );
 <a name="52" href="#52">52</a>          list.add( PlexusTestCase.getBasedir() + <span class="jxr_string">"/target/test-classes"</span> );
 <a name="53" href="#53">53</a>          <strong class="jxr_keyword">return</strong> list;
 <a name="54" href="#54">54</a>      }
@@ -70,7 +70,7 @@
 <a name="60" href="#60">60</a>      }
 <a name="61" href="#61">61</a>  
 <a name="62" href="#62">62</a>      <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> {@inheritDoc} */</em>
-<a name="63" href="#63">63</a>      <strong class="jxr_keyword">public</strong> List getReportPlugins()
+<a name="63" href="#63">63</a>      <strong class="jxr_keyword">public</strong> List&lt;ReportPlugin&gt; getReportPlugins()
 <a name="64" href="#64">64</a>      {
 <a name="65" href="#65">65</a>          ReportPlugin jxrPlugin = <strong class="jxr_keyword">new</strong> ReportPlugin();
 <a name="66" href="#66">66</a>  

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/package-frame.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/package-frame.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/package-frame.html Tue May  8 13:58:21 2012
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Checkstyle Plugin 2.5 Reference Package org.apache.maven.plugin.checkstyle.stubs</title>
+		<title>Maven Checkstyle Plugin 2.6 Reference Package org.apache.maven.plugin.checkstyle.stubs</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/package-summary.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/package-summary.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/org/apache/maven/plugin/checkstyle/stubs/package-summary.html Tue May  8 13:58:21 2012
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Checkstyle Plugin 2.5 Reference Package org.apache.maven.plugin.checkstyle.stubs</title>
+		<title>Maven Checkstyle Plugin 2.6 Reference Package org.apache.maven.plugin.checkstyle.stubs</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/overview-frame.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/overview-frame.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/overview-frame.html Tue May  8 13:58:21 2012
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Checkstyle Plugin 2.5 Reference</title>
+		<title>Maven Checkstyle Plugin 2.6 Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/overview-summary.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/overview-summary.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref-test/overview-summary.html Tue May  8 13:58:21 2012
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Checkstyle Plugin 2.5 Reference</title>
+		<title>Maven Checkstyle Plugin 2.6 Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -24,7 +24,7 @@
 	        </ul>
       	</div>
 		
-		      	<h2>Maven Checkstyle Plugin 2.5 Reference</h2>
+		      	<h2>Maven Checkstyle Plugin 2.6 Reference</h2>
 
 		<table class="summary">
         	<thead>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/allclasses-frame.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/allclasses-frame.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/allclasses-frame.html Tue May  8 13:58:21 2012
@@ -48,9 +48,15 @@
 				<a href="org/apache/maven/plugin/checkstyle/rss/DefaultCheckstyleRssGenerator.html" target="classFrame">DefaultCheckstyleRssGenerator</a>
 			</li>
 						<li>
+				<a href="org/codehaus/plexus/util/interpolation/RegexBasedInterpolator.html" target="classFrame">RegexBasedInterpolator</a>
+			</li>
+						<li>
 				<a href="org/apache/maven/plugin/checkstyle/ReportResource.html" target="classFrame">ReportResource</a>
 			</li>
 						<li>
+				<a href="org/codehaus/plexus/util/interpolation/ValueSource.html" target="classFrame">ValueSource</a>
+			</li>
+						<li>
 				<a href="org/apache/maven/plugin/checkstyle/VelocityTemplate.html" target="classFrame">VelocityTemplate</a>
 			</li>
 			      </ul>

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/index.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/index.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/index.html Tue May  8 13:58:21 2012
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-		<title>Maven Checkstyle Plugin 2.5 Reference</title>
+		<title>Maven Checkstyle Plugin 2.6 Reference</title>
 	</head>
     <frameset cols="20%,80%">
 		<frameset rows="30%,70%">

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.html Tue May  8 13:58:21 2012
@@ -6,7 +6,7 @@
 <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
 </head>
 <body>
-<div id="overview"><a href="../../../../../../apidocs/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.html">View Javadoc</a></div><pre>
+<div id="overview"><a href="../../../../../../../../../../../../site/apidocs/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.html">View Javadoc</a></div><pre>
 
 <a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.checkstyle;
 <a name="2" href="#2">2</a>   

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/org/apache/maven/plugin/checkstyle/CheckstyleExecutorException.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/org/apache/maven/plugin/checkstyle/CheckstyleExecutorException.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/org/apache/maven/plugin/checkstyle/CheckstyleExecutorException.html Tue May  8 13:58:21 2012
@@ -6,7 +6,7 @@
 <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
 </head>
 <body>
-<div id="overview"><a href="../../../../../../apidocs/org/apache/maven/plugin/checkstyle/CheckstyleExecutorException.html">View Javadoc</a></div><pre>
+<div id="overview"><a href="../../../../../../../../../../../../site/apidocs/org/apache/maven/plugin/checkstyle/CheckstyleExecutorException.html">View Javadoc</a></div><pre>
 
 <a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.checkstyle;
 <a name="2" href="#2">2</a>   

Modified: websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/org/apache/maven/plugin/checkstyle/CheckstyleExecutorRequest.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/org/apache/maven/plugin/checkstyle/CheckstyleExecutorRequest.html (original)
+++ websites/production/maventest/content/plugins/maven-checkstyle-plugin-latest/xref/org/apache/maven/plugin/checkstyle/CheckstyleExecutorRequest.html Tue May  8 13:58:21 2012
@@ -6,7 +6,7 @@
 <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
 </head>
 <body>
-<div id="overview"><a href="../../../../../../apidocs/org/apache/maven/plugin/checkstyle/CheckstyleExecutorRequest.html">View Javadoc</a></div><pre>
+<div id="overview"><a href="../../../../../../../../../../../../site/apidocs/org/apache/maven/plugin/checkstyle/CheckstyleExecutorRequest.html">View Javadoc</a></div><pre>
 
 <a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugin.checkstyle;
 <a name="2" href="#2">2</a>