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

Last change on this file since 1895 was 511, checked in by x07vasba, 17 years ago
File size: 2.3 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 String</b></em>'.
13 * <!-- end-user-doc -->
14 *
15 * <p>
16 * The following features are supported:
17 * <ul>
18 *   <li>{@link org.modelica.uml.sysml.ModelicaString#getValue <em>Value</em>}</li>
19 *   <li>{@link org.modelica.uml.sysml.ModelicaString#getStart <em>Start</em>}</li>
20 * </ul>
21 * </p>
22 *
23 * @see org.modelica.uml.sysml.SysmlPackage#getModelicaString()
24 * @model
25 * @generated
26 */
27public interface ModelicaString extends ModelicaPrimitiveType {
28    /**
29     * Returns the value of the '<em><b>Value</b></em>' attribute.
30     * <!-- begin-user-doc -->
31     * <p>
32     * If the meaning of the '<em>Value</em>' attribute 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>Value</em>' attribute.
37     * @see #setValue(String)
38     * @see org.modelica.uml.sysml.SysmlPackage#getModelicaString_Value()
39     * @model dataType="org.eclipse.uml2.uml.String"
40     * @generated
41     */
42    String getValue();
43
44    /**
45     * Sets the value of the '{@link org.modelica.uml.sysml.ModelicaString#getValue <em>Value</em>}' attribute.
46     * <!-- begin-user-doc -->
47     * <!-- end-user-doc -->
48     * @param value the new value of the '<em>Value</em>' attribute.
49     * @see #getValue()
50     * @generated
51     */
52    void setValue(String value);
53
54    /**
55     * Returns the value of the '<em><b>Start</b></em>' attribute.
56     * <!-- begin-user-doc -->
57     * <p>
58     * If the meaning of the '<em>Start</em>' attribute isn't clear,
59     * there really should be more of a description here...
60     * </p>
61     * <!-- end-user-doc -->
62     * @return the value of the '<em>Start</em>' attribute.
63     * @see #setStart(String)
64     * @see org.modelica.uml.sysml.SysmlPackage#getModelicaString_Start()
65     * @model dataType="org.eclipse.uml2.uml.String"
66     * @generated
67     */
68    String getStart();
69
70    /**
71     * Sets the value of the '{@link org.modelica.uml.sysml.ModelicaString#getStart <em>Start</em>}' attribute.
72     * <!-- begin-user-doc -->
73     * <!-- end-user-doc -->
74     * @param value the new value of the '<em>Start</em>' attribute.
75     * @see #getStart()
76     * @generated
77     */
78    void setStart(String value);
79
80} // ModelicaString
Note: See TracBrowser for help on using the repository browser.