Examples of IUserInterface


Examples of org.gudy.azureus2.ui.common.IUserInterface

 
  public static synchronized boolean
  startUI(String ui, String[] args) {
    if (UIS.containsKey(ui))
      return false;
    IUserInterface uif = UserInterfaceFactory.getUI(ui);
    uif.init(false, true);
    if (args!=null)
      uif.processArgs(args);
    uif.startUI();
    UIS.put(ui, uif);
    return true;
  }
View Full Code Here

Examples of org.gudy.azureus2.ui.common.IUserInterface

      Iterator uis = UIConst.UIS.values().iterator();
      boolean isFirst = true;
      String [] theRest = commands.getArgs();
      while (uis.hasNext()) {
        IUserInterface ui = (IUserInterface) uis.next();
        ui.init(isFirst, (UIConst.UIS.size()>1));
        theRest = ui.processArgs(theRest);
        isFirst = false;
      }

      if ( new_core != null ){
       
View Full Code Here

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
Copyright © 2018 www.massapi.com. 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.