-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathPerson.java
More file actions
51 lines (29 loc) · 762 Bytes
/
Person.java
File metadata and controls
51 lines (29 loc) · 762 Bytes
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
package students.kennethedelin;
public abstract class Person {
private int id;
private String firstName;
private String lastName;
private String email;
public Person(int id, String firstName, String lastName, String email) {
this.id = id;
this.firstName = firstName;
this.lastName = lastName;
this.email = email;
}
public int getId() {
return id;
}
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
public String getEmail() {
return email;
}
public abstract String getSummary();
protected String getFullName() {
return firstName + " " + lastName;
}
}