Repository: wicket Updated Branches: refs/heads/master cb6451207 -> c65648c7b
Fixed WARNING section Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/c65648c7 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/c65648c7 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/c65648c7 Branch: refs/heads/master Commit: c65648c7be85b9ebfc37ad307e860bcae07b0f42 Parents: cb64512 Author: Andrea Del Bene <[email protected]> Authored: Thu Jan 12 22:58:26 2017 +0100 Committer: Andrea Del Bene <[email protected]> Committed: Thu Jan 12 22:58:26 2017 +0100 ---------------------------------------------------------------------- .../main/asciidoc/componentLifecycle/componentLifecycle_4.adoc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/c65648c7/wicket-user-guide/src/main/asciidoc/componentLifecycle/componentLifecycle_4.adoc ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/main/asciidoc/componentLifecycle/componentLifecycle_4.adoc b/wicket-user-guide/src/main/asciidoc/componentLifecycle/componentLifecycle_4.adoc index 380933c..2c7cd56 100644 --- a/wicket-user-guide/src/main/asciidoc/componentLifecycle/componentLifecycle_4.adoc +++ b/wicket-user-guide/src/main/asciidoc/componentLifecycle/componentLifecycle_4.adoc @@ -48,9 +48,8 @@ This method is also responsible for invoking children _onBeforeRender()_ so if w Please note that in the example above we can trigger the rendering stage pressing F5 key or clicking on link âreloadâ. -WARNING: If we forget to call superclass version of methods _onInitialize()_ or _onBeforeRender()_, Wicket will throw an _IllegalStateException_ with the following message: - -_java.lang.IllegalStateException: _org.apache.wicket.Component_ has not been properly initialized. Something in the hierarchy of <page class name> has not called super.onInitialize()/onBeforeRender() in the override of onInitialize()/ onBeforeRender() method_ +WARNING: If we forget to call superclass version of methods _onInitialize()_ or _onBeforeRender()_, Wicket will throw an _IllegalStateException_ with the following message: + +`_java.lang.IllegalStateException: org.apache.wicket.Component has not been properly initialized. Something in the hierarchy of <page class name> has not called super.onInitialize()/onBeforeRender() in the override of onInitialize()/ onBeforeRender() method_` === Method onComponentTag
