From 3798d9426365826598b42e00969314a3ae1f8c78 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 20 Jun 2011 21:36:40 +0200 Subject: Minor tweaks to documentation updates (javadocs, website). --- buildScripts/website.ant.xml | 1 + src/core/lombok/eclipse/Eclipse.java | 4 +--- src/core/lombok/javac/handlers/JavacHandlerUtil.java | 2 +- website/features/Cleanup.html | 2 +- website/features/Constructor.html | 2 +- website/features/Data.html | 2 +- website/features/EqualsAndHashCode.html | 2 +- website/features/GetterLazy.html | 2 +- website/features/GetterSetter.html | 2 +- website/features/Log.html | 2 +- website/features/SneakyThrows.html | 2 +- website/features/Synchronized.html | 2 +- website/features/ToString.html | 2 +- website/features/delombok.html | 5 +++++ website/features/index.html | 2 +- 15 files changed, 19 insertions(+), 15 deletions(-) diff --git a/buildScripts/website.ant.xml b/buildScripts/website.ant.xml index 9d2becf2..72aac217 100644 --- a/buildScripts/website.ant.xml +++ b/buildScripts/website.ant.xml @@ -100,6 +100,7 @@ such as converting the changelog into HTML, and creating javadoc. + diff --git a/src/core/lombok/eclipse/Eclipse.java b/src/core/lombok/eclipse/Eclipse.java index 8910bb3e..2cb2fe33 100644 --- a/src/core/lombok/eclipse/Eclipse.java +++ b/src/core/lombok/eclipse/Eclipse.java @@ -121,8 +121,6 @@ public class Eclipse { /** * Generates a warning in the Eclipse error log. Note that most people never look at it! * - * @param cud The {@code CompilationUnitDeclaration} where the error occurred. - * An error will be generated on line 0 linking to the error log entry. Can be {@code null}. * @param message Human readable description of the problem. * @param error The associated exception. Can be {@code null}. */ @@ -580,7 +578,7 @@ public class Eclipse { * * @param type An actual type. This method checks if {@code typeNode} is likely to be a reference to this type. * @param node A Lombok AST node. Any node in the appropriate compilation unit will do (used to get access to import statements). - * @param typeNode A type reference to check. + * @param typeRef A type reference to check. */ public static boolean typeMatches(Class type, EclipseNode node, TypeReference typeRef) { if (typeRef == null || typeRef.getTypeName() == null) return false; diff --git a/src/core/lombok/javac/handlers/JavacHandlerUtil.java b/src/core/lombok/javac/handlers/JavacHandlerUtil.java index 1f0da79a..0cbe2c83 100644 --- a/src/core/lombok/javac/handlers/JavacHandlerUtil.java +++ b/src/core/lombok/javac/handlers/JavacHandlerUtil.java @@ -173,7 +173,7 @@ public class JavacHandlerUtil { /** * @return the likely setter name for the stated field. (e.g. private boolean foo; to setFoo). * - * Convenient wrapper around {@link TransformationsUtil#toSetterName(CharSequence)}. + * Convenient wrapper around {@link TransformationsUtil#toSetterName(CharSequence, boolean)}. */ public static String toSetterName(JCVariableDecl field) { CharSequence fieldName = field.name; diff --git a/website/features/Cleanup.html b/website/features/Cleanup.html index 4ac4d75e..35100f09 100644 --- a/website/features/Cleanup.html +++ b/website/features/Cleanup.html @@ -61,7 +61,7 @@
diff --git a/website/features/Constructor.html b/website/features/Constructor.html index c0ab9ef8..5b2857f8 100644 --- a/website/features/Constructor.html +++ b/website/features/Constructor.html @@ -80,7 +80,7 @@
diff --git a/website/features/Data.html b/website/features/Data.html index 45b28403..03f6eb2a 100644 --- a/website/features/Data.html +++ b/website/features/Data.html @@ -76,7 +76,7 @@
diff --git a/website/features/EqualsAndHashCode.html b/website/features/EqualsAndHashCode.html index b506837e..f53d0963 100644 --- a/website/features/EqualsAndHashCode.html +++ b/website/features/EqualsAndHashCode.html @@ -84,7 +84,7 @@
diff --git a/website/features/GetterLazy.html b/website/features/GetterLazy.html index d3e47b85..fefb3cdf 100644 --- a/website/features/GetterLazy.html +++ b/website/features/GetterLazy.html @@ -47,7 +47,7 @@
diff --git a/website/features/GetterSetter.html b/website/features/GetterSetter.html index 8e7a1ede..3e3530ef 100644 --- a/website/features/GetterSetter.html +++ b/website/features/GetterSetter.html @@ -75,7 +75,7 @@
diff --git a/website/features/Log.html b/website/features/Log.html index 91a06580..00af3e27 100644 --- a/website/features/Log.html +++ b/website/features/Log.html @@ -57,7 +57,7 @@
diff --git a/website/features/SneakyThrows.html b/website/features/SneakyThrows.html index 0781f083..03c2833d 100644 --- a/website/features/SneakyThrows.html +++ b/website/features/SneakyThrows.html @@ -72,7 +72,7 @@
diff --git a/website/features/Synchronized.html b/website/features/Synchronized.html index 456da186..69d9dcee 100644 --- a/website/features/Synchronized.html +++ b/website/features/Synchronized.html @@ -55,7 +55,7 @@
diff --git a/website/features/ToString.html b/website/features/ToString.html index 8ac29bb1..411c5e7f 100644 --- a/website/features/ToString.html +++ b/website/features/ToString.html @@ -69,7 +69,7 @@
diff --git a/website/features/delombok.html b/website/features/delombok.html index c1ad2a7f..6dbf1a67 100644 --- a/website/features/delombok.html +++ b/website/features/delombok.html @@ -56,6 +56,11 @@ To keep any changes to your code style to a minimum, delombok just copies a source file directly without changing any of it if the source file contains no lombok transformations. + +