Eclipse Java Formatter - 在'('代替''之后中断。

时间:2014-10-19 15:27:27

标签: java eclipse formatting code-formatting eclipse-formatter

我有一个自定义的Eclipse Java代码格式化程序,它应该在行中的一些字符后打破每一行。但是我没有找到我可以设置的地方,Eclipse应该破坏这条线。如果我有以下代码:

System.out.println("Here is a very long line containing very many characters, but it is only one String (so no +)");

然后Eclipse打破了这样的界限:

System.out.
        println("Here is a very long line containing very many characters, but it is only one String (so no +)");

问题:如何让Eclipse在&#39;(&#39;而不是&#39;。&#39;之后)打破代码,如下所示:< / p>

System.out.println(
        "Here is a very long line containing very many characters, but it is only one String (so no +)");

0 个答案:

没有答案