source: trunk/org.modelica.uml.sysml/src/org/modelica/uml/sysml/ModelicaClass.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.8 KB
Line 
1/**
2 * <copyright>
3 * </copyright>
4 *
5 * $Id$
6 */
7package org.modelica.uml.sysml;
8
9import java.util.List;
10
11import org.eclipse.uml2.uml.Type;
12
13
14/**
15 * <!-- begin-user-doc -->
16 * A representation of the model object '<em><b>Modelica Class</b></em>'.
17 * <!-- end-user-doc -->
18 *
19 * <p>
20 * The following features are supported:
21 * <ul>
22 *   <li>{@link org.modelica.uml.sysml.ModelicaClass#isIsEncapsulatedClass <em>Is Encapsulated Class</em>}</li>
23 * </ul>
24 * </p>
25 *
26 * @see org.modelica.uml.sysml.SysmlPackage#getModelicaClass()
27 * @model
28 * @generated
29 */
30public interface ModelicaClass extends Block, ModelicaClassifier {
31   
32    public ModelicaComposition createModelicaComposition(
33            String end1Name, Type end1Type, String end2Name);
34   
35   
36    public List getCompositionProperties();
37   
38    /**
39     * Returns the value of the '<em><b>Is Encapsulated Class</b></em>' attribute.
40     * <!-- begin-user-doc -->
41     * <p>
42     * If the meaning of the '<em>Is Encapsulated Class</em>' attribute isn't clear,
43     * there really should be more of a description here...
44     * </p>
45     * <!-- end-user-doc -->
46     * @return the value of the '<em>Is Encapsulated Class</em>' attribute.
47     * @see #setIsEncapsulatedClass(boolean)
48     * @see org.modelica.uml.sysml.SysmlPackage#getModelicaClass_IsEncapsulatedClass()
49     * @model dataType="org.eclipse.uml2.uml.Boolean"
50     * @generated
51     */
52    boolean isIsEncapsulatedClass();
53
54    /**
55     * Sets the value of the '{@link org.modelica.uml.sysml.ModelicaClass#isIsEncapsulatedClass <em>Is Encapsulated Class</em>}' attribute.
56     * <!-- begin-user-doc -->
57     * <!-- end-user-doc -->
58     * @param value the new value of the '<em>Is Encapsulated Class</em>' attribute.
59     * @see #isIsEncapsulatedClass()
60     * @generated
61     */
62    void setIsEncapsulatedClass(boolean value);
63
64} // ModelicaClass
Note: See TracBrowser for help on using the repository browser.