Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/ExtendedSignature.java')
-rw-r--r--extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/ExtendedSignature.java89
1 files changed, 0 insertions, 89 deletions
diff --git a/extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/ExtendedSignature.java b/extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/ExtendedSignature.java
deleted file mode 100644
index fc0a3eefd27..00000000000
--- a/extraplugins/qompass-designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/ExtendedSignature.java
+++ /dev/null
@@ -1,89 +0,0 @@
-/**
- * Copyright (c) 2013 CEA LIST
- *
- * 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:
- * Ansgar Radermacher - Initial API and implementation
- *
- */
-package org.eclipse.papyrus.FCM;
-
-import org.eclipse.emf.ecore.EObject;
-
-import org.eclipse.uml2.uml.TemplateSignature;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Extended Signature</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.papyrus.FCM.ExtendedSignature#getBase_TemplateSignature <em>Base Template Signature</em>}</li>
- * <li>{@link org.eclipse.papyrus.FCM.ExtendedSignature#getBaseSignature <em>Base Signature</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.papyrus.FCM.FCMPackage#getExtendedSignature()
- * @model
- * @generated
- */
-public interface ExtendedSignature extends EObject {
- /**
- * Returns the value of the '<em><b>Base Template Signature</b></em>' reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Base Template Signature</em>' reference isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Base Template Signature</em>' reference.
- * @see #setBase_TemplateSignature(TemplateSignature)
- * @see org.eclipse.papyrus.FCM.FCMPackage#getExtendedSignature_Base_TemplateSignature()
- * @model required="true" ordered="false"
- * @generated
- */
- TemplateSignature getBase_TemplateSignature();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.FCM.ExtendedSignature#getBase_TemplateSignature <em>Base Template Signature</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Base Template Signature</em>' reference.
- * @see #getBase_TemplateSignature()
- * @generated
- */
- void setBase_TemplateSignature(TemplateSignature value);
-
- /**
- * Returns the value of the '<em><b>Base Signature</b></em>' reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Base Signature</em>' reference isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Base Signature</em>' reference.
- * @see #setBaseSignature(TemplateSignature)
- * @see org.eclipse.papyrus.FCM.FCMPackage#getExtendedSignature_BaseSignature()
- * @model required="true" ordered="false"
- * @generated
- */
- TemplateSignature getBaseSignature();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.FCM.ExtendedSignature#getBaseSignature <em>Base Signature</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Base Signature</em>' reference.
- * @see #getBaseSignature()
- * @generated
- */
- void setBaseSignature(TemplateSignature value);
-
-} // ExtendedSignature

Back to the top