-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPerson.java
More file actions
58 lines (44 loc) · 1.14 KB
/
Person.java
File metadata and controls
58 lines (44 loc) · 1.14 KB
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
52
53
54
55
56
57
58
public abstract class Person {
private String name;
private String contactNo;
private String email;
private String address;
public Person(String name,String contactNo, String email, String address) {
this.address = address;
this.contactNo = contactNo;
this.email = email;
this.name = name;
}
protected Person(String s, int employContact, String name, Object address) {
this.name = name;
}
public Person() {
}
void getInfo() throws Exception {
System.out.println("Name: " + name);
}
protected Object getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getContactNo() {
return contactNo;
}
public void setContactNo(String contactNo) {
this.contactNo = contactNo;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}