// This rule specifies whether you have to have a
// space ' ' after a method name.

 
// without space
public void foo()
{
    bla(true);

    if (test() == 5)
    {
        blafoo();
    }
}

// with space
public void foo ()
{
    bla (true);

    if (test () == 5)
    {
        blafoo ();
    }
}