/******************************************************************************* * Copyright (c) 2013-2016 Jean-Marie Gauthier, University of Franche-Comte, and Samares-Engineering * 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: * Jean-Marie Gauthier, University of Franche-Comte - initial API and implementation * Jean-Marie Gauthier, Samares-Engineering - Neon implementation *******************************************************************************/ /** */ package edu.ufc.femtost.disc.sysml4modelica.profile.classes; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.eclipse.uml2.uml.Generalization; import org.eclipse.uml2.uml.VisibilityKind; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Modelica Extends</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link edu.ufc.femtost.disc.sysml4modelica.profile.classes.ModelicaExtends#getModification <em>Modification</em>}</li> * <li>{@link edu.ufc.femtost.disc.sysml4modelica.profile.classes.ModelicaExtends#getBase_Generalization <em>Base Generalization</em>}</li> * <li>{@link edu.ufc.femtost.disc.sysml4modelica.profile.classes.ModelicaExtends#getVisibility <em>Visibility</em>}</li> * <li>{@link edu.ufc.femtost.disc.sysml4modelica.profile.classes.ModelicaExtends#getArraySize <em>Array Size</em>}</li> * </ul> * * @see edu.ufc.femtost.disc.sysml4modelica.profile.classes.classesPackage#getModelicaExtends() * @model * @generated */ public interface ModelicaExtends extends EObject { /** * Returns the value of the '<em><b>Modification</b></em>' attribute list. * The list contents are of type {@link java.lang.String}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Modification</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Modification</em>' attribute list. * @see edu.ufc.femtost.disc.sysml4modelica.profile.classes.classesPackage#getModelicaExtends_Modification() * @model dataType="org.eclipse.uml2.types.String" ordered="false" * @generated */ EList<String> getModification(); /** * Returns the value of the '<em><b>Base Generalization</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Base Generalization</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 Generalization</em>' reference. * @see #setBase_Generalization(Generalization) * @see edu.ufc.femtost.disc.sysml4modelica.profile.classes.classesPackage#getModelicaExtends_Base_Generalization() * @model required="true" ordered="false" * @generated */ Generalization getBase_Generalization(); /** * Sets the value of the '{@link edu.ufc.femtost.disc.sysml4modelica.profile.classes.ModelicaExtends#getBase_Generalization <em>Base Generalization</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Base Generalization</em>' reference. * @see #getBase_Generalization() * @generated */ void setBase_Generalization(Generalization value); /** * Returns the value of the '<em><b>Visibility</b></em>' attribute. * The default value is <code>"public"</code>. * The literals are from the enumeration {@link org.eclipse.uml2.uml.VisibilityKind}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Visibility</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Visibility</em>' attribute. * @see org.eclipse.uml2.uml.VisibilityKind * @see #setVisibility(VisibilityKind) * @see edu.ufc.femtost.disc.sysml4modelica.profile.classes.classesPackage#getModelicaExtends_Visibility() * @model default="public" required="true" ordered="false" * @generated */ VisibilityKind getVisibility(); /** * Sets the value of the '{@link edu.ufc.femtost.disc.sysml4modelica.profile.classes.ModelicaExtends#getVisibility <em>Visibility</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Visibility</em>' attribute. * @see org.eclipse.uml2.uml.VisibilityKind * @see #getVisibility() * @generated */ void setVisibility(VisibilityKind value); /** * Returns the value of the '<em><b>Array Size</b></em>' attribute list. * The list contents are of type {@link java.lang.String}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Array Size</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Array Size</em>' attribute list. * @see edu.ufc.femtost.disc.sysml4modelica.profile.classes.classesPackage#getModelicaExtends_ArraySize() * @model dataType="org.eclipse.uml2.types.String" * @generated */ EList<String> getArraySize(); } // ModelicaExtends