You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-dev@james.apache.org by rd...@apache.org on 2008/12/13 14:16:49 UTC

svn commit: r726198 [16/18] - in /james/site/trunk/www/mpt: ./ antlib/ antlib/emma/ antlib/emma/_files/ apidocs/ apidocs/org/apache/james/mpt/ apidocs/org/apache/james/mpt/ant/ apidocs/org/apache/james/mpt/ant/class-use/ apidocs/org/apache/james/mpt/ap...

Modified: james/site/trunk/www/mpt/main/xref/org/apache/james/mpt/SystemLoggingMonitor.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mpt/main/xref/org/apache/james/mpt/SystemLoggingMonitor.html?rev=726198&r1=726197&r2=726198&view=diff
==============================================================================
--- james/site/trunk/www/mpt/main/xref/org/apache/james/mpt/SystemLoggingMonitor.html (original)
+++ james/site/trunk/www/mpt/main/xref/org/apache/james/mpt/SystemLoggingMonitor.html Sat Dec 13 05:16:44 2008
@@ -35,29 +35,40 @@
 <a name="26" href="#26">26</a>  
 <a name="27" href="#27">27</a>      <strong>private</strong> <strong>boolean</strong> verbose = false;
 <a name="28" href="#28">28</a>      
-<a name="29" href="#29">29</a>      
-<a name="30" href="#30">30</a>      <strong>public</strong> <strong>boolean</strong> isVerbose() {
-<a name="31" href="#31">31</a>          <strong>return</strong> verbose;
-<a name="32" href="#32">32</a>      }
-<a name="33" href="#33">33</a>  
-<a name="34" href="#34">34</a>      <strong>public</strong> <strong>void</strong> setVerbose(<strong>boolean</strong> verbose) {
-<a name="35" href="#35">35</a>          <strong>this</strong>.verbose = verbose;
-<a name="36" href="#36">36</a>      }
-<a name="37" href="#37">37</a>  
-<a name="38" href="#38">38</a>      <strong>public</strong> <strong>void</strong> note(String message) {
-<a name="39" href="#39">39</a>          System.out.println(message);
-<a name="40" href="#40">40</a>      }
-<a name="41" href="#41">41</a>  
-<a name="42" href="#42">42</a>      <strong>public</strong> <strong>void</strong> debug(<strong>char</strong> <strong>char</strong>acter) {
-<a name="43" href="#43">43</a>          System.out.print(character);
-<a name="44" href="#44">44</a>      }
-<a name="45" href="#45">45</a>  
-<a name="46" href="#46">46</a>      <strong>public</strong> <strong>void</strong> debug(String message) {
-<a name="47" href="#47">47</a>         System.out.println(message);
-<a name="48" href="#48">48</a>      }
-<a name="49" href="#49">49</a>  
-<a name="50" href="#50">50</a>      
-<a name="51" href="#51">51</a>  }
+<a name="29" href="#29">29</a>      <strong>public</strong> <a href="../../../../org/apache/james/mpt/SystemLoggingMonitor.html">SystemLoggingMonitor</a>() {
+<a name="30" href="#30">30</a>          <strong>this</strong>(false);
+<a name="31" href="#31">31</a>      }
+<a name="32" href="#32">32</a>      
+<a name="33" href="#33">33</a>      <strong>public</strong> <a href="../../../../org/apache/james/mpt/SystemLoggingMonitor.html">SystemLoggingMonitor</a>(<strong>final</strong> <strong>boolean</strong> verbose) {
+<a name="34" href="#34">34</a>          <strong>this</strong>.verbose = verbose;
+<a name="35" href="#35">35</a>      }
+<a name="36" href="#36">36</a>      
+<a name="37" href="#37">37</a>      <strong>public</strong> <strong>boolean</strong> isVerbose() {
+<a name="38" href="#38">38</a>          <strong>return</strong> verbose;
+<a name="39" href="#39">39</a>      }
+<a name="40" href="#40">40</a>  
+<a name="41" href="#41">41</a>      <strong>public</strong> <strong>void</strong> setVerbose(<strong>boolean</strong> verbose) {
+<a name="42" href="#42">42</a>          <strong>this</strong>.verbose = verbose;
+<a name="43" href="#43">43</a>      }
+<a name="44" href="#44">44</a>  
+<a name="45" href="#45">45</a>      <strong>public</strong> <strong>void</strong> note(String message) {
+<a name="46" href="#46">46</a>          System.out.println(message);
+<a name="47" href="#47">47</a>      }
+<a name="48" href="#48">48</a>  
+<a name="49" href="#49">49</a>      <strong>public</strong> <strong>void</strong> debug(<strong>char</strong> <strong>char</strong>acter) {
+<a name="50" href="#50">50</a>          <strong>if</strong> (verbose) {
+<a name="51" href="#51">51</a>              System.out.print(character);
+<a name="52" href="#52">52</a>          }
+<a name="53" href="#53">53</a>      }
+<a name="54" href="#54">54</a>  
+<a name="55" href="#55">55</a>      <strong>public</strong> <strong>void</strong> debug(String message) {
+<a name="56" href="#56">56</a>          <strong>if</strong> (verbose) {
+<a name="57" href="#57">57</a>              System.out.println(message);
+<a name="58" href="#58">58</a>          }
+<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>  }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: james/site/trunk/www/mpt/plugin-management.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mpt/plugin-management.html?rev=726198&r1=726197&r2=726198&view=diff
==============================================================================
--- james/site/trunk/www/mpt/plugin-management.html (original)
+++ james/site/trunk/www/mpt/plugin-management.html Sat Dec 13 05:16:44 2008
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 12/02/2008
+        Last Published: 12/13/2008
                       </div>
             <div class="xright">      <a href="../index.html">JAMES Project</a>
           |
