You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2008/09/09 00:45:23 UTC

svn commit: r693308 - /tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/InjectContainer.java

Author: hlship
Date: Mon Sep  8 15:45:23 2008
New Revision: 693308

URL: http://svn.apache.org/viewvc?rev=693308&view=rev
Log:
TAPESTRY-2603:Improve @InjectContainer Javadoc

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/InjectContainer.java

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/InjectContainer.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/InjectContainer.java?rev=693308&r1=693307&r2=693308&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/InjectContainer.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/annotations/InjectContainer.java Mon Sep  8 15:45:23 2008
@@ -21,8 +21,8 @@
 import java.lang.annotation.Target;
 
 /**
- * Used in inject the container of a component as a field of the component. The container of a mixin is the component to
- * which the mixin is attached.
+ * Used to inject the component which contains this component. For mixins, this injects the component to which the mixin
+ * is attached.
  */
 @Target(FIELD)
 @Documented