Mercurial > jhg
comparison src/org/tmatesoft/hg/repo/HgRepoConfig.java @ 467:51d682cf9cdc
Cleaned experimental tag and updated comments/javadoc
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 22 Jun 2012 17:39:31 +0200 |
parents | 091666b87f62 |
children | db48a77ec8ff |
comparison
equal
deleted
inserted
replaced
466:3ace1fc95d0a | 467:51d682cf9cdc |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2011 TMate Software Ltd | 2 * Copyright (c) 2011-2012 TMate Software Ltd |
3 * | 3 * |
4 * This program is free software; you can redistribute it and/or modify | 4 * This program is free software; you can redistribute it and/or modify |
5 * it under the terms of the GNU General Public License as published by | 5 * it under the terms of the GNU General Public License as published by |
6 * the Free Software Foundation; version 2 of the License. | 6 * the Free Software Foundation; version 2 of the License. |
7 * | 7 * |
21 import java.util.Iterator; | 21 import java.util.Iterator; |
22 import java.util.List; | 22 import java.util.List; |
23 import java.util.Map; | 23 import java.util.Map; |
24 | 24 |
25 import org.tmatesoft.hg.internal.ConfigFile; | 25 import org.tmatesoft.hg.internal.ConfigFile; |
26 import org.tmatesoft.hg.internal.Experimental; | |
27 import org.tmatesoft.hg.util.Pair; | 26 import org.tmatesoft.hg.util.Pair; |
28 | 27 |
29 /** | 28 /** |
30 * WORK IN PROGRESS | |
31 * | |
32 * Repository-specific configuration. | 29 * Repository-specific configuration. |
33 * | 30 * |
34 * @author Artem Tikhomirov | 31 * @author Artem Tikhomirov |
35 * @author TMate Software Ltd. | 32 * @author TMate Software Ltd. |
36 */ | 33 */ |
37 @Experimental(reason="WORK IN PROGRESS") | |
38 public final class HgRepoConfig /*implements RepoChangeListener, perhaps, also RepoChangeNotifier? */{ | 34 public final class HgRepoConfig /*implements RepoChangeListener, perhaps, also RepoChangeNotifier? */{ |
39 /*ease access for inner classes*/ final ConfigFile config; | 35 /*ease access for inner classes*/ final ConfigFile config; |
40 | 36 |
41 /*package-local*/HgRepoConfig(ConfigFile configFile) { | 37 /*package-local*/HgRepoConfig(ConfigFile configFile) { |
42 config = configFile; | 38 config = configFile; |