Packageorg.springextensions.actionscript.objects
SVN browsingIPropertyEditor.as
FisheyeIPropertyEditor.as
Interfacepublic interface IPropertyEditor
ImplementorsAbstractPropertyEditor, PropertyEditorRegistrySupport

A property editor converts strings to typed objects. Typically these strings are found in the Spring Actionscript configuration XML.

Author: Christophe Herreman
Version: $Revision: 21 $, $Date: 2008-11-01 22:58:42 +0100 (za, 01 nov 2008) $, $Author: dmurat $
Since: 0.1



Public Properties
 PropertyDefined by
  text : String
The string that will be converted into an object.
IPropertyEditor
  value : *
The result of the string-to-object conversion.
IPropertyEditor
Property detail
textproperty
text:String  [read-write]

The string that will be converted into an object. For example: org.springextensions.actionscript.collections.TypedCollection

Implementation
    public function get text():String
    public function set text(value:String):void
valueproperty 
value:*  [read-write]

The result of the string-to-object conversion.

Implementation
    public function get value():*
    public function set value(value:*):void