|
SAP NetWeaver 7.30 (SP02) | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
See:
Description
| Interface Summary | |
|---|---|
| IValidator | Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com). |
| Class Summary | |
|---|---|
| ObjectIdValidator | Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com). |
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;
}
}
|
SAP NetWeaver 7.30 (SP02) | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||