You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by ka...@apache.org on 2012/03/09 00:05:36 UTC

svn commit: r1298648 - /tapestry/tapestry5/trunk/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Autobuild.java

Author: kaosko
Date: Thu Mar  8 23:05:36 2012
New Revision: 1298648

URL: http://svn.apache.org/viewvc?rev=1298648&view=rev
Log:
tiny documentation fix, add @since 5.2

Modified:
    tapestry/tapestry5/trunk/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Autobuild.java

Modified: tapestry/tapestry5/trunk/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Autobuild.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Autobuild.java?rev=1298648&r1=1298647&r2=1298648&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Autobuild.java (original)
+++ tapestry/tapestry5/trunk/tapestry5-annotations/src/main/java/org/apache/tapestry5/ioc/annotations/Autobuild.java Thu Mar  8 23:05:36 2012
@@ -21,6 +21,8 @@ import java.lang.annotation.*;
  * Directs that the value to be built should be an autobuild instance of the type with injections performed, via {@link
  * org.apache.tapestry5.ioc.ObjectLocator#autobuild(Class)}. This should only be placed on a field or parameter of an
  * instantiable type (not an interface).
+ *
+ * @since 5.2
  */
 @Target({ElementType.PARAMETER, ElementType.FIELD})
 @Retention(RetentionPolicy.RUNTIME)