标签: java eclipse templates
我想为Eclipse IDE编写一个模板。模板应该使用模板所使用的方法的参数类型,以便我可以编写一个生成如下日志语句的模板:
LOG.info("myMethod(String, String)");
评估myMethod'很容易(我可以使用${enclosing_method})但我无法评估方法的参数类型(参数名称很简单,因此我可以使用${enclosing_method_arguments})。
${enclosing_method}
${enclosing_method_arguments}
任何人都可以解释我如何评估封闭方法的参数类型吗?