Sergey Beryozkin wrote:
> MathHelperImpl should probably have a field 'String name' as well as a
> setName(String name) setter and it might make Aegis happy...Saul, can you
> try it ?

I tried it (see appended code), but the same exception was thrown on the
server. The call to getName() already works. But the call to
isGreaterZero(int) causes the exception.

Greetings,
Saul


New source of MathHelperImpl:

package passobject.impl;
import passobject.interfaces.MathHelper;

public class MathHelperImpl implements MathHelper {
    String name = "MyMathHelperWithSetter";
    public void setName(String name) { this.name = name; }
    public String getName()          { return name; }

    public boolean isGreaterZero(int number) { return number > 0; }
}


Reply via email to