Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.core/src/org/eclipse/papyrus/team/collaborative/core/participants/locker/ILocker.java')
-rw-r--r--extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.core/src/org/eclipse/papyrus/team/collaborative/core/participants/locker/ILocker.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.core/src/org/eclipse/papyrus/team/collaborative/core/participants/locker/ILocker.java b/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.core/src/org/eclipse/papyrus/team/collaborative/core/participants/locker/ILocker.java
deleted file mode 100644
index 9e631d8b44c..00000000000
--- a/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.core/src/org/eclipse/papyrus/team/collaborative/core/participants/locker/ILocker.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*******************************************************************************
- * 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.core.participants.locker;
-
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.papyrus.team.collaborative.core.ExtendedURI;
-import org.eclipse.papyrus.team.collaborative.core.IExtendedURI;
-import org.eclipse.papyrus.team.collaborative.core.participants.IExtendedURISuperSet;
-
-
-/**
- * Object to perform a lock
- *
- * @author adaussy
- */
-public interface ILocker extends IExtendedURISuperSet {
-
-
- /**
- * Lock the element of {@link IExtendedURISuperSet#getExtendedSet()}
- *
- * @return
- * @throws CollabException
- */
- IStatus lock();
-
- /**
- * Return true if the {@link ExtendedURI} is locked
- *
- * @return
- */
- IStatus isLocked(IExtendedURI uri);
-
-}

Back to the top