类
/** * $text$
* @date $DATE$ $TIME$
* @author 白科龙
* @since v1.0 */

方法
/**
* $text$
* @date $DATE$ $TIME$
* @author 白科龙
$params$
$return$
*/
参数和返回值脚本
groovyScript("if(\"${_1}\".length() == 2) {return '';} else {def result=''; def params=\"${_1}\".replaceAll('[\\\\[|\\\\]|\\\\s]', '').split(',').toList();for(i = 0; i < params.size(); i++) {if(i==0){result+='* @param ' + params[i]}else{result+='\\n' + ' * @param ' + params[i]}}; return result;}", methodParameters());
groovyScript("def returnType = \"${_1}\"; def result = '* @return ' + returnType; return result;", methodReturnType());
