/** * 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: * CEA LIST - Initial API and implementation * */ package org.eclipse.papyrus.C_Cpp; import org.eclipse.emf.ecore.EObject; import org.eclipse.uml2.uml.Classifier; /** * * A representation of the model object 'External'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.C_Cpp.C_CppPackage#getExternal() * @model * @generated */ public interface External extends EObject { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.papyrus.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.C_Cpp.External#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Base Classifier' reference. * *

* If the meaning of the 'Base Classifier' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Base Classifier' reference. * @see #setBase_Classifier(Classifier) * @see org.eclipse.papyrus.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.C_Cpp.External#getBase_Classifier Base Classifier}' reference. * * * @param value the new value of the 'Base Classifier' reference. * @see #getBase_Classifier() * @generated */ void setBase_Classifier(Classifier value); } // External