source: trunk/CrossPare/src/de/ugoe/cs/cpdp/decentApp/models/decent/IntegerValue.java

Last change on this file was 36, checked in by ftrautsch, 9 years ago

integration of decent models in crosspare

  • Property svn:mime-type set to text/plain
File size: 1.4 KB
Line 
1/**
2 */
3package de.ugoe.cs.cpdp.decentApp.models.decent;
4
5
6/**
7 * <!-- begin-user-doc -->
8 * A representation of the model object '<em><b>Integer Value</b></em>'.
9 * <!-- end-user-doc -->
10 *
11 * <p>
12 * The following features are supported:
13 * <ul>
14 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.IntegerValue#getContent <em>Content</em>}</li>
15 * </ul>
16 * </p>
17 *
18 * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getIntegerValue()
19 * @model
20 * @generated
21 */
22public interface IntegerValue extends Value {
23        /**
24         * Returns the value of the '<em><b>Content</b></em>' attribute.
25         * <!-- begin-user-doc -->
26         * <p>
27         * If the meaning of the '<em>Content</em>' attribute isn't clear,
28         * there really should be more of a description here...
29         * </p>
30         * <!-- end-user-doc -->
31         * @return the value of the '<em>Content</em>' attribute.
32         * @see #setContent(int)
33         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getIntegerValue_Content()
34         * @model
35         * @generated
36         */
37        int getContent();
38
39        /**
40         * Sets the value of the '{@link de.ugoe.cs.cpdp.decentApp.models.decent.IntegerValue#getContent <em>Content</em>}' attribute.
41         * <!-- begin-user-doc -->
42         * <!-- end-user-doc -->
43         * @param value the new value of the '<em>Content</em>' attribute.
44         * @see #getContent()
45         * @generated
46         */
47        void setContent(int value);
48
49} // IntegerValue
Note: See TracBrowser for help on using the repository browser.