我们通过简单地在eclipse中(从here导入相应的XML)来使用Google(略为采用)的“ Java样式”版本。
效果很好,但是我们看到了一个令人讨厌的块注释问题。
我们的文件确实具有生成的版权标头,如下所示:
/* some text followed by some spaces */
/* so that all lines are equally spaced */
使用Google样式xml时,以上内容变为
/* some text followed by some spaces */
/* so that all lines are equally spaced */
使用Eclipse [built-in]
格式化程序进行格式化时,不会删除空格!
我仔细检查了google XML文件,并遇到了这一行:
<setting id="org.eclipse.jdt.core.formatter.comment.format_block_comments" false="true"/>
但是,将行更改为使用false
并不会改变任何内容。
问:如何修改Google样式的XML文件,以使空格保留在块注释中?
答案 0 :(得分:2)
Eclipse [内置]样式已关闭“启用标题注释格式”(XML中的org.eclipse.jdt.core.formatter.comment.format_header
值)。因此,将标题注释保留下来了。