This method of the MulticastDelegate class compares two Delegate objects.
public boolean equals(Object objOther);
objOther | The Delegate object to compare. |
The result is true if and only if the argument is not null, the length of the invocation list l1 for the argument is equal to the length of the invocation list l2 for this Delegate, and for all i in (0;l1.length), l1[i] has the same target and method as l2[i].
This method overrides Delegate.equals.