Package org.eclipse.m2e.scm

Examples of org.eclipse.m2e.scm.ScmUrl


  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


    String scmParentUrl = null;
    if(parent != null) {
      scmParentUrl = SubclipseHandler.SCM_SVN_PREFIX + parent.toString();
    }

    return new ScmUrl(scmUrl, scmParentUrl);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.m2e.scm.ScmUrl

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