blob: 38a2bd0b11fc3cdcd8e36d6e71b33a95bcb4c8f4 [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.DataType;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Union</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.Union#getBase_DataType <em>Base Data Type</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.C_CppPackage#getUnion()
* @model
* @generated
*/
public interface Union extends EObject {
/**
* Returns the value of the '<em><b>Base Data Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Data Type</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 Data Type</em>' reference.
* @see #setBase_DataType(DataType)
* @see org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.C_CppPackage#getUnion_Base_DataType()
* @model required="true" ordered="false"
* @generated
*/
DataType getBase_DataType();
/**
* Sets the value of the '{@link org.eclipse.papyrus.designer.languages.cpp.profile.C_Cpp.Union#getBase_DataType <em>Base Data Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Data Type</em>' reference.
* @see #getBase_DataType()
* @generated
*/
void setBase_DataType(DataType value);
} // Union