01: /**
02: * @copyright
03: * ====================================================================
04: * Copyright (c) 2003-2004 CollabNet. All rights reserved.
05: *
06: * This software is licensed as described in the file COPYING, which
07: * you should have received as part of this distribution. The terms
08: * are also available at http://subversion.tigris.org/license-1.html.
09: * If newer versions of this license are posted there, you may use a
10: * newer version instead, at your option.
11: *
12: * This software consists of voluntary contributions made by many
13: * individuals. For exact contribution history, see the revision
14: * history and logs, available at http://subversion.tigris.org/.
15: * ====================================================================
16: * @endcopyright
17: */package org.tigris.subversion.javahl;
18:
19: /**
20: * class for kind status of the item or its properties
21: */
22: public interface StatusKind {
23: /** does not exist */
24: public static final int none = 0;
25:
26: /** exists, but uninteresting */
27: public static final int normal = 1;
28:
29: /** text or props have been modified */
30: public static final int modified = 2;
31:
32: /** is scheduled for additon */
33: public static final int added = 3;
34:
35: /** scheduled for deletion */
36: public static final int deleted = 4;
37:
38: /** is not a versioned thing in this wc */
39: public static final int unversioned = 5;
40:
41: /** under v.c., but is missing */
42: public static final int missing = 6;
43:
44: /** was deleted and then re-added */
45: public static final int replaced = 7;
46:
47: /** local mods received repos mods */
48: public static final int merged = 8;
49:
50: /** local mods received conflicting repos mods */
51: public static final int conflicted = 9;
52:
53: /** an unversioned resource is in the way of the versioned resource */
54: public static final int obstructed = 10;
55:
56: /** a resource marked as ignored */
57: public static final int ignored = 11;
58:
59: /** a directory doesn't contain a complete entries list */
60: public static final int incomplete = 12;
61:
62: /** an unversioned path populated by an svn:externals property */
63: public static final int external = 13;
64:
65: }
|