home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-03-14 | 619 b | 25 lines |
- // Copyright(c) 1997 ObjectSpace, Inc.
-
- package COM.objectspace.jgl;
-
- /**
- * EqualString is a binary predicate that returns true
- * if the first operand as a string is equal to the second operand
- * as a string.
- * <p>
- * @version 2.0.2
- * @author ObjectSpace, Inc.
- */
-
- public final class EqualString implements BinaryPredicate
- {
- /**
- * Return true if the first operand is equal to the second operand.
- * @return first.toString() == second.toString()
- */
- public boolean execute( Object first, Object second )
- {
- return first.toString().equals( second.toString() );
- }
- }
-