source: trunk/org.modelica.uml.sysml/src/org/modelica/uml/sysml/ItemFlow.java @ 1895

Last change on this file since 1895 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
9import org.eclipse.uml2.uml.InformationFlow;
10
11/**
12 * <!-- begin-user-doc -->
13 * A representation of the model object '<em><b>Item Flow</b></em>'.
14 * <!-- end-user-doc -->
15 *
16 * <p>
17 * The following features are supported:
18 * <ul>
19 *   <li>{@link org.modelica.uml.sysml.ItemFlow#getItemProperty <em>Item Property</em>}</li>
20 * </ul>
21 * </p>
22 *
23 * @see org.modelica.uml.sysml.SysmlPackage#getItemFlow()
24 * @model
25 * @generated
26 */
27public interface ItemFlow extends InformationFlow {
28    /**
29     * Returns the value of the '<em><b>Item Property</b></em>' reference.
30     * <!-- begin-user-doc -->
31     * <p>
32     * If the meaning of the '<em>Item Property</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>Item Property</em>' reference.
37     * @see #setItemProperty(BlockProperty)
38     * @see org.modelica.uml.sysml.SysmlPackage#getItemFlow_ItemProperty()
39     * @model
40     * @generated
41     */
42    BlockProperty getItemProperty();
43
44    /**
45     * Sets the value of the '{@link org.modelica.uml.sysml.ItemFlow#getItemProperty <em>Item Property</em>}' reference.
46     * <!-- begin-user-doc -->
47     * <!-- end-user-doc -->
48     * @param value the new value of the '<em>Item Property</em>' reference.
49     * @see #getItemProperty()
50     * @generated
51     */
52    void setItemProperty(BlockProperty value);
53
54} // ItemFlow
Note: See TracBrowser for help on using the repository browser.