Examples of open()


Examples of org.gvt.gui.CompartmentQueryParamWithEntitiesDialog.open()

        }

        //open dialog
        CompartmentQueryParamWithEntitiesDialog dialog =
      new CompartmentQueryParamWithEntitiesDialog(main);
        options = dialog.open(options);

        if ( !options.isCancel() )
    {
      options.setCancel(true);
    }
View Full Code Here

Examples of org.gvt.gui.ExportToSIFDialog.open()

      main.getOwlModel().getLevel());

    ExportToSIFDialog dialog = new ExportToSIFDialog(main.getShell(),
      possibleRuleTypes, ruleTypes);

    if (dialog.open() && !ruleTypes.isEmpty())
    {
      SIFGraph sif = new SIFGraph(model, ruleTypes);

      int nodenum = sif.getNodes().size();
      int edgenum = sif.getEdges().size();
View Full Code Here

Examples of org.gvt.gui.GOIofSIFParameterDialog.open()

      siffile,
      genesfile,
      limit,
      directed);

    if (dialog.open())
    {
      siffile = dialog.getSiffile();
      genesfile = dialog.getGenefile();
      limit = dialog.getLimit();
      directed = dialog.getDirected();
View Full Code Here

Examples of org.gvt.gui.GoIQueryParamDialog.open()

        //if action is called from PopupMenu
        if (useSelection)
        {
            //open dialog
            GoIQueryParamDialog dialog = new GoIQueryParamDialog(this.main);
            options = dialog.open(options);

            //Return if Cancel was pressed
            if ( !options.isCancel() )
            {
                options.setCancel(true);
View Full Code Here

Examples of org.gvt.gui.GoIQueryParamWithEntitiesDialog.open()

        else
        {
            //open dialog
            GoIQueryParamWithEntitiesDialog dialog =
                new GoIQueryParamWithEntitiesDialog(main);
            options = dialog.open(options);

            if ( !options.isCancel() )
            {
                options.setCancel(true);
            }
View Full Code Here

Examples of org.gvt.gui.ItemSelectionDialog.open()

        500,
        "Pathway Selection Dialog",
        "Select pathways to view",
        allNames, pathways, true, true, null);

      dialog.open();

      if (dialog.isCancelled())
      {
        pathways = null;
        return;
View Full Code Here

Examples of org.gvt.gui.NeighborhoodQueryParamDialog.open()

    if (useSelection)
    {
      //open dialog
      NeighborhoodQueryParamDialog dialog =
        new NeighborhoodQueryParamDialog(this.main);
      options = dialog.open(options);

      //Return if Cancel was pressed
      if ( !options.isCancel() )
      { 
        options.setCancel(true);
View Full Code Here

Examples of org.gvt.gui.NeighborhoodQueryParamWithEntitiesDialog.open()

    //if action is called from TopMenuBar
    else
    {
      //open dialog
      NeighborhoodQueryParamWithEntitiesDialog dialog = new NeighborhoodQueryParamWithEntitiesDialog(main);
      options = dialog.open(options);

      if ( !options.isCancel() )
      { 
        options.setCancel(true);
      }
View Full Code Here

Examples of org.gvt.gui.PoIQueryParamWithEntitiesDialog.open()

        Set<Node> sourceNodes = new HashSet<Node>();
        Set<Node> targetNodes = new HashSet<Node>();

        //open dialog
        PoIQueryParamWithEntitiesDialog dialog = new PoIQueryParamWithEntitiesDialog(main);
        options = dialog.open(options);

        if ( !options.isCancel() )
    {
      options.setCancel(true);
    }
View Full Code Here

Examples of org.gvt.gui.StringInputDialog.open()

        StringInputDialog dialog = new StringInputDialog(main.getShell(), "Rename Pathway",
          "Enter new name", tab.getText());

        dialog.setSelectText(true);

        newname = dialog.open();
      }
      while(newname != null && !newname.equals(tab.getText()) &&
        (main.getAllPathwayNames().contains(newname) ||
        main.getOpenTabNames().contains(newname)));
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.