Examples of show()


Examples of com.intellij.openapi.ui.popup.ListPopup.show()

            callback.onParameterChosen(selectedValue);
            return super.onChosen(selectedValue, finalChoice);
          }
        });

    listPopup.show(relativePoint);
  }

  public interface Callback {
    void onParameterChosen(PsiParameter clazz);
  }
View Full Code Here

Examples of com.intellij.openapi.util.PasswordPromptDialog.show()

  public void actionPerformed(ActionEvent e)
  {
    PasswordPromptDialog dialog = new PasswordPromptDialog(RevuBundle.message("dialog.updatePassword.password.label"),
      RevuBundle.message("dialog.updatePassword.title"), "");
    dialog.show();
    if (dialog.isOK())
    {
      String password = dialog.getPassword().trim();
      if (password == null)
      {
View Full Code Here

Examples of com.intellij.openapi.vcs.changes.committed.ChangesBrowserDialog.show()

      changes.addAll(retrieveChanges(vFile, provider));
    }

    final ChangesBrowserDialog dialog = new ChangesBrowserDialog(project,
      new CommittedChangesTableModel(changes, provider.getColumns(), false), ChangesBrowserDialog.Mode.Choose, null);
    dialog.show();

    return dialog.isOK() ? dialog.getSelectedChangeList() : null;
  }

  private static List<CommittedChangeList> retrieveChanges(VirtualFile vFile,
View Full Code Here

Examples of com.intellij.openapi.wm.ToolWindow.show()

            final String url = getSelectedPomUrl(pEvent);
            if (url == null)
                return;

            tw.setAvailable(true, null);
            tw.show(new Runnable() {
                public void run() {
                    final SynchronizationResultsPanel ui;
                    ui = (SynchronizationResultsPanel) tw.getComponent();
                    final InspectionsManager mgr = InspectionsManager.getInstance(project);
                    final ProblemInfo[] problems = mgr.inspect(url, module);
View Full Code Here

Examples of com.intellij.refactoring.util.RefactoringMessageDialog.show()

                question,
                HelpID.INLINE_VARIABLE,
                "OptionPane.questionIcon",
                true,
                ctx.project);
        dialog.show();
        if (!dialog.isOK()) {
            StatusBar statusBar = WindowManager.getInstance().getStatusBar(ctx.project);
            if (statusBar != null) {
                statusBar.setInfo(RefactoringBundle.message("press.escape.to.remove.the.highlighting"));
            }
View Full Code Here

Examples of com.itstherules.mediacentre.controller.IndexController.show()

  @Override
  protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    Map<String, Object> parameters = new MapMapConverter().convert(req.getParameterMap());
    IndexController indexController = new IndexController();
    indexController.init(new TemplateEngine(getServletContext()));
    indexController.show(parameters, resp);
  }
 
}
View Full Code Here

Examples of com.mockturtlesolutions.jpHtools.database.BufferSolution.show()

    
    BufferSolution mixture = null;
    //mixture = BufferSolution.createMixture(this.repos,this.bufferSolutions,factors);
          mixture = BufferSolution.createMixture(this.bufferSolutions,factors);
   
    mixture.show("Mixture");
   
    DblMatrix concMatrix = new DblMatrix(this.BVector.getN());
    HashMap spec_conc = null;
    spec_conc = (HashMap)mixture.species(this.pH);
   
View Full Code Here

Examples of com.mockturtlesolutions.snifflib.datatypes.DblMatrix.show()

               pHprobe = "unknown"; //All empty pHprobe then are assumed to be the "same" probe -- typically this just means that the variance component will be larger than if pHprobes were identified properly.
            }
           
            DblMatrix pH_var_comp = this.getParam("pHProbe_"+pHprobe+"_sigma");
           
            pH_var_comp.show("Here is the pH variance component:");
           
            NN = this.bufferData.getTitrationObservationNumbers(Exp,ssid);
            NNdelete = OUT.getTitrationObservationNumbers(Exp,ssid);
            for (int l=0;l<NN.size();l++)
            {
View Full Code Here

Examples of com.mockturtlesolutions.snifflib.datatypes.DblParamSet.show()

    DblParamSet pars = null;
   
    String descriptor = "parameter";
   
    pars = parameterEditor.getParamSet();
    pars.show("pars");
   
    String[] params = pars.parameterSet();
    if (params.length == 0)
    {
      System.out.println("There are no parameters.");
View Full Code Here

Examples of com.mockturtlesolutions.snifflib.guitools.components.DomainNameTree.show()

    map.insert(newNode);
    newNode = new DomainNameNode("edu.umich","/com/mockturtlesolutions/jpHtools/database/images/small_umich_logo.gif");
    map.insert(newNode);
   
   
    map.show();
    return(map);
  }
}
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.