# HG changeset patch # User Artem Tikhomirov # Date 1325801555 -10800 # Node ID dd492acd243134c515d9114bfaf73e4498f1c61b # Parent 155c1893bda404548d1c982b1601cf3115d18266 Constants for well-known repository file names diff -r 155c1893bda4 -r dd492acd2431 src/org/tmatesoft/hg/repo/HgRepositoryFiles.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/org/tmatesoft/hg/repo/HgRepositoryFiles.java Fri Jan 06 01:12:35 2012 +0300 @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2012 TMate Software Ltd + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * For information on how to redistribute this software under + * the terms of a license other than GNU General Public License + * contact TMate Software at support@hg4j.com + */ +package org.tmatesoft.hg.repo; + +import org.tmatesoft.hg.internal.Experimental; + +/** + * + * @author Artem Tikhomirov + * @author TMate Software Ltd. + */ +@Experimental +public enum HgRepositoryFiles { + + HgIgnore(".hgignore"), HgTags(".hgtags"), HgEol(".hgeol"), + Dirstate(".hg/dirstate"), HgLocalTags(".hg/localtags"); + + private String fname; + + private HgRepositoryFiles(String filename) { + fname = filename; + } + + public String getPath() { + return fname; + } +}