Package org.tmatesoft.hg.internal

Examples of org.tmatesoft.hg.internal.DataAccessProvider$FileAccess


 
  public HgBundle loadBundle(File location) throws HgRepositoryNotFoundException {
    if (location == null || !location.canRead()) {
      throw new HgRepositoryNotFoundException(String.format("Can't read file %s", location)).setLocation(String.valueOf(location));
    }
    return new HgBundle(getSessionContext(), new DataAccessProvider(getSessionContext()), location).link();
  }
View Full Code Here

TOP

Related Classes of org.tmatesoft.hg.internal.DataAccessProvider$FileAccess

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.