comparison src/org/tmatesoft/hg/repo/HgRepositoryFiles.java @ 481:a458f9fb00ce

Access to user-supplied message of last commit
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 07 Aug 2012 14:02:28 +0200
parents 909306e412e2
children 6c67debed07e
comparison
equal deleted inserted replaced
480:f3fab7a20841 481:a458f9fb00ce
25 */ 25 */
26 public enum HgRepositoryFiles { 26 public enum HgRepositoryFiles {
27 27
28 HgIgnore(".hgignore"), HgTags(".hgtags"), HgEol(".hgeol"), 28 HgIgnore(".hgignore"), HgTags(".hgtags"), HgEol(".hgeol"),
29 Dirstate(".hg/dirstate"), HgLocalTags(".hg/localtags"), 29 Dirstate(".hg/dirstate"), HgLocalTags(".hg/localtags"),
30 HgSub(".hgsub"), HgSubstate(".hgsubstate"); 30 HgSub(".hgsub"), HgSubstate(".hgsubstate"),
31 LastMessage("last-message.txt");
31 32
32 private String fname; 33 private String fname;
33 34
34 private HgRepositoryFiles(String filename) { 35 private HgRepositoryFiles(String filename) {
35 fname = filename; 36 fname = filename;