From: Tay R. C. <rc...@us...> - 2005-07-15 11:49:54
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep/constants In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10117/actionstep/org/actionstep/constants Modified Files: NSRunResponse.as Log Message: Return values for modal loop runs Index: NSRunResponse.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/constants/NSRunResponse.as,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NSRunResponse.as 20 Jun 2005 02:15:48 -0000 1.1 --- NSRunResponse.as 15 Jul 2005 11:49:40 -0000 1.2 *************** *** 28,43 **** * POSSIBILITY OF SUCH DAMAGE. */ ! class org.actionstep.constants.NSRunResponse { ! // Modal run responses ! public static var ! NSRunStoppedResponse:NSRunResponse = new NSRunResponse(0), ! NSRunAbortedResponse:NSRunResponse = new NSRunResponse(1), ! NSRunContinuesResponse:NSRunResponse = new NSRunResponse(2); ! public var value:Number; ! private function NSRunResponse(num:Number) { ! value = num; } ! } \ No newline at end of file --- 28,41 ---- * POSSIBILITY OF SUCH DAMAGE. */ ! class org.actionstep.constants.NSRunResponse { ! public static var NSStopped:NSRunResponse = new NSRunResponse(-1000); ! public static var NSAborted:NSRunResponse = new NSRunResponse(-1001); ! public static var NSContinues:NSRunResponse = new NSRunResponse(-1002); ! public var value:Number; ! private function NSRunResponse(value:Number) { ! this.value = value; } ! } |