Public Methods
 FunctionDefined By
  
getClass(o:Object):Class
Returns a reference to the specified object's class.
net.user1.utils
  
getRandInt(min:int, max:int):int
Returns a random integer in the range min to max, inclusive.
net.user1.utils
  
inheritsFrom(descendant:Class, ancestor:Class):Boolean
Returns a Boolean indicating whether the specified first class inherits from the specified second class.
net.user1.utils
  
xmlTagsToLowerCase(xml:XML):XML
A convenience function for converting tag names in an XML object to lower case.
net.user1.utils
Function Descriptions
getClass()function
public function getClass(o:Object):Class

Since : Reactor 1.0.0

Returns a reference to the specified object's class.

Parameters

o:Object

Returns
Class
getRandInt()function 
public function getRandInt(min:int, max:int):int

Since : Reactor 1.0.0

Returns a random integer in the range min to max, inclusive.

Parameters

min:int
 
max:int

Returns
int
inheritsFrom()function 
public function inheritsFrom(descendant:Class, ancestor:Class):Boolean

Since : Reactor 1.0.0

Returns a Boolean indicating whether the specified first class inherits from the specified second class.

Parameters

descendant:Class
 
ancestor:Class

Returns
Boolean
xmlTagsToLowerCase()function 
public function xmlTagsToLowerCase(xml:XML):XML

Since : Reactor 1.0.0

A convenience function for converting tag names in an XML object to lower case.

Parameters

xml:XML

Returns
XML