| Interface | Description |
|---|---|
| IValidator | Deprecated
Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com).
|
| Class | Description |
|---|---|
| ObjectIdValidator | Deprecated
Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com).
|
Provides interfaces and classes to validate wizard elements and properties.
Used to validate any data property that is stored in the wizard data model by a user interface pane.
Example for writing a validator:
public Class MyValidator implements IValidator {
private LinkedList _errKeyList = new LinkedList();
public boolean isValid(Object key, IWizardContext context) {
String myData = (String) context.getProperty((String) key);
// Perform validation here ...
}
public List getErrorKeyList(IWizardContext context) {
return _errKeyList;
}
} Copyright 2021 SAP SE Complete Copyright Notice