/******************************************************************************* * 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.modelicametamodel.modelica; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Equation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Equation#getOwnerEquationSection <em>Owner Equation Section</em>}</li> * <li>{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Equation#isIsInitial <em>Is Initial</em>}</li> * <li>{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Equation#getBody <em>Body</em>}</li> * </ul> * * @see edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.modelicaPackage#getEquation() * @model * @generated */ public interface Equation extends EObject { /** * Returns the value of the '<em><b>Owner Equation Section</b></em>' container reference. * It is bidirectional and its opposite is '{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.EquationSection#getEquations <em>Equations</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Owner Equation Section</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Owner Equation Section</em>' container reference. * @see #setOwnerEquationSection(EquationSection) * @see edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.modelicaPackage#getEquation_OwnerEquationSection() * @see edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.EquationSection#getEquations * @model opposite="equations" transient="false" * @generated */ EquationSection getOwnerEquationSection(); /** * Sets the value of the '{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Equation#getOwnerEquationSection <em>Owner Equation Section</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Owner Equation Section</em>' container reference. * @see #getOwnerEquationSection() * @generated */ void setOwnerEquationSection(EquationSection value); /** * Returns the value of the '<em><b>Is Initial</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Is Initial</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Is Initial</em>' attribute. * @see #setIsInitial(boolean) * @see edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.modelicaPackage#getEquation_IsInitial() * @model required="true" * @generated */ boolean isIsInitial(); /** * Sets the value of the '{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Equation#isIsInitial <em>Is Initial</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Is Initial</em>' attribute. * @see #isIsInitial() * @generated */ void setIsInitial(boolean value); /** * Returns the value of the '<em><b>Body</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Body</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Body</em>' attribute. * @see #setBody(String) * @see edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.modelicaPackage#getEquation_Body() * @model required="true" * @generated */ String getBody(); /** * Sets the value of the '{@link edu.ufc.femtost.disc.sysml4modelica.modelicametamodel.modelica.Equation#getBody <em>Body</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Body</em>' attribute. * @see #getBody() * @generated */ void setBody(String value); } // Equation