Package org.tmatesoft.hg.internal

Examples of org.tmatesoft.hg.internal.RevlogStream$ReaderN1


    return impl == null || impl.isInvalid();
  }
 
  public HgChangelog getChangelog() {
    if (changelog == null) {
      RevlogStream content = impl.createChangelogStream();
      changelog = new HgChangelog(this, content);
    }
    return changelog;
  }
View Full Code Here


    return changelog;
  }
 
  public HgManifest getManifest() {
    if (manifest == null) {
      RevlogStream content = impl.createManifestStream();
      manifest = new HgManifest(this, content, impl.buildFileNameEncodingHelper());
    }
    return manifest;
  }
View Full Code Here

    Path p = sessionContext.getPathFactory().path(nPath);
    return getFileNode(p);
  }

  public HgDataFile getFileNode(Path path) {
    RevlogStream content = impl.resolveStoreFile(path);
    assert content != null;
    return new HgDataFile(this, path, content);
  }
View Full Code Here

TOP

Related Classes of org.tmatesoft.hg.internal.RevlogStream$ReaderN1

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.