用于方法上 Java 注释的自定义内容辅助模板
在 Eclipse 3.6 中,我似乎无法使以下内容辅助模板正常工作:
@Column(name="${cursor}")
每当我在起始字符串(例如 @C
)上尝试 ctrl-spc
时,它只显示我使用通常的类型完成,没有额外的条目(例如我在启动 for
时看到的条目)。该帮助似乎很少介绍图案外观的细节。内容辅助应该适用于注释吗?如果是这样,怎么办?
In Eclipse 3.6, I can't seem to get the following content assist template to work:
@Column(name="${cursor}")
Whenever I try ctrl-spc
on a start string such as @C
it only shows me the usual type completions, no additional entries (like the one I see when starting a for
for instance). The help seems to be light on detail on how the pattern should look. Is content assist supposed to work for annotations? If so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
制作没有
@
... 的模板,这样您就可以输入co
,然后让生成@Column(name="${cursor} “)
。Make the template without the
@
... such that you typeco<crtl-spc>
and then let generate@Column(name="${cursor}")
.