@@ -95,6 +95,10 @@
     <li class="none">
               <a href="antlib">AntLib</a>
         </li>
+              
+    <li class="none">
+              <a href="app">Application</a>
+        </li>
           </ul>
           <h5>Useful Information</h5>
         <ul>

Modified: james/site/trunk/www/mpt/plugins.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mpt/plugins.html?rev=726198&r1=726197&r2=726198&view=diff
==============================================================================
--- james/site/trunk/www/mpt/plugins.html (original)
+++ james/site/trunk/www/mpt/plugins.html Sat Dec 13 05:16:44 2008
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 12/02/2008
+        Last Published: 12/13/2008
                       </div>
             <div class="xright">      <a href="../index.html">JAMES Project</a>
           |
@@ -95,6 +95,10 @@
     <li class="none">
               <a href="antlib">AntLib</a>
         </li>
+              
+    <li class="none">
+              <a href="app">Application</a>
+        </li>
           </ul>
           <h5>Useful Information</h5>
         <ul>

Modified: james/site/trunk/www/mpt/pmd.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mpt/pmd.html?rev=726198&r1=726197&r2=726198&view=diff
==============================================================================
--- james/site/trunk/www/mpt/pmd.html (original)
+++ james/site/trunk/www/mpt/pmd.html Sat Dec 13 05:16:44 2008
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 12/02/2008
+        Last Published: 12/13/2008
                       </div>
             <div class="xright">      <a href="../index.html">JAMES Project</a>
           |
@@ -95,6 +95,10 @@
     <li class="none">
               <a href="antlib">AntLib</a>
         </li>
+              
+    <li class="none">
+              <a href="app">Application</a>
+        </li>
           </ul>
           <h5>Useful Information</h5>
         <ul>
@@ -155,7 +159,7 @@
     </div>
     <div id="bodyColumn">
       <div id="contentBox">
