mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
16 lines
311 B
Plaintext
16 lines
311 B
Plaintext
public int hashCode() {
|
|
return com.google.common.base.Objects.hashCode(##
|
|
#set($i = 0)
|
|
#if($superHasHashCode)
|
|
super.hashCode() ##
|
|
#set($i = 1)
|
|
#end
|
|
#foreach($field in $fields)
|
|
#if ($i > 0)
|
|
, ##
|
|
#end
|
|
$field.accessor ##
|
|
#set($i = $i + 1)
|
|
#end
|
|
);
|
|
} |