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: * The schedule states an entry can be in.
21: */
22: public interface ScheduleKind {
23: /** exists, but uninteresting */
24: public static final int normal = 0;
25:
26: /** Slated for addition */
27: public static final int add = 1;
28:
29: /** Slated for deletion */
30: public static final int delete = 2;
31:
32: /** Slated for replacement (delete + add) */
33: public static final int replace = 3;
34: }
|