Package org.tigris.subversion.subclipse.core

Examples of org.tigris.subversion.subclipse.core.SVNProviderPlugin


* @author Eugene Kuleshov
*/
public class SubclipseUtils {

  public static ISVNRepositoryLocation getRepositoryLocation(String url) {
    SVNProviderPlugin provider = SVNProviderPlugin.getPlugin();
    SVNRepositories repositories = provider.getRepositories();

    ISVNRepositoryLocation location = null;
   
    ISVNRepositoryLocation[] locations = repositories.getKnownRepositories(new NullProgressMonitor());
    for(int i = 0; i < locations.length; i++ ) {
View Full Code Here


    }
    if (password != null) {
      properties.setProperty("password", password);
    }

    SVNProviderPlugin provider = SVNProviderPlugin.getPlugin();
    return provider.getRepositories().createRepository(properties);
    // provider.getRepositories().addOrUpdateRepository(location);
  }
View Full Code Here

TOP

Related Classes of org.tigris.subversion.subclipse.core.SVNProviderPlugin

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.