| Package | org.spicefactory.parsley.core.registry |
| Interface | public interface ConfigurationProperties |
| Method | Defined 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 | ||
| getValue | () | method |
public function getValue(name:String, status:LookupStatus = null):ObjectReturns 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
|
Object — the value of the property
|
| removeValue | () | method |
public function removeValue(name:String):voidRemoves the property with the specifie name.
Parameters
name:String — the name of the property
|
| setValue | () | method |
public function setValue(name:String, value:Object):voidSets a property value.
Parameters
name:String — the name of the property
| |
value:Object — the value of the property
|