use of alma.acsplugins.alarmsystem.gui.viewcoordination.ViewCoordinator in project ACS by ACS-Community.
the class AlarmPanel method getViewCoordinator.
public ViewCoordinator getViewCoordinator() {
if (viewCoord == null) {
if (cernPnlTabbedPane != null) {
CernSysPanel cernPnl = cernPnlTabbedPane.getCernSysPanel();
AlarmTable alarmTable = cernPnl.getAlarmTable();
viewCoord = new ViewCoordinator(alarmTable);
}
}
return viewCoord;
}
Aggregations