source: trunk/org.modelica.uml.sysml/src/org/modelica/uml/sysml/SatisfiedByProperty.java @ 696

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