-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathPerson.java
More file actions
38 lines (31 loc) · 837 Bytes
/
Person.java
File metadata and controls
38 lines (31 loc) · 837 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
package main.java.students.bryantferguson;
//abstract class that outlines what a Person should be like
public abstract class Person {
//fields for a Person
private int id;
private String firstName;
private String lastName;
private String email;
//constructor
public Person(int id, String firstName, String lastName, String email) {
this.id = id;
this.firstName = firstName;
this.lastName = lastName;
this.email = email;
}
//getters
public int getId() {
return id;
}
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
public String getEmail() {
return email;
}
//method to be passed down to child classes
public abstract void getSummary();
}