Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2010-08-30 12:24:47 +0000
committerEike Stepper2010-08-30 12:24:47 +0000
commit9cf7336f787442dcc4c1b83b06f41f2ffa33550c (patch)
tree62994f57741b1f13eeb553a38c4340bd9edcfc96
parente11e5a946567b44706935411d82d0bb2cc5e955e (diff)
downloadcdo-9cf7336f787442dcc4c1b83b06f41f2ffa33550c.tar.gz
cdo-9cf7336f787442dcc4c1b83b06f41f2ffa33550c.tar.xz
cdo-9cf7336f787442dcc4c1b83b06f41f2ffa33550c.zip
[323958] Changes are not committed on preCommit
https://bugs.eclipse.org/bugs/show_bug.cgi?id=323958
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionHandler.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionHandler.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionHandler.java
index 6e17848e42..83acb63a7f 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionHandler.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/transaction/CDOTransactionHandler.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Eike Stepper - initial API and implementation
* Simon McDuff - bug 201266
@@ -113,7 +113,8 @@ public interface CDOTransactionHandler
/**
* Called by a <code>CDOTransaction</code> <b>before</b> it is being committed. The implementor of this method is
* allowed to throw an unchecked exception that will propagate up to the operation that is about to commit the
- * transaction (thereby preventing the operation from completing successfully).
+ * transaction (thereby preventing the operation from completing successfully). The implementor of this method is
+ * allowed to apply changes to the object graph managed by the transaction.
*/
public void committingTransaction(CDOTransaction transaction, CDOCommitContext commitContext);

Back to the top