-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.java
More file actions
86 lines (79 loc) · 1.17 KB
/
Copy pathClient.java
File metadata and controls
86 lines (79 loc) · 1.17 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
public class Client {
private int id;
private String fname;
private String lname;
private String address;
private String postalcode;
private String PhoneNum;
private char type;
public Client(int i, String f, String l, String a, String p, String ph, char c)
{
id = i;
fname = f;
lname = l;
address = a;
postalcode = p;
PhoneNum = ph;
type = c;
}
public void setId(int n)
{
id = n;
}
public void setFname(String f)
{
fname = f;
}
public void setlname(String f)
{
lname = f;
}
public void setadd(String f)
{
address = f;
}
public void setpost(String f)
{
postalcode = f;
}
public void setNum(String f)
{
PhoneNum = f;
}
public void setType(char f)
{
type = f;
}
public int getId()
{
return id;
}
public String getfName()
{
return fname;
}
public String getlName()
{
return lname;
}
public String getaddress()
{
return address;
}
public String getpost()
{
return postalcode;
}
public String getphone()
{
return PhoneNum;
}
public char getType()
{
return type;
}
public String ToString()
{
return Integer.toString(id) + " " + fname + " " + lname + " " + Character.toString(type);
}
}