source: trunk/org.modelica.uml.sysml/src/org/modelica/uml/sysml/ModelicaEquationProperty.java @ 492

Last change on this file since 492 was 492, checked in by adrpo, 17 years ago
  • ModelicaML UML/SysML part of mdt
File size: 1.5 KB
Line 
1/**
2 * <copyright>
3 * </copyright>
4 *
5 * $Id$
6 */
7package org.modelica.uml.sysml;
8
9
10/**
11 * <!-- begin-user-doc -->
12 * A representation of the model object '<em><b>Modelica Equation Property</b></em>'.
13 * <!-- end-user-doc -->
14 *
15 * <p>
16 * The following features are supported:
17 * <ul>
18 *   <li>{@link org.modelica.uml.sysml.ModelicaEquationProperty#getEquation <em>Equation</em>}</li>
19 * </ul>
20 * </p>
21 *
22 * @see org.modelica.uml.sysml.SysmlPackage#getModelicaEquationProperty()
23 * @model
24 * @generated
25 */
26public interface ModelicaEquationProperty extends ModelicaProperty {
27    /**
28     * Returns the value of the '<em><b>Equation</b></em>' attribute.
29     * <!-- begin-user-doc -->
30     * <p>
31     * If the meaning of the '<em>Equation</em>' attribute isn't clear,
32     * there really should be more of a description here...
33     * </p>
34     * <!-- end-user-doc -->
35     * @return the value of the '<em>Equation</em>' attribute.
36     * @see #setEquation(String)
37     * @see org.modelica.uml.sysml.SysmlPackage#getModelicaEquationProperty_Equation()
38     * @model dataType="org.eclipse.uml2.uml.String"
39     * @generated
40     */
41    String getEquation();
42
43    /**
44     * Sets the value of the '{@link org.modelica.uml.sysml.ModelicaEquationProperty#getEquation <em>Equation</em>}' attribute.
45     * <!-- begin-user-doc -->
46     * <!-- end-user-doc -->
47     * @param value the new value of the '<em>Equation</em>' attribute.
48     * @see #getEquation()
49     * @generated
50     */
51    void setEquation(String value);
52
53} // ModelicaEquationProperty
Note: See TracBrowser for help on using the repository browser.