Child: [563632] (diff)

Download this file

Uuid.java    70 lines (63 with data), 1.8 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
*/
package uuid;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Uuid</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link uuid.Uuid#getUuid <em>Uuid</em>}</li>
* <li>{@link uuid.Uuid#getMergedUuids <em>Merged Uuids</em>}</li>
* </ul>
* </p>
*
* @see uuid.UuidPackage#getUuid()
* @model
* @generated
*/
public interface Uuid extends EObject {
/**
* Returns the value of the '<em><b>Uuid</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Uuid</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Uuid</em>' attribute.
* @see #setUuid(String)
* @see uuid.UuidPackage#getUuid_Uuid()
* @model id="true" required="true"
* @generated
*/
String getUuid();
/**
* Sets the value of the '{@link uuid.Uuid#getUuid <em>Uuid</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Uuid</em>' attribute.
* @see #getUuid()
* @generated
*/
void setUuid(String value);
/**
* Returns the value of the '<em><b>Merged Uuids</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Merged Uuids</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Merged Uuids</em>' attribute list.
* @see uuid.UuidPackage#getUuid_MergedUuids()
* @model
* @generated
*/
EList<String> getMergedUuids();
} // Uuid