Return-Path: X-Original-To: apmail-incubator-flex-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-flex-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9C3C7D5E0 for ; Tue, 14 Aug 2012 16:21:34 +0000 (UTC) Received: (qmail 24559 invoked by uid 500); 14 Aug 2012 16:21:34 -0000 Delivered-To: apmail-incubator-flex-commits-archive@incubator.apache.org Received: (qmail 24514 invoked by uid 500); 14 Aug 2012 16:21:34 -0000 Mailing-List: contact flex-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: flex-dev@incubator.apache.org Delivered-To: mailing list flex-commits@incubator.apache.org Received: (qmail 24507 invoked by uid 99); 14 Aug 2012 16:21:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Aug 2012 16:21:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Aug 2012 16:21:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 626772388AC8; Tue, 14 Aug 2012 16:20:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1372959 [9/32] - in /incubator/flex/trunk/mustella/asdoc-output: ./ AIR/ images/ skins/ Date: Tue, 14 Aug 2012 16:20:10 -0000 To: flex-commits@incubator.apache.org From: pent@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120814162017.626772388AC8@eris.apache.org> Added: incubator/flex/trunk/mustella/asdoc-output/DispatchEvent.html URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/asdoc-output/DispatchEvent.html?rev=1372959&view=auto ============================================================================== --- incubator/flex/trunk/mustella/asdoc-output/DispatchEvent.html (added) +++ incubator/flex/trunk/mustella/asdoc-output/DispatchEvent.html Tue Aug 14 16:20:06 2012 @@ -0,0 +1,81 @@ +DispatchEvent +
PackageTop Level
Classpublic class DispatchEvent
InheritanceDispatchEvent Inheritance TestStep Inheritance flash.events.EventDispatcher

+ The test step that fakes an event. Do not use for MouseEvent or KeyboardEvent + MXML attributes: + bubbles + cancelable + eventClass + properties + target + type + waitTarget (optional) + waitEvent (optional) + timeout (optional); +



Public Properties
 PropertyDefined By
  bubbles : Boolean
+ The bubbles property on the Event (optional) +
DispatchEvent
  cancelable : Boolean
+ The cancelable property on the Event (optional) +
DispatchEvent
  eventClass : String
+ The qualified name of the class for the event + i.e.
DispatchEvent
  properties : Object
+ The relatedObject property on the MouseEvent (optional) +
DispatchEvent
  target : String
+ The object that receives the mouse event +
DispatchEvent
 Inheritedtimeout : int = 3000
+ The number of milliseconds to wait before giving up +
timeout
  type : String
+ The type of the event to send (mouseUp, mouseDown, etc).
DispatchEvent
 InheritedwaitEvent : String
+ The name of the event to listen for on the waitTarget +
waitEvent
 InheritedwaitTarget : String
+ The name of the object to listen for an event we're waiting on +
waitTarget
Protected Properties
 PropertyDefined By
 Inheritedcontext : UnitTester
+ The UnitTester that this step belongs to +
protected
 Inheritedroot : DisplayObject
+ The root for the SWF +
protected
 InheritedtestCase : TestCase
+ The TestCase that this step belongs to +
protected
 InheritedtestResult : TestResult
+ The TestResult for this TestCase +
protected
Public Methods
 MethodDefined By
 Inherited
execute(root:DisplayObject, context:UnitTester, testCase:TestCase, testResult:TestResult):Boolean
+ Called by the TestCase when it is time to start this step + The default implementation checks for a wait event and + returns true if there isn't one and false if there is.
execute
 Inherited
+ Called by the test case if you time out +
timeoutCallback
  
toString():String
[override] + customize string representation +
DispatchEvent
Protected Methods
 MethodDefined By
  
doStep():void
[override] + Set the target's property to the specified value +
DispatchEvent
 Inherited
+ The method that gets called when it is time to clean up the step.
protected
 Inherited
waitEventHandler(event:Event):void
+ The method that gets called back when the event we're waiting on fires +
protected
Property Detail
bubblesproperty
public var bubbles:Boolean

+ The bubbles property on the Event (optional) +

cancelableproperty 
public var cancelable:Boolean

+ The cancelable property on the Event (optional) +

eventClassproperty 
public var eventClass:String

+ The qualified name of the class for the event + i.e. flash.events.Event +

propertiesproperty 
public var properties:Object

+ The relatedObject property on the MouseEvent (optional) +

targetproperty 
public var target:String

+ The object that receives the mouse event +

typeproperty 
public var type:String

+ The type of the event to send (mouseUp, mouseDown, etc). +

Method Detail
doStep()method
override protected function doStep():void

+ Set the target's property to the specified value +

toString()method 
override public function toString():String

+ customize string representation +

Returns
String




\ No newline at end of file Added: incubator/flex/trunk/mustella/asdoc-output/DispatchKeyEvent.html URL: http://svn.apache.org/viewvc/incubator/flex/trunk/mustella/asdoc-output/DispatchKeyEvent.html?rev=1372959&view=auto ============================================================================== --- incubator/flex/trunk/mustella/asdoc-output/DispatchKeyEvent.html (added) +++ incubator/flex/trunk/mustella/asdoc-output/DispatchKeyEvent.html Tue Aug 14 16:20:06 2012 @@ -0,0 +1,107 @@ +DispatchKeyEvent +
PackageTop Level
Classpublic class DispatchKeyEvent
InheritanceDispatchKeyEvent Inheritance TestStep Inheritance flash.events.EventDispatcher

