source: trunk/CrossPare/src/de/ugoe/cs/cpdp/decentApp/models/arffx/Instance.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.2 KB
Line 
1/**
2 */
3package de.ugoe.cs.cpdp.decentApp.models.arffx;
4
5import org.eclipse.emf.common.util.EList;
6
7import org.eclipse.emf.ecore.EObject;
8
9/**
10 * <!-- begin-user-doc -->
11 * A representation of the model object '<em><b>Instance</b></em>'.
12 * <!-- end-user-doc -->
13 *
14 * <p>
15 * The following features are supported:
16 * <ul>
17 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.arffx.Instance#getValues <em>Values</em>}</li>
18 * </ul>
19 * </p>
20 *
21 * @see de.ugoe.cs.cpdp.decentApp.models.arffx.ARFFxPackage#getInstance()
22 * @model
23 * @generated
24 */
25public interface Instance extends EObject {
26        /**
27         * Returns the value of the '<em><b>Values</b></em>' containment reference list.
28         * The list contents are of type {@link de.ugoe.cs.cpdp.decentApp.models.arffx.Value}.
29         * <!-- begin-user-doc -->
30         * <p>
31         * If the meaning of the '<em>Values</em>' containment reference list isn't clear,
32         * there really should be more of a description here...
33         * </p>
34         * <!-- end-user-doc -->
35         * @return the value of the '<em>Values</em>' containment reference list.
36         * @see de.ugoe.cs.cpdp.decentApp.models.arffx.ARFFxPackage#getInstance_Values()
37         * @model containment="true"
38         * @generated
39         */
40        EList<Value> getValues();
41
42} // Instance
Note: See TracBrowser for help on using the repository browser.