Packageorg.springextensions.actionscript.stage
SVN browsingAbstractStageProcessor.as
FisheyeAbstractStageProcessor.as
Classpublic class AbstractStageProcessor
ImplementsIDisposable, IObjectSelectorAware, IStageProcessor
SubclassesDefaultAutowiringStageProcessor, GenericStageProcessor, LocalizationStageProcessor, SimpleSecurityStageProcessor

Abstract base class for IStageProcessor implementations.



Documentation reference: the istageprocessor interface

Sample project: stagewiring (source)


Public Properties
 PropertyDefined by
  document : Object
The MXML document associated with the current IStageProcessor.
AbstractStageProcessor
  isDisposed : Boolean
[read-only]
AbstractStageProcessor
  objectSelector : IObjectSelector
The specified IObjectSelector instance.
AbstractStageProcessor
Public Methods
 MethodDefined by
  
Abstract constructor
AbstractStageProcessor
  
dispose():void
AbstractStageProcessor
  
process(object:Object):Object
Performs an operation on the specified Object.
AbstractStageProcessor
Protected Methods
 MethodDefined by
  
AbstractStageProcessor
Property detail
documentproperty
document:Object  [read-write]

The MXML document associated with the current IStageProcessor.

Implementation
    public function get document():Object
    public function set document(value:Object):void
isDisposedproperty 
isDisposed:Boolean  [read-only]Implementation
    public function get isDisposed():Boolean
objectSelectorproperty 
objectSelector:IObjectSelector  [read-write]

The specified IObjectSelector instance.

Implementation
    public function get objectSelector():IObjectSelector
    public function set objectSelector(value:IObjectSelector):void
Constructor detail
AbstractStageProcessor()constructor
public function AbstractStageProcessor(self:AbstractStageProcessor)

Abstract constructor

Parameters
self:AbstractStageProcessor

Throws
— When called directly
Method detail
abstractStageProcessorInit()method
protected function abstractStageProcessorInit(self:AbstractStageProcessor):voidParameters
self:AbstractStageProcessor
dispose()method 
public function dispose():void
process()method 
public function process(object:Object):Object

Performs an operation on the specified Object.

Parameters
object:Object — The object that will be processed.

Returns
Object — The processed object.

Throws
— When called directly