* cfgloop.c (flow_loop_entry_edges_find): Fix typo.
[official-gcc.git] / libjava / javax / transaction / Status.java
blob84f1e7ca4c7336fbe0d2cf5abd3b137c75b677af
1 /* Copyright (C) 2001 Free Software Foundation
3 This file is part of libgcj.
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
9 package javax.transaction;
11 /**
12 * @author Warren Levy <warrenl@redhat.com>
13 * @date May 25, 2001
16 public abstract interface Status
18 public static final int STATUS_ACTIVE = 0;
19 public static final int STATUS_MARKED_ROLLBACK = 1;
20 public static final int STATUS_PREPARED = 2;
21 public static final int STATUS_COMMITTED = 3;
22 public static final int STATUS_ROLLEDBACK = 4;
23 public static final int STATUS_UNKNOWN = 5;
24 public static final int STATUS_NO_TRANSACTION = 6;
25 public static final int STATUS_PREPARING = 7;
26 public static final int STATUS_COMMITTING = 8;
27 public static final int STATUS_ROLLING_BACK = 9;