diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-20 07:43:02 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-20 07:43:02 +0200 |
commit | aaf8547d91a540334419f2faebb897b327d535d8 (patch) | |
tree | 77f31019f0c87e823c5ed6a2569170b8bce7c7f6 /buildScripts/website.ant.xml | |
parent | f17ba28daa683a4ef9f7743a1ccdde8f8632cb94 (diff) | |
download | lombok-aaf8547d91a540334419f2faebb897b327d535d8.tar.gz lombok-aaf8547d91a540334419f2faebb897b327d535d8.tar.bz2 lombok-aaf8547d91a540334419f2faebb897b327d535d8.zip |
Added documentation for @RequiredArgsConstructor, @NoArgsConstructor, @AllArgsConstructor, and also how these generate @ConstructorProperties annotations.
Also updated @Getter and @Setter's documentation to explain their new class-level feature, and updated @Data's description to highlight how @Data is now truly nothing more than the combination of @RequiredArgsConstructor, @EqualsAndHashCode, @ToString, @Getter, and @Setter.
Diffstat (limited to 'buildScripts/website.ant.xml')
-rw-r--r-- | buildScripts/website.ant.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/buildScripts/website.ant.xml b/buildScripts/website.ant.xml index b33eebf2..73700a82 100644 --- a/buildScripts/website.ant.xml +++ b/buildScripts/website.ant.xml @@ -129,6 +129,9 @@ such as converting the changelog into HTML, and creating javadoc. <antcall target="-integrateSnippet"> <param name="transformationName" value="SneakyThrows" /> </antcall> + <antcall target="-integrateSnippet"> + <param name="transformationName" value="Constructor" /> + </antcall> </target> <target name="-website-dist"> @@ -283,8 +286,7 @@ such as converting the changelog into HTML, and creating javadoc. write your own plugins, the other packages are what you're looking for.</body></html> ]]></echo> <javadoc sourcepath="src/core" defaultexcludes="yes" destdir="build/api" windowtitle="Lombok" Overview="${javadoc.overview.html}"> - <classpath refid="deps.path" /> - <classpath refid="libs.path" /> + <classpath refid="build.path" /> <link href="http://java.sun.com/javase/6/docs/api/" offline="true" packagelistLoc="./deps/javadoc/java6"/> <header><![CDATA[<a href='http://projectlombok.org/'>Lombok</a> - ]]>v${lombok.version}</header> <bottom><![CDATA[<i>Copyright © 2009 Reinier Zwitserloot and Roel Spilker, licensed under the <a href='http://www.opensource.org/licenses/mit-license.php'>MIT licence</a>.]]></bottom> |