Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative/src/org/eclipse/papyrus/team/collaborative/participants/version/IReverter.java')
-rw-r--r--extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative/src/org/eclipse/papyrus/team/collaborative/participants/version/IReverter.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative/src/org/eclipse/papyrus/team/collaborative/participants/version/IReverter.java b/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative/src/org/eclipse/papyrus/team/collaborative/participants/version/IReverter.java
new file mode 100644
index 00000000000..18d5bd3c37f
--- /dev/null
+++ b/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative/src/org/eclipse/papyrus/team/collaborative/participants/version/IReverter.java
@@ -0,0 +1,33 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Atos
+ * All rights reserved. This program and the accompanying materials
+ * 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:
+ * Arthur Daussy - initial implementation
+ *******************************************************************************/
+package org.eclipse.papyrus.team.collaborative.participants.version;
+
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.papyrus.team.collaborative.participants.IExtendedURISuperSet;
+
+
+/**
+ * Do a reverter action
+ *
+ * @author adaussy
+ *
+ */
+public interface IReverter extends IExtendedURISuperSet, IWorkOnModifiedElementParticipant {
+
+ /**
+ * Revert changes on {@link IExtendedURISuperSet#getExtendedSet()}
+ *
+ * @return
+ * @throws CollabException
+ */
+ IStatus revert();
+
+}

Back to the top