Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOSessionInvalidationEvent.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOSessionInvalidationEvent.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOSessionInvalidationEvent.java
index 70118947df..ebed95cb05 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOSessionInvalidationEvent.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOSessionInvalidationEvent.java
@@ -25,6 +25,10 @@ public interface CDOSessionInvalidationEvent extends CDOSessionEvent
{
public static final long LOCAL_ROLLBACK = 0L;
+ /**
+ * Returns the transaction that was committed and thereby caused this event to be emitted if this transaction is
+ * local, or <code>null</code> if the transaction was remote.
+ */
public CDOView getView();
/**

Back to the top