You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xbean-scm@geronimo.apache.org by db...@apache.org on 2008/03/09 01:32:16 UTC

svn commit: r635125 - /geronimo/xbean/trunk/xbean-reflect/src/main/java/org/apache/xbean/recipe/ObjectRecipe.java

Author: dblevins
Date: Sat Mar  8 16:32:14 2008
New Revision: 635125

URL: http://svn.apache.org/viewvc?rev=635125&view=rev
Log:
removed invalid javadoc

Modified:
    geronimo/xbean/trunk/xbean-reflect/src/main/java/org/apache/xbean/recipe/ObjectRecipe.java

Modified: geronimo/xbean/trunk/xbean-reflect/src/main/java/org/apache/xbean/recipe/ObjectRecipe.java
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-reflect/src/main/java/org/apache/xbean/recipe/ObjectRecipe.java?rev=635125&r1=635124&r2=635125&view=diff
==============================================================================
--- geronimo/xbean/trunk/xbean-reflect/src/main/java/org/apache/xbean/recipe/ObjectRecipe.java (original)
+++ geronimo/xbean/trunk/xbean-reflect/src/main/java/org/apache/xbean/recipe/ObjectRecipe.java Sat Mar  8 16:32:14 2008
@@ -156,24 +156,10 @@
         this.constructorArgTypes = new ArrayList<Class<?>>(constructorArgTypes);
     }
 
-    /**
-     * Gets the name of the factory method to call on the constructed instance.
-     * This method must be of the form <code>public T factoryMethodName();</code>
-     * and specifically must NOT be static.  Static factory methods are handled using
-     * a ConstructionStrategy.
-     * @return the name of the factory method to call on the constructed instance
-     */
     public String getFactoryMethod() {
         return factoryMethod;
     }
 
-    /**
-     * Sets the name of the factory method to call on the constructed instance.
-     * This method must be of the form <code>public T factoryMethodName();</code>
-     * and specifically must NOT be static.  Static factory methods are handled using
-     * a ConstructionStrategy.
-     * @param factoryMethod the name of the factory method to call on the constructed instance
-     */
     public void setFactoryMethod(String factoryMethod) {
         this.factoryMethod = factoryMethod;
     }