Packageorg.spicefactory.parsley.core.builder
Interfacepublic interface PropertyBuilder
Implementors DefaultPropertyBuilder

Builder for applying configuration to a single property.



Public Methods
 MethodDefined By
  
Adds a processor for this property.
PropertyBuilder
  
value(value:*):void
Sets the value of this property.
PropertyBuilder
Method Detail
process()method
public function process(processor:PropertyProcessor):PropertyProcessorBuilder

Adds a processor for this property.

Parameters

processor:PropertyProcessor — the property processor to add

Returns
PropertyProcessorBuilder — a builder for configuring the processor
value()method 
public function value(value:*):void

Sets the value of this property. This may be a simple value or an instance that implements ResolvableValue to be resolved at the time the value will be injected into the property, like those values returned by Inject.byType() and related methods.

Parameters

value:* — the property value to apply