[an error occurred while processing this directive]
ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Hide Packages and Classes List |  Packages  |  Classes  |  Index  |  Appendixes

Language Reference only       
Package and class filters:
Retrieving Data from Server...
Retrieving Data from Server...
Retrieving Data from Server...
Retrieving Data from Server...
com.adobe.fiber.util 
FiberUtils 
Packagecom.adobe.fiber.util
Classpublic class FiberUtils
InheritanceFiberUtils Inheritance Object

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Data Services for Java EE 3
Runtime Versions: Flash Player 9, AIR 1.1

The FiberUtils class is a utility class used by code generated by Adobe application modeling technology.



Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Public Methods
 MethodDefined By
  
Constructor.
FiberUtils
  
arrayAdd(parent:Array, child:Array):void
[static] Adds the contents of child array to the contents of parent array.
FiberUtils
  
[static] Compares the contents of two arrays.
FiberUtils
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Constructor Detail

FiberUtils

()Constructor
public function FiberUtils()

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Data Services for Java EE 3
Runtime Versions: Flash Player 9, AIR 1.1

Constructor.

Method Detail

arrayAdd

()method
public static function arrayAdd(parent:Array, child:Array):void

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Data Services for Java EE 3
Runtime Versions: Flash Player 9, AIR 1.1

Adds the contents of child array to the contents of parent array.

Parameters

parent:Array — Array to add values to
 
child:Array — Array whose contents will be added to parent

arrayCompare

()method 
public static function arrayCompare(array1:Array, array2:Array):Boolean

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Data Services for Java EE 3
Runtime Versions: Flash Player 9, AIR 1.1

Compares the contents of two arrays.

Parameters

array1:Array — first Array instance to compare
 
array2:Array — second Array instance to compare

Returns
Boolean — true if both arguments are arrays with the same elements (compared by reference) in the same order. False otherwise. Note that passing null for both arrays returns false.