Author: jcompagner
Date: Fri May 18 06:28:20 2007
New Revision: 539463

URL: http://svn.apache.org/viewvc?view=rev&rev=539463
Log:
onAttach -> onBeforeRender

Modified:
    
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java

Modified: 
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java?view=diff&rev=539463&r1=539462&r2=539463
==============================================================================
--- 
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java
 (original)
+++ 
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/AbstractTextComponent.java
 Fri May 18 06:28:20 2007
@@ -95,12 +95,11 @@
        
        /**
         * If the type is not set try to guess it if the model supports it.
-        * @see org.apache.wicket.Component#onAttach()
+        * @see org.apache.wicket.Component#onBeforeRender()
         */
-       protected void onAttach()
+       protected void onBeforeRender()
        {
-               super.onAttach();
-               
+               super.onBeforeRender();
                if (getType() == null)
                {
                        setType(getModelType(getModel()));


Reply via email to