public void processViewEvent(AbstractViewEvent event) {
LoggerManager.debug(Constants.QUALANALYSIS_LOGGER, "-> processViewEvent " + this.getClass().getName());
if(getMediator().getUi().getEditorFocus() instanceof IEditor /*&& !getMediator().getUi().getEditorFocus().isSubprocessEditor()*/){
if(event.getOrder() == AbstractViewEvent.REACHGRAPH && getMediator().getUi().getEditorFocus() instanceof IEditor){
IEditor editor = (IEditor) getMediator().getUi().getEditorFocus();
IUserInterface dui = mediator.getUi();
JDesktopPane desktop = (JDesktopPane) dui.getPropertyChangeSupportBean();
// when the TokenGame is enabled there is shown a warning message
if(editor.isTokenGameEnabled()){
ReachabilityWarning.showReachabilityWarning(desktop, "QuanlAna.ReachabilityGraph.SimulationWarning");
return;
}