ITraverseArrayDelegate

Kind of class: public interface
Package:
Inherits from:
  • none
Classpath: org.asaplibrary.data.array.ITraverseArrayDelegate
File last modified: Wednesday, 11 May 2011, 18:33:14
Delegate interface contract for TraverseArrayEnumerator delegate objects - see TraverseArrayEnumerator.addDelegate.

Summary

Instance methods
  • mayUpdateToObject (inObjects:Array, inLocation:Number) : Boolean
    • Validates if the TraverseArrayEnumerator may update its state to the object at location inLocation in list inObjects.

Instance methods

mayUpdateToObject

function mayUpdateToObject(inObjects:Array, inLocation:Number) : Boolean

Validates if the TraverseArrayEnumerator may update its state to the object at location inLocation in list inObjects.

Parameters
inObjects :list of enumerated objects
inLocation:pointer location of the to be updated state
Returns
  • True if the update is allowed; false if it is prohibited.
Usage
  • public function mayUpdateToObject (inObjects:Array, inLocation:Number) : Boolean {
    return (inObjects[inLocation] == "A");
    }