Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/internal/common/commit/DelegatingCommitInfo.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/internal/common/commit/DelegatingCommitInfo.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/internal/common/commit/DelegatingCommitInfo.java b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/internal/common/commit/DelegatingCommitInfo.java
index a087822e4f..25f2ee968c 100644
--- a/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/internal/common/commit/DelegatingCommitInfo.java
+++ b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/internal/common/commit/DelegatingCommitInfo.java
@@ -11,6 +11,7 @@
package org.eclipse.emf.cdo.internal.common.commit;
import org.eclipse.emf.cdo.common.branch.CDOBranch;
+import org.eclipse.emf.cdo.common.branch.CDOBranchPoint;
import org.eclipse.emf.cdo.common.commit.CDOChangeKind;
import org.eclipse.emf.cdo.common.commit.CDOChangeSetData;
import org.eclipse.emf.cdo.common.commit.CDOCommitInfo;
@@ -49,6 +50,11 @@ public abstract class DelegatingCommitInfo implements CDOCommitInfo
return getDelegate().getPreviousTimeStamp();
}
+ public CDOCommitInfo getPreviousCommitInfo()
+ {
+ return getDelegate().getPreviousCommitInfo();
+ }
+
public long getTimeStamp()
{
return getDelegate().getTimeStamp();
@@ -64,6 +70,16 @@ public abstract class DelegatingCommitInfo implements CDOCommitInfo
return getDelegate().getComment();
}
+ public CDOBranchPoint getMergeSource()
+ {
+ return getDelegate().getMergeSource();
+ }
+
+ public CDOCommitInfo getMergedCommitInfo()
+ {
+ return getDelegate().getMergedCommitInfo();
+ }
+
public boolean isEmpty()
{
return getDelegate().isEmpty();

Back to the top