Bug 281102 - Allow many Java proxies per XPCOM object. r=darin

This commit is contained in:
pedemont@us.ibm.com
2005-02-24 21:53:46 +00:00
parent 400344350d
commit 5488d7285f
11 changed files with 926 additions and 579 deletions

View File

@@ -211,7 +211,8 @@ public class TestArray {
for (int index = 0; (index < count) && (index < aExpectedCount); index++) {
IFoo foo = (IFoo) aArray.queryElementAt(index, IFoo.IFOO_IID);
System.out.println(index + ": " + aElementIDs[index] + "=" +
foo.getId() + " (" + foo.hashCode() + ") " +
foo.getId() + " (" +
Integer.toHexString(foo.hashCode()) + ") " +
assertEqual(foo.getId(), aElementIDs[index]));
foo = null;
}