01: /**
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */package com.tc.util;
04:
05: /**
06: * Knows how to compare two objects for equality. This object must be able to accept <code>null</code> values for
07: * either argument — <code>null</code> should never be equal to anything except itself.
08: */
09: public interface EqualityComparator {
10:
11: boolean isEquals(Object one, Object two);
12:
13: }
|