*/
public void prepareUpdateObject() {
if (hasMultipleCalls()) {
int size = this.calls.size();
for (int index = 0; index < size; index++) {
DatabaseCall call = (DatabaseCall)this.calls.get(index);
if (!call.isReturnSet()) {
call.returnNothing();
}
}
} else if (getCall() != null) {
if (!call.isReturnSet()) {
this.call.returnNothing();
}
}
prepareCall();
}