show/hide this revision's text 3 Clarified question to (hopefully) final version.

Based on this question it appears that the default template for CheckStyle will allow if else ladders to separate the if and else with a line break.

Meaning I would like this code to be flagged as a violation:

if (true)
{
    System.out.println("20");   
}
else
    if (true)
    {
        System.out.println("30");
    }

Is there a CheckStyle rule to prevent this? Looking over the docs, I don't see one, and I'd prefer not to use the generic regex rule, if I don't have to.


Edit: At the suggestion of VonC I am trying this rule using a regex:

    <module name="GenericIllegalRegexp">
        <property name="format" value="else[ \t]*[\r\n]+[ \t]*if"/>
        <property name="message" 
                  value="else 

Also, if keywords must be on I use the same line."/> <property name="severity" value="error"/> </module>

But that does not GenericIllegalRegexp module, multiline regex don't seem to work, and the style error is not detected. Any ideas what could be wrong hereIs there some remedy to this?

show/hide this revision's text 2 Improving question to include best attempt so far.

Based on this question it appears that the default template for CheckStyle will allow if else ladders to separate the if and else with a line break.

Meaning I would like this code to be flagged as a violation:

if (true)
{
    System.out.println("20");   
}
else
    if (true)
    {
        System.out.println("30");
    }

Is there a CheckStyle rule to prevent this? Looking over the docs, I don't see one, and I'd prefer not to use the generic regex rule, if I don't have to.


Edit: At the suggestion of VonC I am trying this rule using a regex:

    <module name="GenericIllegalRegexp">
        <property name="format" value="else[ \t]*[\r\n]+[ \t]*if"/>
        <property name="message" 
                  value="else if keywords must be on the same line."/>
        <property name="severity" value="error"/>
    </module>

But that does not seem to work, and the style error is not detected. Any ideas what could be wrong here?

show/hide this revision's text 1

Is there a CheckStyle rule to force if else keywords to be on the same line in an if/else ladder?

Based on this question it appears that the default template for CheckStyle will allow if else ladders to separate the if and else with a line break.

Meaning I would like this code to be flagged as a violation:

if (true)
{
    System.out.println("20");   
}
else
    if (true)
    {
        System.out.println("30");
    }

Is there a CheckStyle rule to prevent this? Looking over the docs, I don't see one, and I'd prefer not to use the generic regex rule, if I don't have to.