comparison src/org/tmatesoft/hg/core/HgStatus.java @ 143:b9700740553a

Command line tools parse and respect most of command-line arguments
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 17 Feb 2011 22:16:25 +0100
parents 1c1891ad1c73
children ba2bf656f00f
comparison
equal deleted inserted replaced
142:37a34044e6bd 143:b9700740553a
29 * @author TMate Software Ltd. 29 * @author TMate Software Ltd.
30 */ 30 */
31 public class HgStatus { 31 public class HgStatus {
32 32
33 public enum Kind { 33 public enum Kind {
34 Modified, Added, Removed, Unknown, Missing, Clean, Ignored 34 Modified, Added, Removed, Missing, Unknown, Clean, Ignored
35 // I'd refrain from changing order of these constants, just in case someone (erroneously, of course ;), uses .ordinal()
35 }; 36 };
36 37
37 private final HgStatus.Kind kind; 38 private final HgStatus.Kind kind;
38 private final Path path; 39 private final Path path;
39 private final Path origin; 40 private final Path origin;