欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Idea method方法注释 groovy脚本

程序员文章站 2022-03-02 08:32:05
...

 

params expression:

 

 

groovyScript("def result=''; def params=\"${_1}\".replaceAll('[\\\\[|\\\\]|\\\\s]', '').split(',').toList(); for(i = 0; i < params.size(); i++) {i == 0 ? ( 1 == params.size() ? (result += ' * @param ' + params[i] +''):(result += ' * @param ' + params[i] +'\\n\\b')) : (result+='    * @param ' + params[i] + ((i < params.size() - 1) ? '\\n\\b' : ''))}; return result", methodParameters())
 

 

 

Template text:

**
 *
 *
$params$  
 * @return $return$
 */