No issue. Fixed JavaDoc warnings about missing parameter descriptions.


git-svn-id: https://svn.apache.org/repos/asf/uima/uimafit/trunk@1787469 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/uimafit-core/src/main/java/org/apache/uima/fit/factory/JCasFactory.java b/uimafit-core/src/main/java/org/apache/uima/fit/factory/JCasFactory.java
index 1f8b780..6964102 100644
--- a/uimafit-core/src/main/java/org/apache/uima/fit/factory/JCasFactory.java
+++ b/uimafit-core/src/main/java/org/apache/uima/fit/factory/JCasFactory.java
@@ -50,6 +50,8 @@
    * detected automatically using {@link TypePrioritiesFactory#createTypePriorities()}. Indexes are
    * detected automatically using {@link FsIndexFactory#createFsIndexCollection()}.
    * 
+   * @param aText
+   *          the document text to be set in the new JCas.
    * @return a new JCas
    * @throws UIMAException
    *           if the JCas could not be initialized
@@ -64,6 +66,10 @@
    * detected automatically using {@link TypePrioritiesFactory#createTypePriorities()}. Indexes are
    * detected automatically using {@link FsIndexFactory#createFsIndexCollection()}.
    * 
+   * @param aText
+   *          the document text to be set in the new JCas.
+   * @param aLanguage 
+   *          the document language to be set in the new JCas.
    * @return a new JCas
    * @throws UIMAException
    *           if the JCas could not be initialized
diff --git a/uimafit-core/src/main/java/org/apache/uima/fit/util/JCasUtil.java b/uimafit-core/src/main/java/org/apache/uima/fit/util/JCasUtil.java
index cbf30de..1fb6de2 100644
--- a/uimafit-core/src/main/java/org/apache/uima/fit/util/JCasUtil.java
+++ b/uimafit-core/src/main/java/org/apache/uima/fit/util/JCasUtil.java
@@ -193,6 +193,8 @@
   /**
    * Get all annotations of the given type at the specified offsets.
    * 
+   * @param <T>
+   *          the type of annotations to fetch.
    * @param jCas
    *          the CAS containing the annotations.
    * @param type
@@ -211,6 +213,8 @@
   /**
    * Get a single annotations of the given type at the specified offsets.
    * 
+   * @param <T>
+   *          the type of annotations to fetch.
    * @param jCas
    *          the CAS containing the annotations.
    * @param type