Eclipse JDT autoformatting:'if'之后的缩进语句,没有大括号

时间:2013-03-04 17:17:54

标签: java eclipse code-formatting

我正在尝试设置Eclipse的autoformatting以符合我公司的编码风格,但我遇到了这种情况的严重问题:'if'语句有一个语句(不是块)这是'尝试' '声明。我们的指南是它的格式应该是这样的:

if (condition)
    try
    {
        something;
    }
    catch (WhateverException e)
    {
        and do something with it;
    }

但是Eclipse似乎总是希望像这样格式化它:

if (condition) try
{
    something;
}
catch (WhateverException e)
{
    and do something with it;
}

我查看了所有设置,看不到任何似乎做我想要的东西,至少在没有单线if语句时,如果它们有简单的内容(我们想要的话)。有没有我错过的东西,或者Eclipse不能应付这个?

0 个答案:

没有答案