You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jo...@apache.org on 2011/05/25 11:43:08 UTC

svn commit: r1127456 - /incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/util/featuregen/GeneratorFactory.java

Author: joern
Date: Wed May 25 09:43:08 2011
New Revision: 1127456

URL: http://svn.apache.org/viewvc?rev=1127456&view=rev
Log:
OPENNLP-21 Fixed javadoc warnings

Modified:
    incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/util/featuregen/GeneratorFactory.java

Modified: incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/util/featuregen/GeneratorFactory.java
URL: http://svn.apache.org/viewvc/incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/util/featuregen/GeneratorFactory.java?rev=1127456&r1=1127455&r2=1127456&view=diff
==============================================================================
--- incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/util/featuregen/GeneratorFactory.java (original)
+++ incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/util/featuregen/GeneratorFactory.java Wed May 25 09:43:08 2011
@@ -56,15 +56,17 @@ import org.xml.sax.SAXException;
  *   </cache>
  * </generators>
  *
- * Each XML element is mapped to a {@link XmlFeatureGeneratorFactory} which
+ * Each XML element is mapped to a {@link GeneratorFactory.XmlFeatureGeneratorFactory} which
  * is responsible to process the element and create the specified
  * {@link AdaptiveFeatureGenerator}. Elements can contain other
  * elements in this case it is the responsibility of the mapped factory to process
  * the child elements correctly. In some factories this leads to recursive
- * calls the {@link #createGenerator(Element)} method.
+ * calls the 
+ * {@link GeneratorFactory.XmlFeatureGeneratorFactory#create(Element, FeatureGeneratorResourceProvider)}
+ * method.
  *
  * In the example above the generators element is mapped to the
- * {@link AggregatedFeatureGeneratorFactory} which then
+ * {@link GeneratorFactory.AggregatedFeatureGeneratorFactory} which then
  * creates all the aggregated {@link AdaptiveFeatureGenerator}s to
  * accomplish this it evaluates the mapping with the same mechanism
  * and gives the child element to the corresponding factories. All
@@ -460,7 +462,7 @@ public class GeneratorFactory {
    * @param resourceManager the resource manager which is used to resolve resources
    * referenced by a key in the descriptor
    *
-   * @return
+   * @return created feature generators
    *
    * @throws IOException if an error occurs during reading from the descriptor
    *     {@link InputStream}