mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
10 lines
253 B
Plaintext
10 lines
253 B
Plaintext
public int hashCode() {
|
|
return new org.apache.commons.lang3.builder.HashCodeBuilder(17, 37)##
|
|
#if($superHasHashCode)
|
|
.appendSuper(super.hashCode())##
|
|
#end
|
|
#foreach($field in $fields)
|
|
.append($field.accessor)##
|
|
#end
|
|
.toHashCode();
|
|
} |