mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
14 lines
414 B
Plaintext
14 lines
414 B
Plaintext
#set($paramName = $helper.getParamName($field, $project))
|
|
#if($field.modifierStatic)
|
|
static ##
|
|
#end
|
|
void set$StringUtil.capitalizeWithJavaBeanConvention($StringUtil.sanitizeJavaIdentifier($helper.getPropertyName($field, $project)))($field.type $paramName) {
|
|
#if ($field.name == $paramName)
|
|
#if (!$field.modifierStatic)
|
|
this.##
|
|
#else
|
|
$classname.##
|
|
#end
|
|
#end
|
|
$field.name = $paramName;
|
|
} |