-        <div class="section"><h2>PMD Results</h2><p>The following document contains the results of <a href="http://pmd.sourceforge.net/">PMD</a> 4.1.</p></div><div class="section"><h2>Files</h2><div class="section"><h3>Apache JAMES MPT AntLib - org/apache/james/mpt/ant/MailProtocolTestTask.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Error while parsing /opt/development/protocol-tester/antlib/src/main/java/org/apache/james/mpt/ant/MailProtocolTestTask.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ant/MailProtocolTestTask.html#0">0</a></td></tr><tr class="a"><td>Error while parsing /opt/development/protocol-tester/antlib/src/main/java/org/apache/james/mpt/ant/MailProtocolTestTask.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ant/MailProtocolTestTask.html#0">0</a></td></tr></table></div><div class="section"><h3
 >Apache JAMES MPT Main - org/apache/james/mpt/AbstractProtocolTestFramework.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>It is a good practice to call super() in a constructor</td><td><a href="./xref/org/apache/james/mpt/AbstractProtocolTestFramework.html#42">42</a> - <a href="./xref/org/apache/james/mpt/AbstractProtocolTestFramework.html#47">47</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ExternalSession.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSession.html#64">64</a></td></tr><tr class="b"><td>Avoid empty while statements</td><td><a href="./xref/org/apache/james/mpt/ExternalSession.html#81">81</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href=".
 /xref/org/apache/james/mpt/ExternalSession.html#88">88</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSession.html#156">156</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ExternalSessionFactory.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSessionFactory.html#45">45</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSessionFactory.html#47">47</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSessionFactory.html#64">64</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - 
 org/apache/james/mpt/HostSystem.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/HostSystem.html#41">41</a></td></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/HostSystem.html#52">52</a></td></tr><tr class="b"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/HostSystem.html#54">54</a> - <a href="./xref/org/apache/james/mpt/HostSystem.html#56">56</a></td></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/HostSystem.html#55">55</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ProtocolInteractor.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Error whil
 e parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolInteractor.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolInteractor.html#0">0</a></td></tr><tr class="b"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolInteractor.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolInteractor.html#0">0</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ProtocolSession.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolSession.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolSession.html#0">0</a></td></tr><tr class="a"><td
 >Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolSession.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolSession.html#0">0</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ProtocolSessionBuilder.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolSessionBuilder.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolSessionBuilder.html#0">0</a></td></tr><tr class="b"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolSessionBuilder.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolSessionBuilder.html#0
 ">0</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/Runner.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Found 'UR'-anomaly for variable 'session' (lines '78'-'84').</td><td><a href="./xref/org/apache/james/mpt/Runner.html#78">78</a> - <a href="./xref/org/apache/james/mpt/Runner.html#84">84</a></td></tr><tr class="a"><td>Found 'UR'-anomaly for variable 'session' (lines '78'-'84').</td><td><a href="./xref/org/apache/james/mpt/Runner.html#78">78</a> - <a href="./xref/org/apache/james/mpt/Runner.html#84">84</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/Runner.html#122">122</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ScriptedUserAdder.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Avo
 id using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#81">81</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#93">93</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#97">97</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#99">99</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#112">112</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/Session.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td
 >Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/Session.html#33">33</a></td></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/Session.html#40">40</a></td></tr><tr class="b"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/Session.html#47">47</a></td></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/Session.html#54">54</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/SessionFactory.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/SessionFactory.html#35">35</a> - <a href="./xref/org/apache/james/mpt/SessionFactory.html#36">36</a></td></tr></table></div><div cl
 ass="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/UserAdder.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/UserAdder.html#33">33</a></td></tr></table></div></div>