+ The test step that fakes a keyboard event + MXML attributes: + type (optional) + charCode + ctrlKey (optional) + keyCode (optional) + keyLocation (optional) + shiftKey (optional) + waitTarget (optional) + waitEvent (optional) + timeout (optional); + cancelable (optional) +



Public Properties
 PropertyDefined By
  cancelable : Boolean = false
+ Designate the created event to be cancelable.
DispatchKeyEvent
  char : String
+ The char or sequence of chars to send as a string/char if you don't know the charCode (optional) +
DispatchKeyEvent
  charCode : uint
+ The charCode property on the KeyboardEvent (optional) +
DispatchKeyEvent
  ctrlKey : Boolean
+ The ctrlKey property on the KeyboardEvent (optional) +
DispatchKeyEvent
  key : String
+ The Keyboard key if you don't know the keyCode (optional) +
DispatchKeyEvent
  keyCode : uint
+ The keyCode property on the KeyboardEvent (optional) +
DispatchKeyEvent
  keyLocation : uint
+ The keyLocation property on the KeyboardEvent (optional) +
DispatchKeyEvent
  keys : Array
+ The sequence of keys (optional) e.g ["LEFT", "UP"] +
DispatchKeyEvent
  repeatCount : uint = 1
+ The number of times to repeat the sequence (optional) +
DispatchKeyEvent
  shiftKey : Boolean
+ The shiftKey property on the KeyboardEvent (optional) +
DispatchKeyEvent
 Inheritedtimeout : int = 3000
+ The number of milliseconds to wait before giving up +
timeout
  type : String
+ The type of the event to send (keyUp, keyDown, etc).
DispatchKeyEvent
 InheritedwaitEvent : String
+ The name of the event to listen for on the waitTarget +
waitEvent
 InheritedwaitTarget : String
+ The name of the object to listen for an event we're waiting on +
waitTarget
  window : String
+ (Optional) name of a UI object whose Window/Stage + will be used to dispatch the event +
DispatchKeyEvent
Protected Properties
 PropertyDefined By
 Inheritedcontext : UnitTester
+ The UnitTester that this step belongs to +
protected
 Inheritedroot : DisplayObject
+ The root for the SWF +
protected
 InheritedtestCase : TestCase
+ The TestCase that this step belongs to +
protected
 InheritedtestResult : TestResult
+ The TestResult for this TestCase +
protected
Public Methods
 MethodDefined By
 Inherited
execute(root:DisplayObject, context:UnitTester, testCase:TestCase, testResult:TestResult):Boolean
+ Called by the TestCase when it is time to start this step + The default implementation checks for a wait event and + returns true if there isn't one and false if there is.
execute
 Inherited
+ Called by the test case if you time out +
timeoutCallback
  
toString():String
[override] + customize string representation +
DispatchKeyEvent
Protected Methods
 MethodDefined By
  
doStep():void
[override] + Set the target's property to the specified value +
DispatchKeyEvent
 Inherited
+ The method that gets called when it is time to clean up the step.
protected
 Inherited
waitEventHandler(event:Event):void
+ The method that gets called back when the event we're waiting on fires +
protected
Public Constants
 ConstantDefined By
  FLASH_UI_KEYBOARD_BACK : uint = 0x01000016
[static]
DispatchKeyEvent
  FLASH_U I_KEYBOARD_MENU : uint = 0x01000012
[static]
DispatchKeyEvent
  FLASH_UI_KEYBOARD_SEARCH : uint = 0x0100001F
[static]
DispatchKeyEvent
Property Detail
cancelableproperty
public var cancelable:Boolean = false

+ Designate the created event to be cancelable. by default, they are not +

charproperty 
public var char:String

+ The char or sequence of chars to send as a string/char if you don't know the charCode (optional) +

charCodeproperty 
public var charCode:uint

+ The charCode property on the KeyboardEvent (optional) +

ctrlKeyproperty 
public var ctrlKey:Boolean

+ The ctrlKey property on the KeyboardEvent (optional) +

keyproperty 
public var key:String

+ The Keyboard key if you don't know the keyCode (optional) +

keyCodeproperty 
public var keyCode:uint

+ The keyCode property on the KeyboardEvent (optional) +

keyLocationproperty 
public var keyLocation:uint

+ The keyLocation property on the KeyboardEvent (optional) +

keysproperty 
public var keys:Array

+ The sequence of keys (optional) e.g ["LEFT", "UP"] +

repeatCountproperty 
public var repeatCount:uint = 1

+ The number of times to repeat the sequence (optional) +

shiftKeyproperty 
public var shiftKey:Boolean

+ The shiftKey property on the KeyboardEvent (optional) +

typeproperty 
public var type:String

+ The type of the event to send (keyUp, keyDown, etc). + If not set, we'll send both a keyDown and a keyUp +

windowproperty 
public var window:String

+ (Optional) name of a UI object whose Window/Stage + will be used to dispatch the event +

Method Detail
doStep()method
override protected function doStep():void

+ Set the target's property to the specified value +

toString()method 
override public function toString():String

+ customize string representation +

Returns
String
Constant Detail
FLASH_UI_KEYBOARD_BACKConstant
public static const FLASH_UI_KEYBOARD_BACK:uint = 0x01000016

FLASH_UI_KEYBOARD_MENUConstant 
public static const FLASH_UI_KEYBOARD_MENU:uint = 0x01000012

FLASH_UI_KEYBOARD_SEARCHConstant 
public static const FLASH_UI_KEYBOARD_SEARCH:uint = 0x0100001F





\ No newline at end of file