Hello, looking for clarification on what this code does. Specifically this.type().ValidateDelete(). It is within the ValidateDelete override.
public boolean validateDelete()
{
boolean ret;
ret = super();
if(ret)
{
ret = ret && this.type().ValidateDelete();
}
return ret;
}