Registry for property editor validators.
Node | Description |
---|
Method | Description |
---|---|
sap.ui.integration.designtime.baseEditor.validator.ValidatorRegistry.deregisterAllValidators |
Deregisters all validators. |
sap.ui.integration.designtime.baseEditor.validator.ValidatorRegistry.deregisterValidators |
Deregisters the given validator type and cancels the loading. |
sap.ui.integration.designtime.baseEditor.validator.ValidatorRegistry.getValidator |
Returns the validator for the given type if it was loaded. |
sap.ui.integration.designtime.baseEditor.validator.ValidatorRegistry.isRegistered |
Checks whether the given validator type was registered but not loaded yet. |
sap.ui.integration.designtime.baseEditor.validator.ValidatorRegistry.ready |
Ready check to make sure that all registered validators were loaded. |
sap.ui.integration.designtime.baseEditor.validator.ValidatorRegistry.registerValidators |
Registers the given validator types. If a validator type is already registered, it will be skipped and must first be deregistered using the |
Deregisters all validators.
Param | Type | DefaultValue | Description |
---|
Deregisters the given validator type and cancels the loading.
Param | Type | DefaultValue | Description |
---|---|---|---|
sName | string |
Validator type to deregister |
Returns the validator for the given type if it was loaded.
Param | Type | DefaultValue | Description |
---|---|---|---|
sName | string |
Validator type |
Checks whether the given validator type was registered but not loaded yet.
Param | Type | DefaultValue | Description |
---|---|---|---|
sName | string |
Validator type |
Ready check to make sure that all registered validators were loaded.
Param | Type | DefaultValue | Description |
---|
Registers the given validator types. If a validator type is already registered, it will be skipped and must first be deregistered using the ValidatorRegistry.deregisterValidator
function.
Param | Type | DefaultValue | Description |
---|---|---|---|
mNames | object<string,string> |
Validator types and paths to register |