aboutsummaryrefslogtreecommitdiff
path: root/website/features/GetterSetter.html
diff options
context:
space:
mode:
authorgrootjans <grootjans@gmail.com>2012-07-02 23:22:40 +0200
committergrootjans <grootjans@gmail.com>2012-07-02 23:22:40 +0200
commitc642f8a50cb7863cdf85070722b28b727342be36 (patch)
tree7c22cbd4e76a678e28195f2621526ee587ddc41a /website/features/GetterSetter.html
parent3c0ed22062a83bd6611677ed6625698a769dd4fb (diff)
parenteb22b3fe059486081d2f74afc4e0b80b88411be3 (diff)
downloadlombok-c642f8a50cb7863cdf85070722b28b727342be36.tar.gz
lombok-c642f8a50cb7863cdf85070722b28b727342be36.tar.bz2
lombok-c642f8a50cb7863cdf85070722b28b727342be36.zip
Merge branch 'master' of github.com:rzwitserloot/lombok
Diffstat (limited to 'website/features/GetterSetter.html')
-rw-r--r--website/features/GetterSetter.html2
1 files changed, 1 insertions, 1 deletions
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.
</p><p>
- No method is generated if any method already exists with the same name and same parameter count. For example, <code>getFoo()</code>
+ No method is generated if any method already exists with the same name (case insensitive) and same parameter count. For example, <code>getFoo()</code>
will not be generated if there's already a method <code>getFoo(String... x)</code> 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.
</p><p>