Packageorg.springextensions.actionscript.core
SVN browsingIOrdered.as
FisheyeIOrdered.as
Interfacepublic interface IOrdered
ImplementorsClassScannerObjectFactoryPostProcessor, ComponentClassScanner, PropertyPlaceholderConfigurer

Interface that can be implemented by objects that should be orderable, for example in a Collection.

The actual order can be interpreted as prioritization, with the first object (with the lowest order value) having the highest priority.



Documentation reference: controlling collection order


Public Properties
 PropertyDefined by
  order : int
Return the order value of this object, with a higher value meaning greater in terms of sorting.
IOrdered
Property detail
orderproperty
order:int  [read-write]

Return the order value of this object, with a higher value meaning greater in terms of sorting.

Normally starting with 0 or 1. Same order values will result in arbitrary positions for the affected objects.

Higher value can be interpreted as lower priority, consequently the first object has highest priority.

Note that order values below 0 are reserved for framework purposes. Application-specified values should always be 0 or greater, with only framework components (internal or third-party) supposed to use lower values.

Implementation
    public function get order():int
    public function set order(value:int):void