Package org.tmatesoft.hg.core

Examples of org.tmatesoft.hg.core.SessionContext$SourcePrim


  public Internals(HgRepository hgRepo, File hgDir, ImplAccess implementationAccess) throws HgRuntimeException {
    repo = hgRepo;
    repoDir = hgDir;
    implAccess = implementationAccess;
    isCaseSensitiveFileSystem = !runningOnWindows();
    SessionContext ctx = repo.getSessionContext();
    dataAccess = new DataAccessProvider(ctx);
    RepoInitializer repoInit = new RepoInitializer().initRequiresFromFile(repoDir);
    requiresFlags = repoInit.getRequires();
    dataPathHelper = repoInit.buildDataFilesHelper(getSessionContext());
    repoPathHelper = repoInit.buildStoreFilesHelper();
View Full Code Here

TOP

Related Classes of org.tmatesoft.hg.core.SessionContext$SourcePrim

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.