Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java
index 476078f4c9..8c72c92f13 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java
@@ -34,7 +34,7 @@ public class CDOTransactionImpl
private long nextTemporaryID = INITIAL_TEMPORARY_ID;
- private CDOViewImpl adapter;
+ private CDOViewImpl view;
private Map<CDOID, CDOResourceImpl> newResources = new HashMap();
@@ -42,14 +42,14 @@ public class CDOTransactionImpl
private Map<CDOID, CDOObjectImpl> dirtyObjects = new HashMap();
- public CDOTransactionImpl(CDOViewImpl adapter)
+ public CDOTransactionImpl(CDOViewImpl view)
{
- this.adapter = adapter;
+ this.view = view;
}
- public CDOViewImpl getAdapter()
+ public CDOViewImpl getView()
{
- return adapter;
+ return view;
}
public Map<CDOID, CDOResourceImpl> getNewResources()
@@ -86,14 +86,14 @@ public class CDOTransactionImpl
try
{
- CDOSessionImpl session = adapter.getSession();
+ CDOSessionImpl session = view.getSession();
CommitTransactionRequest signal = new CommitTransactionRequest(session.getChannel(), this);
CommitTransactionResult result = signal.send();
postCommit(newResources, result);
postCommit(newObjects, result);
postCommit(dirtyObjects, result);
- session.notifyInvalidation(result.getTimeStamp(), dirtyObjects.keySet(), adapter);
+ session.notifyInvalidation(result.getTimeStamp(), dirtyObjects.keySet(), view);
newResources.clear();
newObjects.clear();

Back to the top