Examples of open()


Examples of net.sourceforge.fullsync.ui.OptionsDialog.open()

        public void run() {
          OptionsDialog od = new OptionsDialog(GuiController.getInstance().getMainShell(), SWT.ICON_QUESTION);
          od.setText("Question - FullSync"); //FIXME: translate
          od.setMessage(message); //FIXE: translate message
          od.setOptions(new String[] { "Yes", "No" }); //FIXME: translate
          if ("Yes".equals(od.open())) { //FIXME: translate
            arr[0] = true;
          }
        }
      });
    }
View Full Code Here

Examples of net.sourceforge.squirrel_sql.plugins.sqlval.WebServiceSession.open()

    try
    {
      final WebServiceSession wss = _sessionProps.getWebServiceSession();
      if (!wss.isOpen())
      {
        wss.open();
        // i18n[sqlval.connected=Connected to the SQL Validation web service]
        _session.showMessage(s_stringMgr.getString("sqlval.connected"));
      }
    }
    catch (Throwable th)
View Full Code Here

Examples of net.sourceforge.syncyoursecrets.gui.dialogs.PasswordInputDialog.open()

    logger.debug("File selected " + file);

    PasswordInputDialog passwordDialog = new PasswordInputDialog(shell,
        "Password for " + file.getName(), "Enter password ", "",
        new DummyInputValidator());
    passwordDialog.open();
    String password = passwordDialog.getValue();

    logger.debug("Password entered, length is" + password.length());

    if (file.isFile() && file.canRead()) {
View Full Code Here

Examples of net.sourceforge.ztail.swtux.windows.UXConfirmWindow.open()

        } finally {
          win.close();
        }
      }
    });
    win.open();
  }
 
  public void saveBookmarkReq(TabSession sess) {
    if (sess.getSession().isLocalRead()) {
      final LocalBookmarkPropWin win = new LocalBookmarkPropWin(Display.getCurrent().getActiveShell());
View Full Code Here

Examples of net.sourceforge.ztail.swtux.windows.UXPromptWindow.open()

          win.close();
        }
      }
    });
   
    win.open();
  }
 
  public void editBookmarkFolder(final BookmarkManagerWin mWin) {
    final BookmarkFolder folder = mWin.getSelectedFolder();
   
View Full Code Here

Examples of net.sourceforge.ztail.ui.windows.AboutWindow.open()

    UXMenuButton item = new UXMenuButton(helpMenu);
    item.setCaption("About");
    item.setClickAction(new UXAbstractAction() {
      public void doAction(Object cmp) {
        AboutWindow win = new AboutWindow(menu.getShell());
        win.open();
      }
    });
  }
 
  private void factoryBookmarkMenu(BookmarkFolder rootFolder, UXDropDownMenu rootMenu) {
View Full Code Here

Examples of net.sourceforge.ztail.ui.windows.FindWindow.open()

        if (!wasFound) {
          BaseController.instance().showWarningMessage("String not found");
        }
      }
    });
    win.open();
  }
 
  public static ContentController instance() {
    if (instance == null) {
      instance = new ContentController();
View Full Code Here

Examples of net.sourceforge.ztail.ui.windows.LocalFileDialogWindow.open()

        openLocalFileReq(win.getFile().toURI(), win.getNumberOfLines());
        win.close();
      }
    });
   
    win.open();
  }
 
  public void openLocalFileReq(URI uri, int nrOfLines) {
    openTab(FileService.getInstance().openLocalFile(uri, nrOfLines));
  }
View Full Code Here

Examples of net.sourceforge.ztail.ui.windows.SSHFileDialogWindow.open()

          BaseController.instance().showErrorMessage(e);
        }
      }
    });
   
    win.open();
  }
 
  public void openSSHFileReq(URI uri, String password, int nrOfLines) {
    openTab(FileService.getInstance().openRemoteFile(uri, password, nrOfLines));
  }
View Full Code Here

Examples of net.sphene.goim.rcp.ui.ContactList.EntryMenu.open()

            if(!isMe(word.word)) {
              EntryMenu menu = (EntryMenu) chatParticipantStatus
                  .getParent().getData("entryMenu");
              RosterEntry entry = account.xmpp.getRoster().getEntry(
                  StringUtils.parseBareAddress(word.word));
              menu.open(account,entry,word.word);
            }
          }
          // ...
        }
      }
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.