+        <div class="section"><h2>PMD Results</h2><p>The following document contains the results of <a href="http://pmd.sourceforge.net/">PMD</a> 4.1.</p></div><div class="section"><h2>Files</h2><div class="section"><h3>Apache JAMES MPT AntLib - org/apache/james/mpt/ant/MailProtocolTestTask.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Error while parsing /opt/development/protocol-tester/antlib/src/main/java/org/apache/james/mpt/ant/MailProtocolTestTask.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ant/MailProtocolTestTask.html#0">0</a></td></tr><tr class="a"><td>Error while parsing /opt/development/protocol-tester/antlib/src/main/java/org/apache/james/mpt/ant/MailProtocolTestTask.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ant/MailProtocolTestTask.html#0">0</a></td></tr></table></div><div class="section"><h3
 >Apache JAMES MPT Application - org/apache/james/mpt/app/Main.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Error while parsing /opt/development/protocol-tester/app/src/main/java/org/apache/james/mpt/app/Main.java: Can't use annotations when running in JDK 1.4 mode!</td><td><a href="./xref/org/apache/james/mpt/app/Main.html#0">0</a></td></tr><tr class="b"><td>Error while parsing /opt/development/protocol-tester/app/src/main/java/org/apache/james/mpt/app/Main.java: Can't use annotations when running in JDK 1.4 mode!</td><td><a href="./xref/org/apache/james/mpt/app/Main.html#0">0</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Application - org/apache/james/mpt/app/RunScript.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Found 'UR'-anomaly for variable 'host' (lines '53'-'54').</td><td><a href="./xref/org/apache/james/mpt/app/RunScript.html#53">53
 </a> - <a href="./xref/org/apache/james/mpt/app/RunScript.html#54">54</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/app/RunScript.html#56">56</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/app/RunScript.html#57">57</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/app/RunScript.html#58">58</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/AbstractProtocolTestFramework.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>It is a good practice to call super() in a constructor</td><td><a href="./xref/org/apache/james/mpt/AbstractProtocolTestFramework.html#42">42</a> - <a href="./xref/org/apache/james/mpt/AbstractProtocolTestFramewor
 k.html#47">47</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ExternalSession.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSession.html#64">64</a></td></tr><tr class="b"><td>Avoid empty while statements</td><td><a href="./xref/org/apache/james/mpt/ExternalSession.html#81">81</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSession.html#88">88</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSession.html#156">156</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ExternalSessionFactory.java</h3><table class="bodyTable"><tr class="a"><th>V
 iolation</th><th>Line</th></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSessionFactory.html#46">46</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSessionFactory.html#48">48</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ExternalSessionFactory.html#65">65</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/HostSystem.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/HostSystem.html#41">41</a></td></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/HostSystem.html
 #52">52</a></td></tr><tr class="b"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/HostSystem.html#54">54</a> - <a href="./xref/org/apache/james/mpt/HostSystem.html#56">56</a></td></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/HostSystem.html#55">55</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ProtocolInteractor.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolInteractor.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolInteractor.html#0">0</a></td></tr><tr class="b"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolInteractor.java: Can't use
  generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolInteractor.html#0">0</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ProtocolSession.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolSession.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolSession.html#0">0</a></td></tr><tr class="a"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolSession.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolSession.html#0">0</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ProtocolSessionBuilder.java</h3><table class="bodyTable"
 ><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolSessionBuilder.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolSessionBuilder.html#0">0</a></td></tr><tr class="b"><td>Error while parsing /opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ProtocolSessionBuilder.java: Can't use generics unless running in JDK 1.5 mode!</td><td><a href="./xref/org/apache/james/mpt/ProtocolSessionBuilder.html#0">0</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/Runner.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Found 'UR'-anomaly for variable 'session' (lines '78'-'84').</td><td><a href="./xref/org/apache/james/mpt/Runner.html#78">78</a> - <a href="./xref/org/apache/james/mpt/Runner.html#8
 4">84</a></td></tr><tr class="a"><td>Found 'UR'-anomaly for variable 'session' (lines '78'-'84').</td><td><a href="./xref/org/apache/james/mpt/Runner.html#78">78</a> - <a href="./xref/org/apache/james/mpt/Runner.html#84">84</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/Runner.html#122">122</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/ScriptedUserAdder.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#81">81</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#93">93</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a 
 href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#97">97</a></td></tr><tr class="a"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#99">99</a></td></tr><tr class="b"><td>Avoid using final local variables, turn them into fields</td><td><a href="./xref/org/apache/james/mpt/ScriptedUserAdder.html#112">112</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/Session.java</h3><table class="bodyTable"><tr class="a"><th>Violation</th><th>Line</th></tr><tr class="b"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/Session.html#33">33</a></td></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/Session.html#40">40</a></td></tr><tr class="b"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/Sessio
 n.html#47">47</a></td></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/Session.html#54">54</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/SessionFactory.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/SessionFactory.html#35">35</a> - <a href="./xref/org/apache/james/mpt/SessionFactory.html#36">36</a></td></tr></table></div><div class="section"><h3>Apache JAMES MPT Main - org/apache/james/mpt/UserAdder.java</h3><table class="bodyTable"><tr class="b"><th>Violation</th><th>Line</th></tr><tr class="a"><td>Avoid modifiers which are implied by the context</td><td><a href="./xref/org/apache/james/mpt/UserAdder.html#33">33</a></td></tr></table></div></div>
       </div>
     </div>
     <div class="clear">

