-
Notifications
You must be signed in to change notification settings - Fork 0
/
Resume.java
38 lines (34 loc) · 1.14 KB
/
Resume.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
import java.util.ArrayList;
/**
* @author Anton, Christian, Kylie, Jack
*/
public class Resume {
private String name;
private String firstname;
private String lastName;
private String email;
private String number;
private ArrayList<String> skills;
private ArrayList<String> education;
private ArrayList<String> experience;
public Resume(String firstName, String lastName, String email, String number, ArrayList<String> skills,ArrayList<String> education, ArrayList<String> experience) {
this.name = firstName + lastName;
this.email = email;
this.number = number;
this.skills = skills;
this.education = education;
this.experience = experience;
}
public void addResume() {
}
public String printResume() {
String result = "";
result += this.name + "\n";
result += this.email + "\n";
result += this.number + "\n";
result += this.skills + "\n";
result += this.education + "\n";
result += this.experience;
return result;
}
}