Author: ivaynberg
Date: Tue Jul 13 01:56:25 2010
New Revision: 963565
URL: http://svn.apache.org/viewvc?rev=963565&view=rev
Log:
javadoc tweak
Modified:
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/Component.java
Modified:
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/Component.java
URL:
http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/Component.java?rev=963565&r1=963564&r2=963565&view=diff
==============================================================================
---
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/Component.java
(original)
+++
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/Component.java
Tue Jul 13 01:56:25 2010
@@ -3962,10 +3962,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>
+ * 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()
{