You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by sv...@apache.org on 2017/12/05 19:23:02 UTC

wicket git commit: restored comments from former submit

Repository: wicket
Updated Branches:
  refs/heads/master 015cd3fe6 -> 693dad38a


restored comments from former submit


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/693dad38
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/693dad38
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/693dad38

Branch: refs/heads/master
Commit: 693dad38af9cab4824147f5acc84b31b25e3cf9a
Parents: 015cd3f
Author: Sven Meier <sv...@apache.org>
Authored: Tue Dec 5 20:22:34 2017 +0100
Committer: Sven Meier <sv...@apache.org>
Committed: Tue Dec 5 20:22:34 2017 +0100

----------------------------------------------------------------------
 .../org/apache/wicket/examples/spring/annot/web/AnnotPage.html     | 2 +-
 .../java/org/apache/wicket/spring/injection/annot/package.html     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/693dad38/wicket-examples/src/main/java/org/apache/wicket/examples/spring/annot/web/AnnotPage.html
----------------------------------------------------------------------
diff --git a/wicket-examples/src/main/java/org/apache/wicket/examples/spring/annot/web/AnnotPage.html b/wicket-examples/src/main/java/org/apache/wicket/examples/spring/annot/web/AnnotPage.html
index 704c4ec..128260b 100644
--- a/wicket-examples/src/main/java/org/apache/wicket/examples/spring/annot/web/AnnotPage.html
+++ b/wicket-examples/src/main/java/org/apache/wicket/examples/spring/annot/web/AnnotPage.html
@@ -19,7 +19,7 @@
 This approach allows users to quickly and easily inject any component with bean proxies. Components simply have to annotate any fields they wish injected with @SpringBean annotation.
 Interesting classes:<br/>
 <ul>
-	<li>SpringComponentInjector - an implementation of . that performs the injection</li>
+	<li>SpringComponentInjector - an implementation of IComponentInstantiationListener that performs the injection</li>
 	<li>AnnotPage - contains an annotated field whose value will be initialized with a proxy by the injector</li>
 </ul>
 <table wicket:id="contacts" cellspacing="0" cellpadding="2" class="grid"></table>

http://git-wip-us.apache.org/repos/asf/wicket/blob/693dad38/wicket-spring/src/main/java/org/apache/wicket/spring/injection/annot/package.html
----------------------------------------------------------------------
diff --git a/wicket-spring/src/main/java/org/apache/wicket/spring/injection/annot/package.html b/wicket-spring/src/main/java/org/apache/wicket/spring/injection/annot/package.html
index a1a8875..2c7d72d 100644
--- a/wicket-spring/src/main/java/org/apache/wicket/spring/injection/annot/package.html
+++ b/wicket-spring/src/main/java/org/apache/wicket/spring/injection/annot/package.html
@@ -26,7 +26,7 @@ This package contains all the classes to make your wicket components and other p
 <p>
 To setup automatic injection of wicket components in your application subclass init() method call:
 <code>
-addComponent.(new SpringComponentInjector(this));
+addComponentInstantiationListener(new SpringComponentInjector(this));
 </code>
 To inject any pojo call <code>InjectorHolder.getInjector().inject(this)</code> in the pojo's constructor.
 </p>