| Package | org.spicefactory.parsley.binding.processor |
| Class | public class SubscriberProcessor |
| Inheritance | SubscriberProcessor Object |
| Implements | ObjectProcessor |
| Method | Defined By | ||
|---|---|---|---|
Creates a new instance. | SubscriberProcessor | ||
[static]
Creates a new processor factory. | SubscriberProcessor | ||
postDestroy():void
Invoked after the destroy method of the target instance has been invoked. | SubscriberProcessor | ||
preInit():void
Invoked before the init method of the target instance will be invoked. | SubscriberProcessor | ||
| SubscriberProcessor | () | Constructor |
public function SubscriberProcessor(target:ManagedObject, property:Property, scope:String, id:String = null)Creates a new instance.
Parameterstarget:ManagedObject — the managed target object
| |
property:Property — the target property that binds to the source value
| |
scope:String — the scope the binding listens to
| |
id:String (default = null) — the id the source is published with
|
| newFactory | () | method |
public static function newFactory(property:Property, scope:String, id:String = null):ObjectProcessorFactoryCreates a new processor factory.
Parameters
property:Property — the target property that binds to the source value
| |
scope:String — the scope the binding listens to
| |
id:String (default = null) — the id the source is published with
|
ObjectProcessorFactory — a new processor factory
|
| postDestroy | () | method |
public function postDestroy():voidInvoked after the destroy method of the target instance has been invoked. Implementations will usually unregister message receivers, unwatch bindings, remove listeners or perform similar disposal tasks.
| preInit | () | method |
public function preInit():voidInvoked before the init method of the target instance will be invoked. Implementations will usually set properties, registers message receivers or performs similar configuration tasks for the target instance managed by this processor.