Javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/jci/trunk@1515118 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/core/src/main/java/org/apache/commons/jci/problems/CompilationProblem.java b/core/src/main/java/org/apache/commons/jci/problems/CompilationProblem.java
index 848604c..210088f 100644
--- a/core/src/main/java/org/apache/commons/jci/problems/CompilationProblem.java
+++ b/core/src/main/java/org/apache/commons/jci/problems/CompilationProblem.java
@@ -28,21 +28,21 @@
      * is the problem an error and compilation cannot continue
      * or just a warning and compilation can proceed
      * 
-     * @return
+     * @return true if the problem is an error
      */
     boolean isError();
 
     /**
      * name of the file where the problem occurred
      * 
-     * @return
+     * @return name of the file where the problem occurred
      */
     String getFileName();
 
     /**
      * position of where the problem starts in the source code
      * 
-     * @return
+     * @return position of where the problem starts in the source code
      */
     int getStartLine();
     int getStartColumn();
@@ -50,7 +50,7 @@
     /**
      * position of where the problem stops in the source code
      * 
-     * @return
+     * @return position of where the problem stops in the source code
      */
     int getEndLine();
     int getEndColumn();
@@ -58,7 +58,7 @@
     /**
      * the description of the problem
      * 
-     * @return
+     * @return the description of the problem
      */
     String getMessage();
 
diff --git a/core/src/main/java/org/apache/commons/jci/utils/ConversionUtils.java b/core/src/main/java/org/apache/commons/jci/utils/ConversionUtils.java
index 90a1d3d..5622b39 100644
--- a/core/src/main/java/org/apache/commons/jci/utils/ConversionUtils.java
+++ b/core/src/main/java/org/apache/commons/jci/utils/ConversionUtils.java
@@ -84,7 +84,7 @@
      * a/b/c.java -> a/b/c.java
      * a\b\c.java -> a/b/c.java
      * @param pFileName
-     * @return
+     * @return the converted name
      */
     public static String getResourceNameFromFileName( final String pFileName ) {
         if ('/' == File.separatorChar) {