Author: ivaynberg
Date: Tue Jul 13 01:56:45 2010
New Revision: 963566
URL: http://svn.apache.org/viewvc?rev=963566&view=rev
Log:
javadoc tweak
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=963566&r1=963565&r2=963566&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 Tue Jul
13 01:56:45 2010
@@ -863,10 +863,19 @@ public abstract class Component implemen
* to fully initialize. This method is invoked once per component's
lifecycle when a path exists
* from this component to the {...@link Page} thus providing the
component with an atomic callback
* when the component's environment is built out.
+ * <p>
+ * Overrides must call supe...@link #onInitialize()}
+ * </p>
+ *
+ * <p>
+ * It is safe to use {...@link #getPage()} in this method
+ * </p>
*
* <p>
- * It is safe to use {...@link #getPage()} and {...@link #getMarkup()}
in this method
+ * NOTE:The timing of this call is not precise, the contract is that it
is called sometime
+ * before {...@link Component#onBeforeRender()}.
* </p>
+ *
*/
protected void onInitialize()
{