source: trunk/CrossPare/src/de/ugoe/cs/cpdp/decentApp/models/arffx/Dimension.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.arffx;
4
5import org.eclipse.emf.ecore.EObject;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>Dimension</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * <ul>
15 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.arffx.Dimension#getName <em>Name</em>}</li>
16 * </ul>
17 * </p>
18 *
19 * @see de.ugoe.cs.cpdp.decentApp.models.arffx.ARFFxPackage#getDimension()
20 * @model
21 * @generated
22 */
23public interface Dimension extends EObject {
24        /**
25         * Returns the value of the '<em><b>Name</b></em>' attribute.
26         * <!-- begin-user-doc -->
27         * <p>
28         * If the meaning of the '<em>Name</em>' attribute isn't clear,
29         * there really should be more of a description here...
30         * </p>
31         * <!-- end-user-doc -->
32         * @return the value of the '<em>Name</em>' attribute.
33         * @see #setName(String)
34         * @see de.ugoe.cs.cpdp.decentApp.models.arffx.ARFFxPackage#getDimension_Name()
35         * @model required="true"
36         * @generated
37         */
38        String getName();
39
40        /**
41         * Sets the value of the '{@link de.ugoe.cs.cpdp.decentApp.models.arffx.Dimension#getName <em>Name</em>}' attribute.
42         * <!-- begin-user-doc -->
43         * <!-- end-user-doc -->
44         * @param value the new value of the '<em>Name</em>' attribute.
45         * @see #getName()
46         * @generated
47         */
48        void setName(String value);
49
50} // Dimension
Note: See TracBrowser for help on using the repository browser.