From: Richard K. <ric...@us...> - 2005-05-26 20:34:27
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20258 Modified Files: NSSize.as Log Message: implement equalto Index: NSSize.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSSize.as,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** NSSize.as 4 May 2005 02:33:05 -0000 1.1.1.1 --- NSSize.as 26 May 2005 20:34:17 -0000 1.2 *************** *** 50,53 **** --- 50,57 ---- return "NSSize(width="+width+", height="+height+")"; } + + public function equalTo(other):Boolean { + return width == other.width && height == other.height + } } \ No newline at end of file |