Packageorg.pranaframework.objects
Interfacepublic interface IPropertyEditorRegistry
ImplementorsPropertyEditorRegistrySupport

Defines a registry for property editors.



Public Methods
 MethodDefined by
  
findCustomEditor(requiredType:Class):IPropertyEditor
Finds a property editor that was registered against the given type.
IPropertyEditorRegistry
  
registerCustomEditor(requiredType:Class, propertyEditor:IPropertyEditor):void
Registers the given property editor for the given type.
IPropertyEditorRegistry
Method detail
findCustomEditor()method
public function findCustomEditor(requiredType:Class):IPropertyEditor

Finds a property editor that was registered against the given type.

Parameters
requiredType:Class — the type of the property

Returns
IPropertyEditor
registerCustomEditor()method 
public function registerCustomEditor(requiredType:Class, propertyEditor:IPropertyEditor):void

Registers the given property editor for the given type.

Parameters
requiredType:Class — the type of the property
 
propertyEditor:IPropertyEditor — the property editor to register