comparison src/com/tmate/hgkit/ll/HgRepository.java @ 10:382cfe9463db

Dirstate parsing. DataAccess refactored to allow reuse and control over constants
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Sat, 25 Dec 2010 21:50:12 +0100
parents d6d2a630f4a6
children df8c67f3006a
comparison
equal deleted inserted replaced
9:d6d2a630f4a6 10:382cfe9463db
1 /** 1 /*
2 * Copyright (c) 2010 Artem Tikhomirov 2 * Copyright (c) 2010 Artem Tikhomirov
3 */ 3 */
4 package com.tmate.hgkit.ll; 4 package com.tmate.hgkit.ll;
5 5
6 6
43 if (this.manifest == null) { 43 if (this.manifest == null) {
44 this.manifest = new HgManifest(this); 44 this.manifest = new HgManifest(this);
45 } 45 }
46 return this.manifest; 46 return this.manifest;
47 } 47 }
48
49 public final Object/*HgDirstate*/ getDirstate() {
50 throw notImplemented();
51 }
52 48
53 public abstract HgDataFile getFileNode(String path); 49 public abstract HgDataFile getFileNode(String path);
54 50
55 public abstract String getLocation(); 51 public abstract String getLocation();
56 52