Package org.eclipse.egit.ui.internal.provisional.wizards

Examples of org.eclipse.egit.ui.internal.provisional.wizards.RepositoryServerInfo


public class TestRepositoryServerProvider implements IRepositoryServerProvider {

  public Collection<RepositoryServerInfo> getRepositoryServerInfos() {
    List<RepositoryServerInfo> info = new ArrayList<RepositoryServerInfo>();
    try {
      info.add(new RepositoryServerInfo("EGit Gerrit", new URI(
          "http://egit.eclipse.org/r")));
      info.add(new RepositoryServerInfo("Local Gerrit", new URI(
          "http://localhost:8080")));
    } catch (URISyntaxException e) {
      Activator.error(e.getLocalizedMessage(), e);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.provisional.wizards.RepositoryServerInfo

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.