aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax/transaction/Synchronization.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/javax/transaction/Synchronization.java')
-rw-r--r--libjava/javax/transaction/Synchronization.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/libjava/javax/transaction/Synchronization.java b/libjava/javax/transaction/Synchronization.java
new file mode 100644
index 0000000..046f64d
--- /dev/null
+++ b/libjava/javax/transaction/Synchronization.java
@@ -0,0 +1,20 @@
+/* Copyright (C) 2001 Free Software Foundation
+
+ This file is part of libgcj.
+
+This software is copyrighted work licensed under the terms of the
+Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
+details. */
+
+package javax.transaction;
+
+/**
+ * @author Warren Levy <warrenl@redhat.com>
+ * @date May 25, 2001
+ */
+
+public abstract interface Synchronization
+{
+ public void beforeCompletion();
+ public void afterCompletion(int status);
+}