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/Template.java')
-rw-r--r--extraplugins/qompass/designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/Template.java90
1 files changed, 0 insertions, 90 deletions
diff --git a/extraplugins/qompass/designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/Template.java b/extraplugins/qompass/designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/Template.java
deleted file mode 100644
index bf444e4e4b9..00000000000
--- a/extraplugins/qompass/designer/org.eclipse.papyrus.fcm.profile/src/org/eclipse/papyrus/FCM/Template.java
+++ /dev/null
@@ -1,90 +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.Element;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Template</b></em>'.
- * <!-- end-user-doc -->
- *
- * <!-- begin-model-doc -->
- * The template parameters list defines the parameters that are passed to the Acceleo template. If empty, the formal parameter list of the package template is used.
- * <!-- end-model-doc -->
- *
- * <p>
- * The following features are supported:
- * </p>
- * <ul>
- * <li>{@link org.eclipse.papyrus.FCM.Template#getBase_Element <em>Base Element</em>}</li>
- * <li>{@link org.eclipse.papyrus.FCM.Template#getHelper <em>Helper</em>}</li>
- * </ul>
- *
- * @see org.eclipse.papyrus.FCM.FCMPackage#getTemplate()
- * @model
- * @generated
- */
-public interface Template extends EObject {
- /**
- * Returns the value of the '<em><b>Base Element</b></em>' reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Base Element</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 Element</em>' reference.
- * @see #setBase_Element(Element)
- * @see org.eclipse.papyrus.FCM.FCMPackage#getTemplate_Base_Element()
- * @model required="true" ordered="false"
- * @generated
- */
- Element getBase_Element();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.FCM.Template#getBase_Element <em>Base Element</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Base Element</em>' reference.
- * @see #getBase_Element()
- * @generated
- */
- void setBase_Element(Element value);
-
- /**
- * Returns the value of the '<em><b>Helper</b></em>' reference.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Helper</em>' reference isn't clear, there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Helper</em>' reference.
- * @see #setHelper(BindingHelper)
- * @see org.eclipse.papyrus.FCM.FCMPackage#getTemplate_Helper()
- * @model ordered="false"
- * @generated
- */
- BindingHelper getHelper();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.FCM.Template#getHelper <em>Helper</em>}' reference.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Helper</em>' reference.
- * @see #getHelper()
- * @generated
- */
- void setHelper(BindingHelper value);
-
-} // Template

Back to the top