${enclosing_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;
}