也许有人知道如何为Idea中的字段生成'withXYZ'方法,例如:
class SomeClass {
private String foo;
public SomeClass withFoo(String foo) {
this.foo = foo;
return this;
}
}
答案 0 :(得分:2)
您实际上并不需要安装任何第三方插件。 IDEA提供开箱即用的此功能。以下是实现此目标的步骤:
#set($paramName = $helper.getParamName($field, $project))
public ##
#if($field.modifierStatic)
static void ##
#else
$classSignature ##
#end
with$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;
#if(!$field.modifierStatic)
return this;
#end
}
你应该只做一次。将来,您只需选择生成器模板即可生成它。