blob: d0624761ce19b888bef6f821a1a7efb955c18169 [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 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
*
*/
package org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.Classifier;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>External</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.External#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.External#getIncPath <em>Inc Path</em>}</li>
* <li>{@link org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.External#getBase_Classifier <em>Base Classifier</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.C_CppPackage#getExternal()
* @model
* @generated
*/
public interface External extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Name to use when this external is referenced as type. If unset, use simple (non-qualified) name
* <!-- end-model-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.C_CppPackage#getExternal_Name()
* @model unique="false" dataType="org.eclipse.uml2.types.String" ordered="false"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.External#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Base Classifier</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Classifier</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 Classifier</em>' reference.
* @see #setBase_Classifier(Classifier)
* @see org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.C_CppPackage#getExternal_Base_Classifier()
* @model required="true" ordered="false"
* @generated
*/
Classifier getBase_Classifier();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.External#getBase_Classifier <em>Base Classifier</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Classifier</em>' reference.
* @see #getBase_Classifier()
* @generated
*/
void setBase_Classifier(Classifier value);
/**
* Returns the value of the '<em><b>Inc Path</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Inc Path</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Path to use in include directives when this external type is referenced. If unset, no additional
* include directive is generated for the usage of this type. The latter may be useful if the
* external type is used in conjunctions with others and a single header include provides
* definitions for all required types
* <!-- end-model-doc -->
* @return the value of the '<em>Inc Path</em>' attribute.
* @see #setIncPath(String)
* @see org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.C_CppPackage#getExternal_IncPath()
* @model dataType="org.eclipse.uml2.types.String" ordered="false"
* @generated
*/
String getIncPath();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.External#getIncPath <em>Inc Path</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Inc Path</em>' attribute.
* @see #getIncPath()
* @generated
*/
void setIncPath(String value);
} // External