You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2010/02/06 23:36:44 UTC

svn commit: r907333 - /maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.java

Author: olamy
Date: Sat Feb  6 22:36:43 2010
New Revision: 907333

URL: http://svn.apache.org/viewvc?rev=907333&view=rev
Log:
fix checkstyle issues.

Modified:
    maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.java

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.java?rev=907333&r1=907332&r2=907333&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.java (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/CheckstyleExecutor.java Sat Feb  6 22:36:43 2010
@@ -29,6 +29,12 @@
 public interface CheckstyleExecutor
 {
 
+    /**
+     * @param {@link CheckstyleExecutorRequest}
+     * @return {@link CheckstyleResults}
+     * @throws CheckstyleExecutorException
+     * @throws CheckstyleException
+     */
     CheckstyleResults executeCheckstyle( CheckstyleExecutorRequest request )
         throws CheckstyleExecutorException, CheckstyleException;
 }