Packageorg.spicefactory.parsley.flex.tag.builder
Classpublic class ViewProcessorTag
InheritanceViewProcessorTag Inheritance Object
Implements BootstrapConfigProcessor

MXML tag for declaring a custom view processor to be used by the corresponding Context and all its children unless overwritten. The tag can be used as a child tag of the ContextBuilder tag:
                  <parsley:ContextBuilder>
     <parsley:ViewProcessor type="{MyCustomProcessor}"/>
     <parsley:FlexConfig type="{BookStoreConfig}"/>
     <parsley:XmlConfig file="logging.xml"/>
 </parsley:ContextBuilder>
               



Public Properties
 PropertyDefined By
  params : Array
Optional parameters the parameters to pass to the constructor of the processor.
ViewProcessorTag
  type : Class
The type of the processor.
ViewProcessorTag
Property Detail
paramsproperty
public var params:Array

Optional parameters the parameters to pass to the constructor of the processor.

typeproperty 
public var type:Class

The type of the processor. The specified class must implement the ViewProcessor interface.