From: Scott H. <sco...@us...> - 2005-05-17 02:59:26
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27151/src/org/actionstep Modified Files: NSObject.as Log Message: Added comment Index: NSObject.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSObject.as,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NSObject.as 17 May 2005 02:56:45 -0000 1.6 --- NSObject.as 17 May 2005 02:58:48 -0000 1.7 *************** *** 49,52 **** --- 49,60 ---- } + + /** + * Returns TRUE if this is equal to anObject, and FALSE otherwise. + * + * To be overridden by subclasses as desired. + * + * The default implementation is reference comparison. + */ public function isEqual(anObject:NSObject):Boolean { return this == anObject; |