public String getAttribute1(){
return "Calculated Value";
}
Generated getter method in the extended VORowImpl will be like this:
public String getAttribute1() {
return (String) getAttributeInternal("Attribute1");
}
To fix this, modify the getter method of the extended VORowImpl like this:
public String getAttribute1() {
//return (String) getAttributeInternal("Attribute1");
return super.getAttribute1();
}