ANN: CanonicizerDoclet v 0.3 available
Changes in v0.3
null case handling in hashCode()
test code refactored (in project source)
http://www.intellij.org/twiki/bin/preview/Main/CanonicizerDoclet
todo :
GUI for choice of members used in code generation (v0.4)
make into a plugin : will require jdk 1.4 (v0.5)
请先登录再写评论。
version 3b (bug fix)
posted @ http://www.intellij.org/twiki/bin/view/Main/CanonicizerDoclet
bug (found by Scott Curtis) :
before:
..
private static int hashCodeOrZeroIfNull( final Object o, )
..
after:
..
private static int hashCodeOrZeroIfNull( final Object o )
..
Alain Ravet