* @return true if the result of comparison of hash codes for
* {@link net.jini.export.ExportPermission} objects is equal to
* the expected result or false otherwise
*/
public boolean checker(TestCase tc) {
ExportPermission p1 = tc.getPermission1();
ExportPermission p2 = tc.getPermission2();
boolean expected = tc.getExpected();
logger.log(Level.FINE, "\t+++ " + p1 + ".hashCode()");
int p1_hashCode = p1.hashCode();
logger.log(Level.FINE, "\t+++ " + p2 + ".hashCode()");
int p2_hashCode = p2.hashCode();
logger.log(Level.FINE, "1-st ExportPermission object: " + p1);
logger.log(Level.FINE, "2-nd ExportPermission object: " + p2);
logger.log(Level.FINE, "hash code for the 1-st object: " + p1_hashCode);
logger.log(Level.FINE, "hash code for the 2-nd object: " + p2_hashCode);
if (expected == true) {