* cfgloop.c (flow_loop_entry_edges_find): Fix typo.
[official-gcc.git] / libjava / javax / transaction / Synchronization.java
blob046f64d9cf8bd52ff0301d81107803fd15e1a055
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 Synchronization
18 public void beforeCompletion();
19 public void afterCompletion(int status);