Package org.adempiere.webui.apps
Interface IProcessParameterListener
- All Known Implementing Classes:
BankTransferParameterListener
,CreateTableParameterListener
,GenerateModelParameterListener
,MFARegisterParameterListener
public interface IProcessParameterListener
Listener interface for process parameter panel.
Implementation must be thread safe.
Implementation must be thread safe.
- Author:
- hengsin
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onChange
(ProcessParameterPanel parameterPanel, String columnName, WEditor editor) On value change of parameter field editordefault void
onInit
(ProcessParameterPanel parameterPanel) Initialization of process parameter formdefault String
validate
(ProcessParameterPanel parameterPanel) Validate process parameter form
-
Method Details
-
onChange
On value change of parameter field editor- Parameters:
parameterPanel
-columnName
- - for range parameter the To columnname is suffixed with _2editor
-
-
validate
Validate process parameter form- Parameters:
parameterPanel
-- Returns:
- error message (if any)
-
onInit
Initialization of process parameter form- Parameters:
parameterPanel
-
-