Skip to content

Instantly share code, notes, and snippets.

@guilherfp
Last active May 11, 2024 12:59
Show Gist options
  • Save guilherfp/10c5f36433dfd6104e63bb700c4bb235 to your computer and use it in GitHub Desktop.
Save guilherfp/10c5f36433dfd6104e63bb700c4bb235 to your computer and use it in GitHub Desktop.
Intellij template Builder Generator
#if($field.modifierStatic)
static ##
#end
$class.name ##
#if($field.recordComponent)
${field.name}##
#else
#set($name = $helper.getPropertyName($field, $project))
${name}##
#end
($field.type $name) {
this.$field.name = $name;
return this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment