Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-06-08 14:40:34 +0000
committerEike Stepper2011-06-08 14:40:34 +0000
commit56ce3c52f8c9b4b84ed6e2236760883deadd8ca7 (patch)
treebd0763bdde6ca64fa258f135b531caa047444ace /plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionFinishedEvent.java
parent4d83e5b62819ef74f598653ca158969830d87af1 (diff)
downloadcdo-56ce3c52f8c9b4b84ed6e2236760883deadd8ca7.tar.gz
cdo-56ce3c52f8c9b4b84ed6e2236760883deadd8ca7.tar.xz
cdo-56ce3c52f8c9b4b84ed6e2236760883deadd8ca7.zip
javadoc
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionFinishedEvent.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionFinishedEvent.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionFinishedEvent.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionFinishedEvent.java
index 579a76ec7e..35daa7d651 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionFinishedEvent.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionFinishedEvent.java
@@ -16,6 +16,10 @@ import org.eclipse.emf.cdo.view.CDOViewEvent;
import java.util.Map;
/**
+ * A {@link CDOViewEvent view event} fired from a {@link CDOTransaction transaction} when it becomes
+ * {@link CDOTransaction#isDirty() clean} after a sucessful {@link CDOTransaction#commit() commit} or
+ * {@link CDOTransaction#rollback() rollback}.
+ *
* @author Eike Stepper
* @since 2.0
* @noextend This interface is not intended to be extended by clients.
@@ -28,6 +32,9 @@ public interface CDOTransactionFinishedEvent extends CDOViewEvent
public Map<CDOID, CDOID> getIDMappings();
/**
+ * Enumerates the possible {@link CDOTransactionFinishedEvent#getType() causes} for a {@link CDOTransaction
+ * transaction} to become finished.
+ *
* @author Eike Stepper
*/
public enum Type

Back to the top