Package org.woped.core.gui

Examples of org.woped.core.gui.IUserInterface


  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;
        }
View Full Code Here

TOP

Related Classes of org.woped.core.gui.IUserInterface

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.