Skip to content

Commit

Permalink
IDEMPIERE-6126: ProcessParameterPanel - method to get ProcessInfo (#2333
Browse files Browse the repository at this point in the history
)
  • Loading branch information
nmicoud committed Apr 26, 2024
1 parent 4d39141 commit c4ca438
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -104,7 +104,7 @@ public class ProcessParameterPanel extends Panel implements
/**
* generated serial id
*/
private static final long serialVersionUID = -8847249274740131848L;
private static final long serialVersionUID = -8476698839617674953L;

/** Event post from {@link #valueChange(ValueChangeEvent)} **/
private static final String ON_POST_EDITOR_VALUE_CHANGE_EVENT = "onPostEditorValueChange";
Expand Down Expand Up @@ -1327,6 +1327,11 @@ public void setProcessInfo(ProcessInfo processInfo) {
m_processInfo = processInfo;
}


public ProcessInfo getProcessInfo() {
return m_processInfo;
}

/**
* focus to first visible field editor.
* @return true if there is at least one visible field editor.
Expand Down

0 comments on commit c4ca438

Please sign in to comment.