Hi,
Can anybody explain the following code generation in Torque:
protected TjdtLicitante copyInto(TjdtLicitante copyObj) throws
TorqueException
{
copyObj.setCif(cif);
copyObj.setNew(false);
copyObj.setNew(true);
copyObj.setCif(0);
return copyObj;
}
1- First it sets setNew to false and then to new,
2- The field we just copied (cif) is then set to zero..
Is there any explanation for this?
Cheers,
Bo
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]