IDEMPIERE-3111 : Making statusBar variable accessible from WCreateFromWindow

This commit is contained in:
Deepak Pansheriya 2016-05-20 17:29:18 +05:30
parent 2d7a246cf7
commit 0a5f31f2f1
1 changed files with 10 additions and 0 deletions

View File

@ -246,6 +246,16 @@ public class WCreateFromWindow extends Window implements EventListener<Event>, W
confirmPanel.getOKButton().setEnabled(selectedRowCount > 0);
}
public StatusBarPanel getStatusBar()
{
return statusBar;
}
public void setStatusBar(StatusBarPanel statusBar)
{
this.statusBar = statusBar;
}
public WListbox getWListbox()
{
return dataTable;