Factory for the creation of BasePropertyEditor
instances.
Node | Description |
---|
Method | Description |
---|---|
sap.ui.integration.designtime.baseEditor.propertyEditor.PropertyEditorFactory.create |
Creates a new |
sap.ui.integration.designtime.baseEditor.propertyEditor.PropertyEditorFactory.deregisterAllTypes |
Deregisters all editor types and removes the loaded classes. |
sap.ui.integration.designtime.baseEditor.propertyEditor.PropertyEditorFactory.deregisterType |
Deregisters a type and removes the loaded property editor class. |
sap.ui.integration.designtime.baseEditor.propertyEditor.PropertyEditorFactory.registerTypes |
Registers classes for the given editor types. If an editor type is already registered, it will be skipped and must first be deregistered using the |
Creates a new BasePropertyEditor
instance of the given editor type.
Param | Type | DefaultValue | Description |
---|---|---|---|
sPropertyType | string |
Type of the property editor to create |
Deregisters all editor types and removes the loaded classes.
Param | Type | DefaultValue | Description |
---|
Deregisters a type and removes the loaded property editor class.
Param | Type | DefaultValue | Description |
---|---|---|---|
sType | string |
Editor type to deregister |
Registers classes for the given editor types. If an editor type is already registered, it will be skipped and must first be deregistered using the PropertyEditorFactory.deregisterType
function.
Param | Type | DefaultValue | Description |
---|---|---|---|
mTypes | Object<string,string> |
Map containing pairs of editor type and the path to load the class from |