IDEMPIERE-6126: ProcessParameterPanel - method to get ProcessInfo (#2333)

This commit is contained in:
Nicolas Micoud 2024-04-26 04:47:33 +02:00 committed by Carlos Ruiz
parent 8e08cb5cc8
commit 7d70e4ef02
1 changed files with 6 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public class ProcessParameterPanel extends Panel implements
/** /**
* generated serial id * generated serial id
*/ */
private static final long serialVersionUID = -8847249274740131848L; private static final long serialVersionUID = -8476698839617674953L;
/** Event post from {@link #valueChange(ValueChangeEvent)} **/ /** Event post from {@link #valueChange(ValueChangeEvent)} **/
private static final String ON_POST_EDITOR_VALUE_CHANGE_EVENT = "onPostEditorValueChange"; private static final String ON_POST_EDITOR_VALUE_CHANGE_EVENT = "onPostEditorValueChange";
@ -1327,6 +1327,11 @@ public class ProcessParameterPanel extends Panel implements
m_processInfo = processInfo; m_processInfo = processInfo;
} }
public ProcessInfo getProcessInfo() {
return m_processInfo;
}
/** /**
* focus to first visible field editor. * focus to first visible field editor.
* @return true if there is at least one visible field editor. * @return true if there is at least one visible field editor.