getter methods of boolean fields cannot be like isXXX()

It is common to name getter methods of boolean fields as isXXX() instead of getXXX(). For example:


private boolean valid;

public boolean isValid() {
return valid;
}

However CAI Editors do not recognize boolean fields unless you name their getter methods as getXXX(). Why :?:

…same question was just responsed one week ago… (not to blame you! just to indicate that the same problem also is seen by others).

The true and honest (and a bit stupid) answer on “Why?” is: because it always had been. At least: we documented it etc. …

Bjoern

I am sorry to repeat the same complaint :oops:

I hope you will make the necessary changes in the upcoming versions.