You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2010/10/20 15:25:06 UTC

svn commit: r1025550 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java

Author: mgrigorov
Date: Wed Oct 20 13:25:06 2010
New Revision: 1025550

URL: http://svn.apache.org/viewvc?rev=1025550&view=rev
Log:
Update a javadoc which mentions ImageMap which is removed in 1.5

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java?rev=1025550&r1=1025549&r2=1025550&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java Wed Oct 20 13:25:06 2010
@@ -2795,10 +2795,10 @@ public abstract class Component
 
 	/**
 	 * Called to indicate that a component has been rendered. This method should only very rarely be
-	 * called at all. One usage is in ImageMap, which renders its link children its own special way
-	 * (without calling render() on them). If ImageMap did not call rendered() to indicate that its
-	 * child components were actually rendered, the framework would think they had never been
-	 * rendered, and in development mode this would result in a runtime exception.
+	 * called at all. Some components may render its children without calling render() on them.
+	 * These components need to call rendered() to indicate that its child components were actually
+	 * rendered, the framework would think they had never been rendered, and in development mode
+	 * this would result in a runtime exception.
 	 */
 	public final void rendered()
 	{