From 5739ffb0d5d4c8a327aa2ca8a45fbd614a19e152 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Mon, 2 Jul 2012 21:52:51 +0200 Subject: Fixed issue 374: updated documentation about case insensitive checking for existing methods. --- website/features/GetterSetter.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'website/features/GetterSetter.html') diff --git a/website/features/GetterSetter.html b/website/features/GetterSetter.html index b1ae5f24..0a576ea6 100644 --- a/website/features/GetterSetter.html +++ b/website/features/GetterSetter.html @@ -48,7 +48,7 @@ For generating the method names, the first character of the field, if it is a lowercase character, is title-cased, otherwise, it is left unmodified. Then, get/set/is is prefixed.

- No method is generated if any method already exists with the same name and same parameter count. For example, getFoo() + No method is generated if any method already exists with the same name (case insensitive) and same parameter count. For example, getFoo() will not be generated if there's already a method getFoo(String... x) even though it is technically possible to make the method. This caveat exists to prevent confusion. If the generation of a method is skipped for this reason, a warning is emitted instead. Varargs count as 0 to N parameters.

-- cgit