Modified: james/site/trunk/www/mpt/pmd.xml
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mpt/pmd.xml?rev=726198&r1=726197&r2=726198&view=diff
==============================================================================
--- james/site/trunk/www/mpt/pmd.xml (original)
+++ james/site/trunk/www/mpt/pmd.xml Sat Dec 13 05:16:44 2008
@@ -1,5 +1,19 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<pmd version="4.1" timestamp="2008-12-02T19:48:19.429">
+<pmd version="4.1" timestamp="2008-12-13T13:00:46.062">
+<file name="/opt/development/protocol-tester/app/src/main/java/org/apache/james/mpt/app/RunScript.java">
+<violation beginline="53" endline="54" begincolumn="8" endcolumn="87" rule="DataflowAnomalyAnalysis" ruleset="Controversial Rules" package="org.apache.james.mpt.app" class="RunScript" method="run" variable="host" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#DataflowAnomalyAnalysis" priority="5">
+Found 'UR'-anomaly for variable 'host' (lines '53'-'54').
+</violation>
+<violation beginline="56" endline="56" begincolumn="8" endcolumn="102" rule="AvoidFinalLocalVariable" ruleset="Controversial Rules" package="org.apache.james.mpt.app" class="RunScript" method="run" variable="host" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#AvoidFinalLocalVariable" priority="3">
+Avoid using final local variables, turn them into fields
+</violation>
+<violation beginline="57" endline="57" begincolumn="8" endcolumn="74" rule="AvoidFinalLocalVariable" ruleset="Controversial Rules" package="org.apache.james.mpt.app" class="RunScript" method="run" variable="builder" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#AvoidFinalLocalVariable" priority="3">
+Avoid using final local variables, turn them into fields
+</violation>
+<violation beginline="58" endline="58" begincolumn="8" endcolumn="41" rule="AvoidFinalLocalVariable" ruleset="Controversial Rules" package="org.apache.james.mpt.app" class="RunScript" method="run" variable="runner" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#AvoidFinalLocalVariable" priority="3">
+Avoid using final local variables, turn them into fields
+</violation>
+</file>
 <file name="/opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/AbstractProtocolTestFramework.java">
 <violation beginline="42" endline="47" begincolumn="12" endcolumn="5" rule="CallSuperInConstructor" ruleset="Controversial Rules" package="org.apache.james.mpt" class="AbstractProtocolTestFramework" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#CallSuperInConstructor" priority="3">
 It is a good practice to call super() in a constructor
@@ -20,13 +34,13 @@
 </violation>
 </file>
 <file name="/opt/development/protocol-tester/main/src/main/java/org/apache/james/mpt/ExternalSessionFactory.java">
-<violation beginline="45" endline="45" begincolumn="9" endcolumn="65" rule="AvoidFinalLocalVariable" ruleset="Controversial Rules" package="org.apache.james.mpt" class="ExternalSessionFactory" method="newSession" variable="channel" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#AvoidFinalLocalVariable" priority="3">
+<violation beginline="46" endline="46" begincolumn="9" endcolumn="65" rule="AvoidFinalLocalVariable" ruleset="Controversial Rules" package="org.apache.james.mpt" class="ExternalSessionFactory" method="newSession" variable="channel" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#AvoidFinalLocalVariable" priority="3">
 Avoid using final local variables, turn them into fields
 </violation>
