Packageorg.spicefactory.parsley.core.registry
Interfacepublic interface ConfigurationProperties

Allows to read and write properties which may be used to build or process ObjectDefinitions



Public Methods
 MethodDefined By
  
getValue(name:String, status:LookupStatus = null):Object
Returns the value of the property with the specified name or undefined if no such property exists.
ConfigurationProperties
  
removeValue(name:String):void
Removes the property with the specifie name.
ConfigurationProperties
  
setValue(name:String, value:Object):void
Sets a property value.
ConfigurationProperties
Method Detail
getValue()method
public function getValue(name:String, status:LookupStatus = null):Object

Returns the value of the property with the specified name or undefined if no such property exists.

Parameters

name:String — the name of the property
 
status:LookupStatus (default = null) — optional paramater to avoid duplicate lookups, for internal use only

Returns
Object — the value of the property
removeValue()method 
public function removeValue(name:String):void

Removes the property with the specifie name.

Parameters

name:String — the name of the property

setValue()method 
public function setValue(name:String, value:Object):void

Sets a property value.

Parameters

name:String — the name of the property
 
value:Object — the value of the property