Package org.tigris.subversion.subclipse.ui.dialogs

Examples of org.tigris.subversion.subclipse.ui.dialogs.ChooseUrlDialog.open()


 
  public ScmUrl selectUrl(Shell shell, ScmUrl scmUrl) {
    ChooseUrlDialog dialog = new ChooseUrlDialog(shell, null);
    dialog.setFoldersOnly(true);
    dialog.setMultipleSelect(false);
    if(dialog.open() == Window.OK) {
      return new ScmUrl(SubclipseHandler.SCM_SVN_PREFIX + dialog.getUrl());
    }
    return null;
  }
 
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.