aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/github-graph/ecore-gen/github/IssueEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'Domains/github-graph/ecore-gen/github/IssueEvent.java')
-rw-r--r--Domains/github-graph/ecore-gen/github/IssueEvent.java120
1 files changed, 120 insertions, 0 deletions
diff --git a/Domains/github-graph/ecore-gen/github/IssueEvent.java b/Domains/github-graph/ecore-gen/github/IssueEvent.java
new file mode 100644
index 00000000..1f56672c
--- /dev/null
+++ b/Domains/github-graph/ecore-gen/github/IssueEvent.java
@@ -0,0 +1,120 @@
1/**
2 */
3package github;
4
5import java.util.Date;
6
7import org.eclipse.emf.ecore.EObject;
8
9/**
10 * <!-- begin-user-doc -->
11 * A representation of the model object '<em><b>Issue Event</b></em>'.
12 * <!-- end-user-doc -->
13 *
14 * <p>
15 * The following features are supported:
16 * </p>
17 * <ul>
18 * <li>{@link github.IssueEvent#getUser <em>User</em>}</li>
19 * <li>{@link github.IssueEvent#getAction <em>Action</em>}</li>
20 * <li>{@link github.IssueEvent#getCreated_at <em>Created at</em>}</li>
21 * <li>{@link github.IssueEvent#getActor_url <em>Actor url</em>}</li>
22 * </ul>
23 *
24 * @see github.GithubPackage#getIssueEvent()
25 * @model
26 * @generated
27 */
28public interface IssueEvent extends EObject {
29 /**
30 * Returns the value of the '<em><b>User</b></em>' reference.
31 * <!-- begin-user-doc -->
32 * <!-- end-user-doc -->
33 * @return the value of the '<em>User</em>' reference.
34 * @see #setUser(User)
35 * @see github.GithubPackage#getIssueEvent_User()
36 * @model required="true"
37 * @generated
38 */
39 User getUser();
40
41 /**
42 * Sets the value of the '{@link github.IssueEvent#getUser <em>User</em>}' reference.
43 * <!-- begin-user-doc -->
44 * <!-- end-user-doc -->
45 * @param value the new value of the '<em>User</em>' reference.
46 * @see #getUser()
47 * @generated
48 */
49 void setUser(User value);
50
51 /**
52 * Returns the value of the '<em><b>Action</b></em>' attribute.
53 * The literals are from the enumeration {@link github.Action}.
54 * <!-- begin-user-doc -->
55 * <!-- end-user-doc -->
56 * @return the value of the '<em>Action</em>' attribute.
57 * @see github.Action
58 * @see #setAction(Action)
59 * @see github.GithubPackage#getIssueEvent_Action()
60 * @model
61 * @generated
62 */
63 Action getAction();
64
65 /**
66 * Sets the value of the '{@link github.IssueEvent#getAction <em>Action</em>}' attribute.
67 * <!-- begin-user-doc -->
68 * <!-- end-user-doc -->
69 * @param value the new value of the '<em>Action</em>' attribute.
70 * @see github.Action
71 * @see #getAction()
72 * @generated
73 */
74 void setAction(Action value);
75
76 /**
77 * Returns the value of the '<em><b>Created at</b></em>' attribute.
78 * <!-- begin-user-doc -->
79 * <!-- end-user-doc -->
80 * @return the value of the '<em>Created at</em>' attribute.
81 * @see #setCreated_at(Date)
82 * @see github.GithubPackage#getIssueEvent_Created_at()
83 * @model
84 * @generated
85 */
86 Date getCreated_at();
87
88 /**
89 * Sets the value of the '{@link github.IssueEvent#getCreated_at <em>Created at</em>}' attribute.
90 * <!-- begin-user-doc -->
91 * <!-- end-user-doc -->
92 * @param value the new value of the '<em>Created at</em>' attribute.
93 * @see #getCreated_at()
94 * @generated
95 */
96 void setCreated_at(Date value);
97
98 /**
99 * Returns the value of the '<em><b>Actor url</b></em>' attribute.
100 * <!-- begin-user-doc -->
101 * <!-- end-user-doc -->
102 * @return the value of the '<em>Actor url</em>' attribute.
103 * @see #setActor_url(String)
104 * @see github.GithubPackage#getIssueEvent_Actor_url()
105 * @model required="true"
106 * @generated
107 */
108 String getActor_url();
109
110 /**
111 * Sets the value of the '{@link github.IssueEvent#getActor_url <em>Actor url</em>}' attribute.
112 * <!-- begin-user-doc -->
113 * <!-- end-user-doc -->
114 * @param value the new value of the '<em>Actor url</em>' attribute.
115 * @see #getActor_url()
116 * @generated
117 */
118 void setActor_url(String value);
119
120} // IssueEvent