|
They mean if "o" and "e" are either both null or are "equal". It's essentially saying "o.equals(e)", except they account for the technicality that if "o" was null then obviously you can't call the ".equals()" method, but for our purposes we still want null references to be considered equal to each other.
Last edited by spooon; 05-10-2006 at 05:57 AM.
|