Mercurial > hg4j
comparison src/org/tmatesoft/hg/repo/HgSubrepoLocation.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 | 6865eb742883 |
children | 2f9ed6bcefa2 |
comparison
equal
deleted
inserted
replaced
466:3ace1fc95d0a | 467:51d682cf9cdc |
---|---|
18 | 18 |
19 import java.io.File; | 19 import java.io.File; |
20 | 20 |
21 import org.tmatesoft.hg.core.HgRepositoryNotFoundException; | 21 import org.tmatesoft.hg.core.HgRepositoryNotFoundException; |
22 import org.tmatesoft.hg.core.Nodeid; | 22 import org.tmatesoft.hg.core.Nodeid; |
23 import org.tmatesoft.hg.internal.Experimental; | |
24 import org.tmatesoft.hg.util.Path; | 23 import org.tmatesoft.hg.util.Path; |
25 | 24 |
26 /** | 25 /** |
27 * WORK IN PROGRESS, DO NOT USE | 26 * Descriptor for subrepository location |
28 * | 27 * |
29 * @see http://mercurial.selenic.com/wiki/Subrepository | 28 * @see http://mercurial.selenic.com/wiki/Subrepository |
30 * @author Artem Tikhomirov | 29 * @author Artem Tikhomirov |
31 * @author TMate Software Ltd. | 30 * @author TMate Software Ltd. |
32 */ | 31 */ |
33 @Experimental(reason="Work in progress") | |
34 public class HgSubrepoLocation { | 32 public class HgSubrepoLocation { |
35 | 33 |
36 private final HgRepository owner; | 34 private final HgRepository owner; |
37 private final Kind kind; | 35 private final Kind kind; |
38 private final Path location; | 36 private final Path location; |