Bug 311240 - XPCOMJavaProxy 'equals()' method doesn't check actual XPCOM object ptr. r=bsmedberg.

git-svn-id: svn://10.0.0.236/trunk@187007 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pedemont%us.ibm.com
2006-01-05 19:56:53 +00:00
parent 54e185530a
commit f9e165f870
7 changed files with 125 additions and 57 deletions

View File

@@ -165,7 +165,17 @@ public class XPCOMJavaProxy implements InvocationHandler {
* @see Object#equals(Object)
*/
protected static Boolean proxyEquals(Object aProxy, Object aOther) {
return (aProxy == aOther ? Boolean.TRUE : Boolean.FALSE);
// See if the two are the same Java object
if (aProxy == aOther) {
return Boolean.TRUE;
} else {
// If not, then see if they represent the same XPCOM object. But first,
// we need to check if |aOther| is an XPCOMJavaProxy.
if (isXPCOMJavaProxy(aOther) && isSameXPCOMObject(aProxy, aOther)) {
return Boolean.TRUE;
}
}
return Boolean.FALSE;
}
/**
@@ -186,6 +196,19 @@ public class XPCOMJavaProxy implements InvocationHandler {
return false;
}
/**
* Checks if the two given XPCOMJavaProxy objects are proxies for
* the same XPCOM object.
*
* @param aProxy1 XPCOMJavaProxy created by <code>createProxy</code>
* @param aProxy2 XPCOMJavaProxy created by <code>createProxy</code>
*
* @return <code>true</code> if both proxies represent the same XPCOM object;
* <code>false</code> otherwise
*/
protected static native boolean isSameXPCOMObject(Object aProxy1,
Object aProxy2);
/**
* Handles method calls of <code>java.lang.Object.toString</code>
*