blob: 91f1b4bcd4a8ea6c8ca74041a7dfe2681f1781b6 [file] [log] [blame]
/**
* 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.designer.components.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.designer.components.FCM.Template#getBase_Element <em>Base Element</em>}</li>
* <li>{@link org.eclipse.papyrus.designer.components.FCM.Template#getHelper <em>Helper</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.designer.components.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.designer.components.FCM.FCMPackage#getTemplate_Base_Element()
* @model required="true" ordered="false"
* @generated
*/
Element getBase_Element();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.components.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.designer.components.FCM.FCMPackage#getTemplate_Helper()
* @model ordered="false"
* @generated
*/
BindingHelper getHelper();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.components.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