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/strategy/ILockingStrategy.java')
-rw-r--r--extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative/src/org/eclipse/papyrus/team/collaborative/strategy/ILockingStrategy.java96
1 files changed, 96 insertions, 0 deletions
diff --git a/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative/src/org/eclipse/papyrus/team/collaborative/strategy/ILockingStrategy.java b/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative/src/org/eclipse/papyrus/team/collaborative/strategy/ILockingStrategy.java
new file mode 100644
index 00000000000..72c90c33dd2
--- /dev/null
+++ b/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative/src/org/eclipse/papyrus/team/collaborative/strategy/ILockingStrategy.java
@@ -0,0 +1,96 @@
+/*******************************************************************************
+ * 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.strategy;
+
+import java.util.Collection;
+import java.util.Set;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.papyrus.team.collaborative.IExtendedURI;
+
+
+/**
+ * The Interface ILockingStrategy.
+ * A locking strategy is used to build a set of business object using the defined strategy
+ */
+public interface ILockingStrategy {
+
+ /**
+ * Get the business object define by this strategy
+ *
+ * @param eOjbect
+ * the e ojbect
+ * @return the object to lock
+ */
+ Set<IExtendedURI> getBusinessObject(Collection<EObject> eOjbect);
+
+ /**
+ * Return true if this strategy apply on the selected objects
+ *
+ * @param target
+ * the target
+ * @return true, if successful
+ */
+ public boolean applyOn(Collection<EObject> target);
+
+ /**
+ * The Class Descriptor.
+ */
+ public class Descriptor {
+
+ /** The strategy. */
+ private ILockingStrategy strategy;
+
+ /** The name. */
+ private String name;
+
+
+ /**
+ * Gets the strategy.
+ *
+ * @return the strategy
+ */
+ public ILockingStrategy getStrategy() {
+ return strategy;
+ }
+
+
+ /**
+ * Gets the name.
+ *
+ * @return the name
+ */
+ public String getName() {
+ return name;
+ }
+
+
+ /**
+ * Instantiates a new descriptor.
+ *
+ * @param strategy
+ * the strategy
+ * @param name
+ * the name
+ */
+ public Descriptor(ILockingStrategy strategy, String name) {
+ super();
+ this.strategy = strategy;
+ this.name = name;
+ }
+
+
+
+
+
+ }
+
+}

Back to the top