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/IExtendedURI.java')
-rw-r--r--extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.core/src/org/eclipse/papyrus/team/collaborative/core/IExtendedURI.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.core/src/org/eclipse/papyrus/team/collaborative/core/IExtendedURI.java b/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.core/src/org/eclipse/papyrus/team/collaborative/core/IExtendedURI.java
deleted file mode 100644
index 2b44271dbfd..00000000000
--- a/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.core/src/org/eclipse/papyrus/team/collaborative/core/IExtendedURI.java
+++ /dev/null
@@ -1,53 +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;
-
-import org.eclipse.emf.common.util.URI;
-
-
-
-public interface IExtendedURI {
-
- /**
- * Checks if this {@link ExtendedURI} is express containment.
- *
- * @return true, if is containment
- */
- public abstract boolean isContainment();
-
- /**
- * Sets the parameter.
- *
- * @param id
- * the id
- * @param value
- * the value
- * @return the extended uri
- */
- public abstract IExtendedURI setParameter(String id, Object value);
-
- /**
- * Gets the parameter.
- *
- * @param id
- * the id
- * @return the parameter
- */
- public abstract Object getParameter(String id);
-
- /**
- * Gets the uri.
- *
- * @return the uri
- */
- public abstract URI getUri();
-
-}

Back to the top