-<violation beginline="47" endline="47" begincolumn="9" endcolumn="85" rule="AvoidFinalLocalVariable" ruleset="Controversial Rules" package="org.apache.james.mpt" class="ExternalSessionFactory" method="newSession" variable="result" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#AvoidFinalLocalVariable" priority="3">
+<violation beginline="48" endline="48" begincolumn="9" endcolumn="85" rule="AvoidFinalLocalVariable" ruleset="Controversial Rules" package="org.apache.james.mpt" class="ExternalSessionFactory" method="newSession" variable="result" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#AvoidFinalLocalVariable" priority="3">
 Avoid using final local variables, turn them into fields
 </violation>
-<violation beginline="64" endline="64" begincolumn="9" endcolumn="30" rule="AvoidFinalLocalVariable" ruleset="Controversial Rules" package="org.apache.james.mpt" class="ExternalSessionFactory" method="toString" variable="TAB" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#AvoidFinalLocalVariable" priority="3">
+<violation beginline="65" endline="65" begincolumn="9" endcolumn="30" rule="AvoidFinalLocalVariable" ruleset="Controversial Rules" package="org.apache.james.mpt" class="ExternalSessionFactory" method="toString" variable="TAB" externalInfoUrl="http://pmd.sourceforge.net/rules/controversial.html#AvoidFinalLocalVariable" priority="3">
 Avoid using final local variables, turn them into fields
 </violation>
 </file>

Modified: james/site/trunk/www/mpt/project-info.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mpt/project-info.html?rev=726198&r1=726197&r2=726198&view=diff
==============================================================================
--- james/site/trunk/www/mpt/project-info.html (original)
+++ james/site/trunk/www/mpt/project-info.html Sat Dec 13 05:16:44 2008
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 12/02/2008
+        Last Published: 12/13/2008
                       </div>
             <div class="xright">      <a href="../index.html">JAMES Project</a>
           |
@@ -95,6 +95,10 @@
     <li class="none">
               <a href="antlib">AntLib</a>
         </li>
+              
+    <li class="none">
+              <a href="app">Application</a>
+        </li>
           </ul>
           <h5>Useful Information</h5>
         <ul>

Modified: james/site/trunk/www/mpt/project-reports.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mpt/project-reports.html?rev=726198&r1=726197&r2=726198&view=diff
==============================================================================
--- james/site/trunk/www/mpt/project-reports.html (original)
+++ james/site/trunk/www/mpt/project-reports.html Sat Dec 13 05:16:44 2008
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 12/02/2008
+        Last Published: 12/13/2008
                       </div>
             <div class="xright">      <a href="../index.html">JAMES Project</a>
           |
@@ -95,6 +95,10 @@
     <li class="none">
               <a href="antlib">AntLib</a>
         </li>
+              
+    <li class="none">
+              <a href="app">Application</a>
+        </li>
           </ul>
           <h5>Useful Information</h5>
         <ul>

Modified: james/site/trunk/www/mpt/project-summary.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mpt/project-summary.html?rev=726198&r1=726197&r2=726198&view=diff
==============================================================================
--- james/site/trunk/www/mpt/project-summary.html (original)
+++ james/site/trunk/www/mpt/project-summary.html Sat Dec 13 05:16:44 2008
@@ -45,7 +45,7 @@
   
   
             <div class="xleft">
-        Last Published: 12/02/2008
+        Last Published: 12/13/2008
                       </div>
             <div class="xright">      <a href="../index.html">JAMES Project</a>
           |
@@ -95,6 +95,10 @@
     <li class="none">
               <a href="antlib">AntLib</a>
         </li>
+              
+    <li class="none">
+              <a href="app">Application</a>
+        </li>
           </ul>
           <h5>Useful Information</h5>
         <ul>