From: Scott H. <sco...@us...> - 2005-05-17 02:56:58
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26833/src/org/actionstep Modified Files: NSObject.as Log Message: added isEqual method Index: NSObject.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSObject.as,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** NSObject.as 17 May 2005 01:29:59 -0000 1.5 --- NSObject.as 17 May 2005 02:56:45 -0000 1.6 *************** *** 49,52 **** --- 49,57 ---- } + public function isEqual(anObject:NSObject):Boolean { + return this == anObject; + } + + /** * Creates a shallow copy of the object. |