~svn/ubuntu/raring/subversion/ppa

« back to all changes in this revision

Viewing changes to subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/NotifyStatus.java

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-12-05 01:26:14 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051205012614-qom4xfypgtsqc2xq
Tags: 1.2.3dfsg1-3ubuntu1
Merge with the final Debian release of 1.2.3dfsg1-3, bringing in
fixes to the clean target, better documentation of the libdb4.3
upgrade and build fixes to work with swig1.3_1.3.27.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * @copyright
 
3
 * ====================================================================
 
4
 * Copyright (c) 2003-2004 CollabNet.  All rights reserved.
 
5
 *
 
6
 * This software is licensed as described in the file COPYING, which
 
7
 * you should have received as part of this distribution.  The terms
 
8
 * are also available at http://subversion.tigris.org/license-1.html.
 
9
 * 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
 */
 
18
package org.tigris.subversion.javahl;
 
19
/**
 
20
 *  status of the text or the property of the item triggering the notification
 
21
 */
 
22
public interface NotifyStatus
 
23
{
 
24
    /** It not applicable*/
 
25
    public static final int inapplicable = 0;
 
26
 
 
27
    /** Notifier doesn't know or isn't saying. */
 
28
    public static final int unknown = 1;
 
29
 
 
30
    /** The state did not change. */
 
31
    public static final int unchanged = 2;
 
32
 
 
33
    /** The item wasn't present. */
 
34
    public static final int missing = 3;
 
35
 
 
36
    /** An unversioned item obstructed work. */
 
37
    public static final int obstructed = 4;
 
38
 
 
39
    /** Pristine state was modified. */
 
40
    public static final int changed = 5;
 
41
 
 
42
    /** Modified state had mods merged in. */
 
43
    public static final int merged = 6;
 
44
 
 
45
    /** Modified state got conflicting mods. */
 
46
    public static final int conflicted = 7;
 
47
 
 
48
    /**
 
49
     * the textual represention for the status types
 
50
     */
 
51
    public static final String[] statusNames =
 
52
    {
 
53
        "inapplicable",
 
54
        "unknown",
 
55
        "unchanged",
 
56
        "missing",
 
57
        "obstructed",
 
58
        "changed",
 
59
        "merged",
 
60
        "conflicted",
 
61
    };
 
62
}