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 01:31:33 UTC

svn commit: r1128525 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractObjectCreationFactory.java

Author: simonetripodi
Date: Fri May 27 23:31:33 2011
New Revision: 1128525

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

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

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractObjectCreationFactory.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractObjectCreationFactory.java?rev=1128525&r1=1128524&r2=1128525&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractObjectCreationFactory.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractObjectCreationFactory.java Fri May 27 23:31:33 2011
@@ -40,18 +40,17 @@ public abstract class AbstractObjectCrea
     // --------------------------------------------------------- Public Methods
 
     /**
-     * <p>
      * Factory method called by {@link FactoryCreateRule} to supply an object based on the element's attributes.
-     * 
+     *
      * @param attributes the element's attributes
+     * @return creates a new T instance
      * @throws Exception any exception thrown will be propagated upwards
      */
     public abstract T createObject( Attributes attributes )
         throws Exception;
 
     /**
-     * <p>
-     * Returns the {@link Digester} that was set by the {@link FactoryCreateRule} upon initialization.
+     * {@inheritDoc}
      */
     public Digester getDigester()
     {
@@ -59,11 +58,7 @@ public abstract class AbstractObjectCrea
     }
 
     /**
-     * <p>
-     * Set the {@link Digester} to allow the implementation to do logging, classloading based on the digester's
-     * classloader, etc.
-     * 
-     * @param digester parent Digester object
+     * {@inheritDoc}
      */
     public void setDigester( Digester digester )
     {