-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIssue.java
47 lines (38 loc) · 1011 Bytes
/
Issue.java
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
package com.example.flament.lille1parc.appObjects;
/**
* Object representation of an issue
* it contains all information about an issue : description, position and type
*/
public class Issue {
private int id;
private String label; // issue description
private Position position; // issue position
private Type type; // issue type
public Issue(int id, String label, Position position, Type type) {
this.id = id;
this.label = label;
this.position = position;
this.type = type;
}
public int getId() {
return id;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public Position getPosition() {
return position;
}
public void setPosition(Position position) {
this.position = position;
}
public Type getType() {
return type;
}
public void setType(Type type) {
this.type = type;
}
}