-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUser.java
48 lines (41 loc) · 792 Bytes
/
User.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
48
public abstract class User {
protected String name;
protected String address;
private String mobile;
public User(String name, String address, String mobile)
{
this.name = name;
this.address = address;
this.mobile=mobile;
}
public void setName(String name)
{
this.name=name;
}
public String getName()
{
return name;
}
public void setAddress(String address)
{
this.address=address;
}
public String getAddress()
{
return address;
}
public void setMobile(String mobile)
{
this.mobile=mobile;
}
public String getMobile()
{
return mobile;
}
public void showInfo()
{
System.out.println("Name - " + name);
System.out.println("Address -" + address);
System.out.println("Mobile - " + mobile);
}
}