Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/commit/CDOCommitInfo.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/commit/CDOCommitInfo.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/commit/CDOCommitInfo.java b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/commit/CDOCommitInfo.java
index a3cfb5678e..553270a868 100644
--- a/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/commit/CDOCommitInfo.java
+++ b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/commit/CDOCommitInfo.java
@@ -32,11 +32,26 @@ public interface CDOCommitInfo extends CDOBranchPoint, CDOCommitData
*/
public long getPreviousTimeStamp();
+ /**
+ * @since 4.6
+ */
+ public CDOCommitInfo getPreviousCommitInfo();
+
public String getUserID();
public String getComment();
/**
+ * @since 4.6
+ */
+ public CDOBranchPoint getMergeSource();
+
+ /**
+ * @since 4.6
+ */
+ public CDOCommitInfo getMergedCommitInfo();
+
+ /**
* Returns <code>true</code> if this commit info describes the first initializing commit in the {@link CDOCommonRepository repository}, <code>false</code> otherwise.
*
* @since 4.2

Back to the top