use of com.ramussoft.pb.frames.SelectRowPanel in project ramus by Vitaliy-Yakovchuk.
the class SectorRowsEditor method getSelectRowPane.
private SelectRowPanel getSelectRowPane() {
if (selectRowPanel == null) {
selectRowPanel = new SelectRowPanel(framework, dataPlugin, accessRules);
selectRowPanel.addSelectionListener(new SelectionListener() {
@Override
public void changeSelection(SelectionEvent event) {
if (event.isSelected())
addRows(event.getRows());
else {
removeRows(event.getRows());
}
}
});
}
return selectRowPanel;
}
Aggregations