我正在寻找制作一个编辑器模板的可能性,该模板生成 ${enclosure_method_arguments} 的索引(如果存在)。
我当前的方法体模板:
log.debug("Begin -- ${return_type} ${enclosing_method}(${enclosing_method_arguments}");
结果如下所示:
public File chooseFile(final String text, final String fileName)
{
log.debug("Begin -- File chooseFile(text, fileName");
return null;
}
但我喜欢的是这样的:
public File chooseFile(final String text, final String fileName)
{
log.debug("Begin -- File chooseFile({0},{1})",text, fileName);
return null;
}