Eclipse Custom Variable for Java Code Templates

2022-09-05 00:27:41

如何添加要插入到 Java 代码模板中的新变量。如何将变量添加到 Window->Preferences->Java->Code Style->Code Templates->Code->New Java Files->Edit->Insert Variable... ?

目前,我的新文件是通过以下方式创建的:

${filecomment}
${package_declaration}
${typecomment}
${type_declaration}

我希望用这样的东西来创建它们:

${begin_filecomment}
${package_declaration}
${typecomment}
${type_declaration}
${end_filecomment}

其中begin_filecomment和end_filecomment显示在“插入变量”列表中。


答案 1

是的,您确实可以向此列表添加变量。请参阅名为

org.eclipse.ui.editors.templates

你会发现如何。


答案 2

我很确定“变量”列表是由Eclipse生成的,并且没有办法添加新的模板变量。

你想成为什么,成为什么?只需在“编辑”框中键入内容 - 没有任何内容表明您不能将静态内容放在那里。${begin_filecomment}${end_filecomment}