You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/05/28 17:19:39 UTC

svn commit: r1128665 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java

Author: simonetripodi
Date: Sat May 28 15:19:38 2011
New Revision: 1128665

URL: http://svn.apache.org/viewvc?rev=1128665&view=rev
Log:
fixed javadoc violations

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java?rev=1128665&r1=1128664&r2=1128665&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreationFactory.java Sat May 28 15:19:38 2011
@@ -29,6 +29,8 @@ import org.xml.sax.Attributes;
  * <p>
  * {@link AbstractObjectCreationFactory} is an abstract implementation suitable for creating anonymous
  * <code>ObjectCreationFactory</code> implementations.
+ *
+ * @param <T> The object type created byt the factory.
  */
 public interface ObjectCreationFactory<T>
 {
@@ -44,13 +46,13 @@ public interface ObjectCreationFactory<T
         throws Exception;
 
     /**
-     * <p>
      * Returns the {@link Digester} that was set by the {@link FactoryCreateRule} upon initialization.
+     *
+     * @return the {@link Digester} that was set by the {@link FactoryCreateRule} upon initialization
      */
     Digester getDigester();
 
     /**
-     * <p>
      * Set the {@link Digester} to allow the implementation to do logging, classloading based on the digester's
      * classloader, etc.
      *